citra-emu
/
citra-web
Archived
1
0
Fork 0

Implement search functionality + add game button (#31)

This commit is contained in:
James 2017-07-04 14:10:07 +10:00 committed by Flame Sage
parent 46434df5e8
commit 2979cefc38
3 changed files with 121 additions and 100 deletions

View File

@ -16,14 +16,28 @@
<hr /> <hr />
<div id="game-sections"> <div id="game-listing">
<div class="btn-group" role="group"> <div>
<a class="btn btn-secondary" href="##">#</a> <form class="pull-right">
{{ range (seq 'a' 'z') }} <div class="form-group">
<a class="btn btn-secondary" href="#{{ printf "%c" . }}">{{ printf "%c" . }}</a> <table>
{{ end }} <tr>
<td>
<div class="input-group search-box">
<input type="text" class="form-control fuzzy-search" id="search-box" placeholder="Search...">
<span onclick="clearSearch()" class="clear-search input-group-addon">X</span>
</div> </div>
</td>
<td>
<a href="https://services.citra-emu.org/game/" class="btn btn-default">Add a Game</a>
</td>
</tr>
</table>
</div> </div>
</form>
</div>
<ul class="pagination pull-left"></ul>
<table id="compatibility-list" class="table table-responsive"> <table id="compatibility-list" class="table table-responsive">
<thead> <thead>
@ -35,7 +49,7 @@
<th>Date Tested</th> <th>Date Tested</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody class="list">
{{ range .Data.Pages.GroupByParam "section_id" }} {{ range .Data.Pages.GroupByParam "section_id" }}
<tr> <tr>
<td id="game-section-header"> <td id="game-section-header">
@ -47,67 +61,60 @@
{{- $rating := index .Site.Data.compatibility .Params.compatibility }} {{- $rating := index .Site.Data.compatibility .Params.compatibility }}
{{- $type := index .Site.Data.gameTypes (.Params.game_type | default "3ds") }} {{- $type := index .Site.Data.gameTypes (.Params.game_type | default "3ds") }}
<tr data-compatibility="{{ $rating.name }}"> <tr data-compatibility="{{ $rating.name }}">
<td class="col-md-1"><img src="{{ .Site.BaseURL }}images/game/icons/{{ .File.BaseFileName }}.png" /></td> <td class="hidden listing-metadata">
<td class="col-md-6"><a href="{{ .Permalink }}">{{ .Params.title }}</a></td> {{ .Params.title }} {{ $type.name }} {{ $rating.name }} {{ dateFormat "January 2, 2006" .Params.testcase_date }}
<td class="col-md-1"><img src="{{ .Site.BaseURL }}images/game/types/{{ $type.key }}.png" title="{{ $type.name }}" /></td> </td>
<td class="col-md-1"><div class="square-icon" style="background-color: {{ $rating.color }}"></div> {{ $rating.name }}</td> <td class="col-md-1">
<td class="col-md-3">{{ dateFormat "January 2, 2006" .Params.testcase_date }}</td> <img src="/images/game/icons/{{ .File.BaseFileName }}.png" />
</td>
<td class="col-md-6">
<a href="{{ .Permalink }}">{{ .Params.title }}</a>
</td>
<td class="col-md-1">
<img src="/images/game/types/{{ $type.key }}.png" title="{{ $type.name }}" />
</td>
<td class="col-md-1">
<div class="square-icon" style="background-color: {{ $rating.color }}"></div> {{ $rating.name }}
</td>
<td class="col-md-3">
{{ dateFormat "January 2, 2006" .Params.testcase_date }}
</td>
</tr> </tr>
{{ end }} {{ end }}
{{ end }} {{ end }}
</tbody> </tbody>
</table> </table>
</div>
{{ end }} {{ end }}
{{ define "scripts" }} {{ define "scripts" }}
<script src="/js/vendor/list.min.js"></script>
<script src="https://code.highcharts.com/highcharts.js"></script> <script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script> <script src="https://code.highcharts.com/modules/exporting.js"></script>
<script type="text/javascript"> <script type="text/javascript">
function filterTable(e){ var options = {
valueNames: ['listing-metadata'],
pagination: true,
indexAsync: true,
page: 50
};
var list = new List('game-listing', options);
function filterTable(_) {
var rating = this.name; var rating = this.name;
//If clicked on a new color, hides all other colors $("#search-box").val(rating);
if (rating != window.lastClicked){ list.fuzzySearch(rating);
clearFilter();
window.lastClicked = rating;
var chart = $("#highchart-container").highcharts()
window.clearButton = chart.renderer.button('Clear Filter', null, null, function(){ clearFilter() }, {
zIndex: 20
}).attr({
align: 'right',
title: 'Clear compatibility filter'
}).add().align({
align: 'right',
x: -16,
y: 18
}, false, null);
$("#compatibility-list tbody tr[data-compatibility][data-compatibility!=\"" + rating + "\"]").css('display', 'none');
//Checks if section headers are empty and hides them if they are
$("#compatibility-list tbody tr:not([data-compatibility])").each(function(){
var elements = $(this).nextUntil("#compatibility-list tbody tr:not([data-compatibility])").filter(function(){
return $(this).css('display') != 'none';
});
var containsVisible = !!elements.length;
if (!containsVisible)
$(this).css('display', 'none');
})
} else {
clearFilter();
} }
}
function clearFilter(){
$("#compatibility-list tbody tr").css('display', '');
if (window.clearButton){
window.clearButton.destroy();
window.clearButton = undefined;
window.lastClicked = undefined;
}
}
Highcharts.chart('highchart-container', { function clearSearch() {
$("#search-box").val("");
list.fuzzySearch();
}
Highcharts.chart('highchart-container', {
chart: { type: 'bar' }, chart: { type: 'bar' },
colors: [{{ range .Site.Data.compatibility }}"{{ .color }}", {{- end }}], colors: [{{ range .Site.Data.compatibility }}"{{ .color }}", {{- end }}],
credits: { enabled: false }, credits: { enabled: false },
@ -130,6 +137,6 @@ Highcharts.chart('highchart-container', {
{ "name": "{{ .name }}", "data": [ {{ len $dataPagesFiltered }} ] }, { "name": "{{ .name }}", "data": [ {{ len $dataPagesFiltered }} ] },
{{- end }} {{- end }}
] ]
}); });
</script> </script>
{{ end }} {{ end }}

View File

@ -336,3 +336,15 @@ a:hover, a:focus {
#game-section-header { #game-section-header {
border: 0; border: 0;
} }
.pagination {
margin: 0;
}
.clear-search {
cursor: pointer;
}
.search-box {
margin: 0 20px;
}

File diff suppressed because one or more lines are too long