mirror of
https://github.com/romancm/gamebrary
synced 2024-12-20 08:13:08 +00:00
81 lines
2 KiB
Vue
81 lines
2 KiB
Vue
<template lang="html">
|
|
<b-container class="pt-3">
|
|
<div class="d-flex justify-content-between align-items-center mb-3">
|
|
<h3 class="m-0">
|
|
<b-button
|
|
size="sm"
|
|
:variant="nightMode ? 'dark' : 'light'"
|
|
@click="$router.push({ name: 'settings' })"
|
|
>
|
|
<icon name="chevron-left" />
|
|
</b-button>
|
|
|
|
Releases
|
|
</h3>
|
|
</div>
|
|
|
|
<b-card
|
|
v-for="release in releases"
|
|
:key="release.id"
|
|
:bg-variant="nightMode ? 'dark' : null"
|
|
:text-variant="nightMode ? 'white' : null"
|
|
hide-footer
|
|
class="mb-3"
|
|
>
|
|
<template v-slot:header>
|
|
<h6 class="mb-0">
|
|
<b-badge>{{ release.tag_name }}</b-badge>
|
|
{{ release.name }}
|
|
</h6>
|
|
</template>
|
|
|
|
<b-card-text>
|
|
<small class="text-muted">
|
|
{{ $t('releases.published') }} {{ formatDate(release.published_at) }}
|
|
</small>
|
|
|
|
<vue-markdown :source="release.body" class="w-100 releases" />
|
|
</b-card-text>
|
|
</b-card>
|
|
</b-container>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState, mapGetters } from 'vuex';
|
|
import VueMarkdown from 'vue-markdown';
|
|
|
|
export default {
|
|
components: {
|
|
VueMarkdown,
|
|
},
|
|
|
|
computed: {
|
|
...mapState(['releases', 'notification', 'settings']),
|
|
...mapGetters(['nightMode']),
|
|
},
|
|
|
|
mounted() {
|
|
const [latestRelease] = this.releases;
|
|
|
|
if (this.notification && latestRelease && latestRelease.tag_name) {
|
|
this.$store.commit('UPDATE_SETTING', { key: 'release', value: latestRelease.tag_name });
|
|
|
|
this.$store.dispatch('SAVE_SETTINGS', this.settings)
|
|
.then(() => {
|
|
this.$store.commit('SET_NOTIFICATION', false);
|
|
})
|
|
.catch(() => {
|
|
this.$bvToast.toast(
|
|
'There was an error saving your settings',
|
|
{ title: 'Error', variant: 'danger' });
|
|
});
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
formatDate(date) {
|
|
return new Intl.DateTimeFormat().format(new Date(date));
|
|
},
|
|
},
|
|
};
|
|
</script>
|