Compare commits
No commits in common. "de60c363e3fd17cf1233a2973523571c879d9d35" and "66340ac819731f9c127b3b17e5d4bafb290c0c72" have entirely different histories.
de60c363e3
...
66340ac819
|
@ -49,6 +49,7 @@ if( ! function_exists( 'ofisuport_ajuts_filters_form' ) ):
|
||||||
if( isset($_GET[ $fieldname ]) ) {
|
if( isset($_GET[ $fieldname ]) ) {
|
||||||
|
|
||||||
$filteredvalues['value'] = explode(',', $_GET[ $fieldname ]);
|
$filteredvalues['value'] = explode(',', $_GET[ $fieldname ]);
|
||||||
|
//$filteredvalues['value'] = ($_GET[ $fieldname ]);
|
||||||
};
|
};
|
||||||
//end check for values in url
|
//end check for values in url
|
||||||
|
|
||||||
|
@ -61,7 +62,12 @@ if( ! function_exists( 'ofisuport_ajuts_filters_form' ) ):
|
||||||
<?php foreach( $fields['choices'] as $choicevalue => $choicelabel ) { ?>
|
<?php foreach( $fields['choices'] as $choicevalue => $choicelabel ) { ?>
|
||||||
|
|
||||||
<div class="filter" data-filter="<?php echo $fields['name'];?>">
|
<div class="filter" data-filter="<?php echo $fields['name'];?>">
|
||||||
<input class="ofisuport-filter" type="checkbox" name="<?php echo $fields['name'];?>" <?php if( in_array($choicevalue,$filteredvalues['value']) ) { echo 'checked';}; ?> value="<?php echo $choicevalue ?>" />
|
<input
|
||||||
|
class="ofisuport-filter"
|
||||||
|
type="checkbox"
|
||||||
|
<?php if( in_array($choicevalue,$filteredvalues['value']) ) { echo 'checked';}; ?>
|
||||||
|
value="<?php echo $choicevalue ?>"
|
||||||
|
name="<?php echo $fields['name'];?>" />
|
||||||
<label for="<?php echo $choicevalue; ?>"><?php echo $choicelabel;?></label>
|
<label for="<?php echo $choicevalue; ?>"><?php echo $choicelabel;?></label>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -79,8 +85,8 @@ if( ! function_exists( 'ofisuport_ajuts_filters_form' ) ):
|
||||||
<?php }; //end if type checkbox ?>
|
<?php }; //end if type checkbox ?>
|
||||||
|
|
||||||
<?php }; //end foreach groupkey field ?>
|
<?php }; //end foreach groupkey field ?>
|
||||||
<?php //echo '<p><span id="filterlink"></span></p>';?>
|
<p><b>Results:</b> <span id="results"></span></p>
|
||||||
<p><a id="submitfilteredlink" name="submit-ajut" class="button button-more" href="">enviar</a> </p>
|
<button type="submit" class="button-more">enviar</button>
|
||||||
</form>
|
</form>
|
||||||
<?php //close the form and subit ?>
|
<?php //close the form and subit ?>
|
||||||
|
|
||||||
|
@ -90,77 +96,87 @@ if( ! function_exists( 'ofisuport_ajuts_filters_form' ) ):
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
|
||||||
|
//https://wordpress.stackexchange.com/questions/383599/form-checkbox-value-going-to-dynamic-url
|
||||||
|
// sample form on submiit
|
||||||
|
//
|
||||||
|
(function($){
|
||||||
|
|
||||||
|
$('#form-ajuts').on('submit', function(e) {
|
||||||
|
|
||||||
|
// prevent default
|
||||||
|
e.preventDefault();
|
||||||
|
|
||||||
(function($) {
|
// set empty submission object
|
||||||
// change
|
let submission = {};
|
||||||
//$('#archive-filters').on('click', 'button', function(){
|
|
||||||
$('#archive-filters').on('click', 'input', function(){
|
|
||||||
|
|
||||||
// vars
|
// for each of this form submit event target object entries as key/field
|
||||||
var url = '<?php echo home_url('ajuts/'); ?>';
|
for (const [key, field] of Object.entries(e.target)) {
|
||||||
args = {};
|
|
||||||
var appendtoURL = '';
|
|
||||||
var eachfiltered = '';
|
|
||||||
var valueschecked = '';
|
|
||||||
|
|
||||||
// loop over filters
|
// if object entry (field) has a name attribute
|
||||||
$('#archive-filters .filter').each(function(){
|
if (field.name) {
|
||||||
// check if is first appearance of each
|
|
||||||
if( eachfiltered != $(this).data('filter') ){
|
// if field type is
|
||||||
// save already calculated field=val01,val02,val03
|
if (field.type === 'checkbox') {
|
||||||
if( eachfiltered != '' && valueschecked != '' ){
|
|
||||||
// remove last ','
|
// set field name as array
|
||||||
valueschecked = valueschecked.slice(0, -1);
|
submission[field.name] = [];
|
||||||
appendtoURL += eachfiltered +'=' +valueschecked +'&';
|
// if checkbox is checked
|
||||||
};
|
if (field.checked) {
|
||||||
// start new fieldname filtered
|
|
||||||
eachfiltered = $(this).data('filter');
|
// add name/value to submission object
|
||||||
// reset values
|
submission[field.name].push(field.value);
|
||||||
valueschecked = '';
|
|
||||||
// find checked inputs
|
}
|
||||||
$(this).find('input:checked').each(function(){
|
|
||||||
// if not empty save value and ,
|
} else if (field.value) {
|
||||||
if( $(this).val() != '' ){
|
|
||||||
valueschecked += $(this).val() + ',';
|
// add name/value to submission object
|
||||||
};
|
submission[field.name] = field.value;
|
||||||
});
|
|
||||||
//alert( appendtoURL +":" +eachfiltered +"=" +valuescheked);
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// now let loop through our submission and check for arrays
|
||||||
|
for (const [name, value] of Object.entries(submission)) {
|
||||||
|
|
||||||
|
// if submission value is array
|
||||||
|
//if (Array.isArray(value)) {
|
||||||
|
// let convert array to string
|
||||||
|
//submission[name] = value.join(',');
|
||||||
|
|
||||||
|
//}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// convert submission object to url safe params string
|
||||||
|
let submission_url_params = $.param(submission);
|
||||||
|
|
||||||
|
// if we have submission params
|
||||||
|
if(submission_url_params) {
|
||||||
|
|
||||||
|
// success actions
|
||||||
|
|
||||||
|
// create our submission action url
|
||||||
|
let submission_url_action = this.action + (submission_url_params ? '?' + submission_url_params : '');
|
||||||
|
|
||||||
|
// un-comment this to actually fire the form submission
|
||||||
|
window.location.href = submission_url_action;
|
||||||
|
|
||||||
|
// else no submission params
|
||||||
} else {
|
} else {
|
||||||
// we have previous values checked
|
|
||||||
// find checked inputs
|
|
||||||
//if( $(this).val() != '' ){
|
|
||||||
// if not empty append value and ,
|
|
||||||
$(this).find('input:checked').each(function(){
|
|
||||||
valueschecked += $(this).val() + ',';
|
|
||||||
});
|
|
||||||
//alert( appendtoURL +":not:" +eachfiltered +"=" +valuescheked);
|
|
||||||
//};
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
// remove last ','
|
// no submission data actions
|
||||||
valueschecked = valueschecked.slice(0, -1);
|
|
||||||
// save last cycled filtered value already calculated field=val01,val02,val03
|
|
||||||
appendtoURL += eachfiltered +'=' +valueschecked +'&';
|
|
||||||
|
|
||||||
// remove last &
|
}
|
||||||
appendtoURL = appendtoURL.slice(0, -1);
|
|
||||||
|
|
||||||
// update url
|
|
||||||
url += '?' +appendtoURL;
|
|
||||||
|
|
||||||
// show or modify the url
|
|
||||||
//alert( url );
|
|
||||||
//$('#filterlink').text(url);
|
|
||||||
|
|
||||||
// convert a href url to new value
|
|
||||||
$('#submitfilteredlink').attr('href',url);
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
})(jQuery);
|
});
|
||||||
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
|
|
Loading…
Reference in New Issue