Compare commits

..

13 Commits
js-02 ... main

1 changed files with 106 additions and 83 deletions

View File

@ -18,9 +18,8 @@
* @package Oficina_de_Suport_theme * @package Oficina_de_Suport_theme
*/ */
?> ?>
<?php <?php
if( ! function_exists( 'ofisuport_ajuts_filters_form' ) ): if( ! function_exists( 'ofisuport_ajuts_filters_form') ) {
function ofisuport_ajuts_filters_form() { function ofisuport_ajuts_filters_form() {
?> ?>
<div id="archive-filters" class="ofisuport-filters"> <div id="archive-filters" class="ofisuport-filters">
@ -47,8 +46,9 @@ if( ! function_exists( 'ofisuport_ajuts_filters_form' ) ):
// check for values in url and get value if available // check for values in url and get value if available
if( isset($_GET[ $fieldname ]) ) { if( isset($_GET[ $fieldname ]) ) {
$filteredvalues['value'] = explode(',', $_GET[ $fieldname ]); $filteredvalues['value'] = explode(',', $_GET[ $fieldname ]);
} else {
$filteredvalues['value'] = [];
}; };
//end check for values in url //end check for values in url
@ -56,17 +56,12 @@ if( ! function_exists( 'ofisuport_ajuts_filters_form' ) ):
if( $fieldname == $fields['name']) { if( $fieldname == $fields['name']) {
?> ?>
<section id="fund-filter-<?php echo $fields['name']; ?>" class="<?php echo $fields['name']; ?>"> <section id="fund-filter fund-filter-<?php echo $fields['name']; ?>" class="<?php echo $fields['name']; ?>">
<h5><?php echo $fields['label'];?></h5> <h5 class="oficinasuport-titol-opcions"><?php echo $fields['label'];?></h5>
<?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 <input class="ofisuport-filter" type="checkbox" name="<?php echo $fields['name'];?>" <?php if( in_array( $choicevalue, $filteredvalues['value']) ) { echo 'checked'; } ?> value="<?php echo $choicevalue; ?>" />
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>
@ -84,66 +79,94 @@ 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 ?>
<p><b>Results:</b> <span id="results"></span></p> <?php //echo '<p><span id="filterlink"></span></p>';?>
<button type="button" name="submit-ajut" class="button-more">enviar</button> <p><a id="submitfilteredlink" name="submit-ajut" class="button button-more" href="">enviar</a> </p>
</form> </form>
<?php //close the form and subit ?> <?php //close the form and subit ?>
<?php }; //end if groupkey ?>
<?php }; //end if groupkey ?>
<aside id="search-form-ajuts" class="ofisuport-search-ajuts">
<?php
// search form for custom post type 'oficinasuport-ajut'
// <input type="hidden" value="ofisuport-ajut" name="post_type" id="post_type" />
// https://developer.wordpress.org/reference/functions/get_search_form/#comment-369
// https://wordpress.stackexchange.com/questions/313037/restrict-a-sear ch-to-a-custom-post-type
?>
<form class="ofisuport-search-form" role="search" method="get" action="/">
<label class="screen-reader-text" for="search">Search in ajuts</label>
<input type="search" id="search" class="search-field" placeholder="cerca amb paraula clau..." value="<?php the_search_query(); ?>" name="s" />
<input type="submit" id="searchsubmit" class="search-submit" value="cerca">
<span class="ofisuport-search-submit ofisuport-icon-search"></span>
<input type="hidden" value="ofisuport-ajut" name="post_type" id="post_type" />
</form>
</aside>
</div> </div>
<script type="text/javascript"> <script type="text/javascript">
(function($) { (function($) {
// change // change
//$('#archive-filters').on('change', 'input[type="checkbox"]', function(){ $('#archive-filters').on('click', 'input', function(){
$('#archive-filters').on('click', 'button', function(){
// vars // vars
var url = '<?php echo home_url('ajuts/'); ?>'; var url = '<?php echo home_url('ajuts/'); ?>';
args = {}; args = {};
var appendtoURL = '';
var eachfiltered = '';
var valueschecked = '';
// loop over filters // loop over filters
$('#archive-filters .filter').each(function(){ $('#archive-filters .filter').each(function(){
urldos = url; // check if is first appearance of each
// vars if( eachfiltered != $(this).data('filter') ){
var filteredajuts = $(this).data('filter'), // save already calculated field=val01,val02,val03
vals = [], if( eachfiltered != '' && valueschecked != '' ){
allvalueschecked = []; // remove last ','
valueschecked = valueschecked.slice(0, -1);
appendtoURL += eachfiltered +'=' +valueschecked +'&';
};
// start new fieldname filtered
eachfiltered = $(this).data('filter');
// reset values
valueschecked = '';
// find checked inputs // find checked inputs
$(this).find('input:checked').each(function(){ $(this).find('input:checked').each(function(){
vals.push( $(this).val() ); // if not empty save value and ,
var thisvaluechecked = $(this).val(); if( $(this).val() != '' ){
urldos += filteredajuts; valueschecked += $(this).val() + ',';
};
});
//alert( appendtoURL +":" +eachfiltered +"=" +valuescheked);
} 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);
//};
};
}); });
// append to args // remove last ','
args[ filteredajuts ] = vals.join(','); valueschecked = valueschecked.slice(0, -1);
alert( filteredajuts +'=' +args[ filteredajuts ]); // save last cycled filtered value already calculated field=val01,val02,val03
}); appendtoURL += eachfiltered +'=' +valueschecked +'&';
// update url
url += '?';
// loop over args
$.each(args, function( name, value ){
url += name + '=' + value + '&';
});
// remove last & // remove last &
url = url.slice(0, -1); appendtoURL = appendtoURL.slice(0, -1);
// reload page // update url
//$('#archive-filters button').on('click', function () { url += '?' +appendtoURL;
alert( "estoy en: " +url );
//window.location.replace( url ); // show or modify the url
//}); //alert( url );
//$('#filterlink').text(url);
// convert a href url to new value
$('#submitfilteredlink').attr('href',url);
}); });
@ -151,6 +174,6 @@ if( ! function_exists( 'ofisuport_ajuts_filters_form' ) ):
</script> </script>
<?php <?php
}; //end ofisuport_display_filters() }; //end ofisuport_ajuts_filters_form
endif; // end if ! functionexists }; // end if ! functions_exists
?> ?>