$(function() { /*================================================================ 情報 ================================================================*/ var allList = [ { id: "1961", life: "128.8", url:"index.php?act=staff&id=1961", img:"user_data/11130.jpg", nen:"平成22年式", soukou:"260088", title:"3⃣ハイエースグランドキャビン銀1113", sold:"", new:"", tag: ["","","","AT","売り切れ"], description: "tesut" }, { id: "2008", life: "158.8", url:"index.php?act=staff&id=2008", img:"user_data/11175.jpg", nen:"平成27年式", soukou:"69300", title:"【ツ】トヨタヴォクシーX Cパッケージ銀6708", sold:"", new:"", tag: ["","販売中","","AT",""], description: "tesut" }, { id: "2010", life: "178.8", url:"index.php?act=staff&id=2010", img:"user_data/11205.jpg", nen:"平成17年式", soukou:"112644", title:"【あ単】ハイエースグランドキャビン銀1196", sold:"", new:"", tag: ["","販売中","","AT",""], description: "tesut" }, { id: "2124", life: "138.8", url:"index.php?act=staff&id=2124", img:"user_data/13617.jpg", nen:"平成21年式", soukou:"97061", title:"【あ単レ】エスティマ4WD ハイブリッドX白1310", sold:"", new:"", tag: ["","販売中","","AT",""], description: "tesut" }, { id: "2481", life: "168.8", url:"index.php?act=staff&id=2481", img:"user_data/13837.jpg", nen:"平成28年式", soukou:"65195", title:"トヨタヴォクシーV白7703", sold:"", new:"", tag: ["新着","","","AT","売り切れ"], description: "tesut" }, { id: "1247", life: "268.8", url:"index.php?act=staff&id=1247", img:"user_data/8680.jpg", nen:"平成29年式", soukou:"96653", title:"ハイエースワゴングランドキャビン10名乗り851", sold:"", new:"", tag: ["","販売中","","AT",""], description: "tesut" }, ]; /*================================================================ スクリプトはじまり ================================================================*/ function init() { //イベント登録 $(".filter_life select").on("change", onFilterChange); $(".filter_tag input").on("change", onFilterChange); $(".filter_keyword button").on("click", onFilterChange); //最初は全て出力 refleshHtml(allList); } /*================================================================ HTML出力 ================================================================*/ function refleshHtml(list) { var outputHtml = ''; //出力する内容をoutputHtmlに格納 if (list.length > 0) { _.each(list, function(line, i) { outputHtml += '

' + line.title + '

'; outputHtml += '' + line.title + ''; outputHtml += '' + line.new + '' + line.sold + ''; outputHtml += '

価格 ' + line.life + '万円

'; outputHtml += '

年式: ' + line.nen + '

'; outputHtml += '

走行: 約 ' + line.soukou + 'km

'; outputHtml += '
'; }); } else { outputHtml += '

条件に当てはまる車を検索できませんでした。

'; } //HTML出力(フェードインアニメーションつき) $('.productArea').html(outputHtml); $('.productArea .product').css({opacity: 0}).each(function(i){$(this).delay(100 * i).animate({opacity:1}, 300); }); //検索件数表示 $('.productCntArea').html('

' + allList.length + '件中' + list.length + '件を表示しています。

'); } /*================================================================ 絞り込み条件を変更した時 ================================================================*/ function onFilterChange(e) { var filterFncs = []; var result = []; //セレクトボックスの値を引数に指定した関数filterByLifeをfilterFuncs配列に格納 filterFncs.push( function(list) { return filterByLife(list, $('.filter_life select').val()); } ); //チェックボックスの値を引数に指定した関数filterByTagをfilterFuncs配列に格納 filterFncs.push( function(list) { return filterByTag(list, $('.filter_tag input:checked')); } ); //キーワードの値を引数に指定した関数filterByKeywordをfilterFuncs配列に格納 filterFncs.push( function(list) { return filterByKeyword(list, _.escape($('.filter_keyword input').val())); } ); //FilterFuncs配列内の関数をバケツリレーみたいに1つずつ実行して結果をresult配列に格納 result = _.reduce(filterFncs, function(list, fnc) { return fnc(list); }, allList); //絞り込んだ結果を出力 refleshHtml(result); } /*================================================================ 絞り込み[1] セレクトボックス絞り込み関数 ================================================================*/ function filterByLife(list, value) { //絞り込み指定がない場合はリターン if (value == "") { return list; } //選択したセレクトボックスとlifeがマッチするかでフィルタリング return _.filter(list, function(item) { switch (value) { case '1': return item.life <= 10; case '2': return 10 < item.life && item.life <= 20; case '3': return 20 < item.life && item.life <= 30; case '4': return 30 < item.life && item.life <= 40; case '5': return 40 < item.life && item.life <= 50; case '6': return 50 < item.life; } }); } /*================================================================ 絞り込み[2] チェックボックス絞り込み関数 ================================================================*/ function filterByTag(list, value) { //絞り込み指定がない場合はリターン if (value.length == 0) { return list; } //選択した属性(チェックボックス)とtagがマッチするかでフィルタリング return _.filter(list, function(item) { var isMatch = false; //配列同士の比較 _.each(value, function(chkItem, i) { _.each(item.tag, function(tagItem, i) { if (tagItem === $(chkItem).val()) { isMatch = true; } }); }); return isMatch; }); } /*================================================================ 絞り込み[3] テキストボックス絞り込み関数 ================================================================*/ function filterByKeyword(list, value) { //絞り込み指定がない場合はリターン if (value == "") { return list; } //検索キーワードを配列に格納(スペースがある場合は複数格納) var freeAry = [];  var val = value.replace(/ /g, " "); searchAry = val.split(" "); //入力したキーワードがtitleもしくdescriptionにマッチするかでフィルタリング return _.filter(list, function(item) { var isMatch = false; _.each(searchAry, function(data, i) { if (item.title.indexOf(data) != -1 || item.description.indexOf(data) != -1) { isMatch = true; } }); return isMatch; }); } /*================================================================ スクリプトはじめ ================================================================*/ init(); });