mirror of
https://github.com/romancm/gamebrary
synced 2024-12-18 15:23:14 +00:00
added dark theme button
This commit is contained in:
parent
bd68c7c116
commit
06eeb65e40
1 changed files with 29 additions and 3 deletions
|
@ -1,7 +1,13 @@
|
||||||
<template lang="html">
|
<template lang="html">
|
||||||
<nav class="position-fixed d-flex flex-column p-0 vh-100 text-center">
|
<nav
|
||||||
|
class="position-fixed d-flex flex-column p-0 vh-100 text-center"
|
||||||
|
:class="{ 'bg-dark text-white': nightMode }"
|
||||||
|
>
|
||||||
<router-link :to="{ name: 'dashboard' }" class="mt-2 mb-3">
|
<router-link :to="{ name: 'dashboard' }" class="mt-2 mb-3">
|
||||||
<img src="/static/gamebrary-logo-dark.png" width="32" />
|
<img
|
||||||
|
:src="`/static/gamebrary-logo${nightMode ? '' : '-dark'}.png`"
|
||||||
|
width="32"
|
||||||
|
/>
|
||||||
</router-link>
|
</router-link>
|
||||||
|
|
||||||
<template v-if="hasMultipleBoards">
|
<template v-if="hasMultipleBoards">
|
||||||
|
@ -75,6 +81,15 @@
|
||||||
<icon name="info" />
|
<icon name="info" />
|
||||||
</b-button>
|
</b-button>
|
||||||
|
|
||||||
|
<!-- <b-button
|
||||||
|
variant="link"
|
||||||
|
:title="$t('navMenu.about')"
|
||||||
|
v-b-tooltip.hover.right
|
||||||
|
@click="toggleTheme"
|
||||||
|
>
|
||||||
|
<icon :name="nightMode ? 'moon' : 'sun'" />
|
||||||
|
</b-button> -->
|
||||||
|
|
||||||
<router-link
|
<router-link
|
||||||
:title="$t('settings.account')"
|
:title="$t('settings.account')"
|
||||||
class="mb-2 mt-3 d-block"
|
class="mb-2 mt-3 d-block"
|
||||||
|
@ -101,7 +116,7 @@ import { mapState, mapGetters } from 'vuex';
|
||||||
export default {
|
export default {
|
||||||
computed: {
|
computed: {
|
||||||
...mapState(['board', 'user', 'notification', 'settings']),
|
...mapState(['board', 'user', 'notification', 'settings']),
|
||||||
...mapGetters(['sortedBoards']),
|
...mapGetters(['sortedBoards', 'nightMode']),
|
||||||
|
|
||||||
routeName() {
|
routeName() {
|
||||||
return this.$route.name;
|
return this.$route.name;
|
||||||
|
@ -111,6 +126,17 @@ export default {
|
||||||
return this.$route.name === 'board' && this.board.name && this.sortedBoards.length > 1;
|
return this.$route.name === 'board' && this.board.name && this.sortedBoards.length > 1;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
toggleTheme() {
|
||||||
|
this.$store.commit('UPDATE_SETTING', { key: 'nightMode', value: !this.nightMode });
|
||||||
|
|
||||||
|
this.$store.dispatch('SAVE_SETTINGS', this.settings)
|
||||||
|
.catch(() => {
|
||||||
|
this.$bvToast.toast('There was an error saving your settings', { title: 'Error', variant: 'danger' });
|
||||||
|
});
|
||||||
|
},
|
||||||
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue