Add Game Compatibility page
This commit is contained in:
parent
e44e1fc5c7
commit
7ec9c38b84
5 changed files with 129 additions and 2 deletions
|
@ -40,6 +40,7 @@
|
||||||
<v-btn flat href="https://github.com/gdkchan/Ryujinx/wiki">Wiki</v-btn>
|
<v-btn flat href="https://github.com/gdkchan/Ryujinx/wiki">Wiki</v-btn>
|
||||||
<v-btn flat exact :to="{ name: 'Build' }">Build</v-btn>
|
<v-btn flat exact :to="{ name: 'Build' }">Build</v-btn>
|
||||||
<v-btn flat exact :to="{ name: 'Contribute' }">Contribute</v-btn>
|
<v-btn flat exact :to="{ name: 'Contribute' }">Contribute</v-btn>
|
||||||
|
<v-btn flat exact :to="{ name: 'Compatibility' }">Compatibility</v-btn>
|
||||||
|
|
||||||
<v-btn flat color="green" href="https://github.com/gdkchan/Ryujinx"><v-icon left>fab fa-github</v-icon>GitHub</v-btn>
|
<v-btn flat color="green" href="https://github.com/gdkchan/Ryujinx"><v-icon left>fab fa-github</v-icon>GitHub</v-btn>
|
||||||
<v-btn flat color="blue" href="https://discord.gg/VkQYXAZ"><v-icon left>fab fa-discord</v-icon>Discord</v-btn>
|
<v-btn flat color="blue" href="https://discord.gg/VkQYXAZ"><v-icon left>fab fa-discord</v-icon>Discord</v-btn>
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
<div class="text-xs-center">
|
<div class="text-xs-center">
|
||||||
<p class="display-1">Building RyujiNX <small>(Windows only for now)</small>:</p>
|
<p class="display-1">Building RyujiNX <small>(Windows only for now)</small>:</p>
|
||||||
<p class="headline"><em>
|
<p class="headline"><em>
|
||||||
Support for OSX and Linux is limited and not really recommended for use as of late.</br>
|
Support for OSX and Linux is limited and not really recommended for use as of late.<br>
|
||||||
To get started; you will need the .NET Core 2.0 or greater runtime installed.
|
To get started; you will need the .NET Core 2.0 or greater runtime installed.
|
||||||
</em></p>
|
</em></p>
|
||||||
<span class="subheading">
|
<span class="subheading">
|
||||||
|
|
120
src/components/Compatibility.vue
Normal file
120
src/components/Compatibility.vue
Normal file
|
@ -0,0 +1,120 @@
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<section>
|
||||||
|
<v-card>
|
||||||
|
<v-card-title>
|
||||||
|
<v-card-title class="display-1">
|
||||||
|
Game Compatibility List
|
||||||
|
</v-card-title>
|
||||||
|
<v-spacer></v-spacer>
|
||||||
|
<v-text-field
|
||||||
|
v-model="search"
|
||||||
|
append-icon="search"
|
||||||
|
label="Search"
|
||||||
|
single-line
|
||||||
|
hide-details
|
||||||
|
></v-text-field>
|
||||||
|
</v-card-title>
|
||||||
|
<v-data-table
|
||||||
|
:headers="headers"
|
||||||
|
:items="games"
|
||||||
|
:loading="loading"
|
||||||
|
:search="search"
|
||||||
|
item-key="name"
|
||||||
|
must-sort
|
||||||
|
class="elevation-1"
|
||||||
|
>
|
||||||
|
<v-progress-linear slot="progress" color="blue" indeterminate></v-progress-linear>
|
||||||
|
<template slot="items" slot-scope="props">
|
||||||
|
<tr @click="props.expanded = !props.expanded">
|
||||||
|
<td>
|
||||||
|
<img :src="props.item.boxart_url" height="100px">
|
||||||
|
</td>
|
||||||
|
<td>{{ props.item.name }}</td>
|
||||||
|
<td>{{ props.item.title_id.join(', ') }}</td>
|
||||||
|
<td>{{ props.item.state }}</td>
|
||||||
|
<td>
|
||||||
|
<vue-markdown :source="props.item.comment"></vue-markdown>
|
||||||
|
</td>
|
||||||
|
<td>{{ props.item.state_last_date }}</td>
|
||||||
|
</tr>
|
||||||
|
</template>
|
||||||
|
<template slot="expand" slot-scope="props">
|
||||||
|
<v-layout row wrap align-start justify-center>
|
||||||
|
<v-flex xs12 md6>
|
||||||
|
<img
|
||||||
|
v-if="props.item.screen_url"
|
||||||
|
:src="props.item.screen_url"
|
||||||
|
class="px-5 py-5"
|
||||||
|
width="100%"
|
||||||
|
>
|
||||||
|
</v-flex>
|
||||||
|
</v-layout>
|
||||||
|
</template>
|
||||||
|
<template slot="no-data">
|
||||||
|
<div v-if="loading" class="text-xs-center">
|
||||||
|
Loading games, hang tight fam...
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</v-data-table>
|
||||||
|
</v-card>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import VueMarkdown from 'vue-markdown';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
VueMarkdown
|
||||||
|
},
|
||||||
|
|
||||||
|
data () {
|
||||||
|
return {
|
||||||
|
loading: true,
|
||||||
|
games: [],
|
||||||
|
search: '',
|
||||||
|
headers: [
|
||||||
|
{
|
||||||
|
text: 'Boxart',
|
||||||
|
value: 'boxart_url',
|
||||||
|
sortable: false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: 'Name',
|
||||||
|
value: 'name'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: 'Title IDs',
|
||||||
|
value: 'title_id'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: 'State',
|
||||||
|
value: 'state'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: 'Comment',
|
||||||
|
value: 'comment'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: 'Last Test Date',
|
||||||
|
value: 'state_last_date'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
async fetchGames () {
|
||||||
|
let _fetch = await fetch('https://ryujinx.org/public/CompatibilityList.json');
|
||||||
|
this.games = await _fetch.json();
|
||||||
|
this.loading = false;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
mounted () {
|
||||||
|
this.fetchGames();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
|
@ -41,7 +41,7 @@
|
||||||
Please consider reporting it via our Discord server.
|
Please consider reporting it via our Discord server.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<v-btn dark color="blue" target="_blank" href="https://github.com/gdkchan/Ryujinx/wiki/Games-Compatibility-List">
|
<v-btn dark color="blue" :to="{ name: 'Compatibility' }">
|
||||||
<v-icon left>fas fa-list</v-icon>
|
<v-icon left>fas fa-list</v-icon>
|
||||||
Game compatibility list
|
Game compatibility list
|
||||||
</v-btn>
|
</v-btn>
|
||||||
|
|
|
@ -5,6 +5,7 @@ import News from '@/components/News';
|
||||||
import Contribute from '@/components/Contribute';
|
import Contribute from '@/components/Contribute';
|
||||||
import Build from '@/components/Build';
|
import Build from '@/components/Build';
|
||||||
import BuildNetCore from '@/components/Build.Net_Core';
|
import BuildNetCore from '@/components/Build.Net_Core';
|
||||||
|
import Compatibility from '@/components/Compatibility';
|
||||||
|
|
||||||
Vue.use(Router);
|
Vue.use(Router);
|
||||||
|
|
||||||
|
@ -34,6 +35,11 @@ export default new Router({
|
||||||
path: '/Build/NetCore',
|
path: '/Build/NetCore',
|
||||||
name: 'BuildNetCore',
|
name: 'BuildNetCore',
|
||||||
component: BuildNetCore
|
component: BuildNetCore
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/Compatibility',
|
||||||
|
name: 'Compatibility',
|
||||||
|
component: Compatibility
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue