citra-emu
/
citra-web
Archived
1
0
Fork 0
This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
citra-web/site/themes/citra-bs-theme/layouts/game/list.html

143 lines
4.0 KiB
HTML

{{ define "main" }}
<h1>Game Compatibility List</h1>
<p>The Citra Emulator compatibility list contains all the games we tested, sorted by how well they work on the emulator.</p>
<table class="table table-striped table-bordered">
<tbody>
{{ range .Site.Data.compatibility }}
<tr>
<td style="width: 120px;"><div class="square-icon" style="background-color: {{ .color }}"></div> {{ .name }}</td>
<td class="row-compat-desc">{{ .description }}</td>
</tr>
{{ end }}
</tbody>
</table>
<div id="highchart-container" style="height: 100px; margin: 0 auto"></div>
<hr />
<div id="game-listing">
<div>
<form class="pull-right">
<div class="form-group">
<table>
<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>
</td>
<td>
<a href="https://services.citra-emu.org/game/" class="btn btn-default">Add a Game</a>
</td>
</tr>
</table>
</div>
</form>
</div>
<ul class="pagination pull-left"></ul>
<table id="compatibility-list" class="table table-responsive">
<thead>
<tr>
<th></th>
<th>Title</th>
<th>Type</th>
<th>Compatibility</th>
<th>Date Tested</th>
</tr>
</thead>
<tbody class="list">
{{ range .Data.Pages.GroupByParam "section_id" }}
<tr>
<td id="game-section-header">
<h3 id="{{ .Key }}">{{ .Key }}</h3>
</td>
</tr>
{{ range .Pages }}
{{- $rating := index .Site.Data.compatibility .Params.compatibility }}
{{- $type := index .Site.Data.gameTypes (.Params.game_type | default "3ds") }}
<tr data-compatibility="{{ $rating.name }}">
<td class="hidden listing-metadata">
{{ .Params.title }} {{ $type.name }} {{ $rating.name }} {{ dateFormat "January 2, 2006" .Params.testcase_date }}
</td>
<td class="col-md-1">
<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>
{{ end }}
{{ end }}
</tbody>
</table>
</div>
{{ end }}
{{ 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/modules/exporting.js"></script>
<script type="text/javascript">
var options = {
valueNames: ['listing-metadata'],
pagination: true,
indexAsync: true,
page: 50
};
var list = new List('game-listing', options);
function filterTable(_) {
var rating = this.name;
$("#search-box").val(rating);
list.fuzzySearch(rating);
}
function clearSearch() {
$("#search-box").val("");
list.fuzzySearch();
}
Highcharts.chart('highchart-container', {
chart: { type: 'bar' },
colors: [{{ range .Site.Data.compatibility }}"{{ .color }}", {{- end }}],
credits: { enabled: false },
exporting: { enabled: false },
title: { text: '' },
xAxis: { categories: [''] },
yAxis: { min: 0, max: {{ len .Data.Pages }}, title: { text: '' } },
legend: { enabled: false },
plotOptions: { series: {
stacking: 'normal',
cursor: 'pointer',
events: {
click: filterTable
}
} },
series: [
{{- $dataPages := .Data.Pages }}
{{- range .Site.Data.compatibility }}
{{- $dataPagesFiltered := where $dataPages ".Params.compatibility" .key }}
{ "name": "{{ .name }}", "data": [ {{ len $dataPagesFiltered }} ] },
{{- end }}
]
});
</script>
{{ end }}