This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/components/ModeSwitch.vue

46 lines
1.2 KiB
Vue

<template>
<div class="py-2 px-3">
<div class="form-check form-switch text-dark">
<label>
<input class="form-check-input" type="checkbox" v-model="isDark">
<Icon :v="isDark ? 'moon' : 'sun'"/>
{{ $t('mode.' + (isDark ? 'dark' : 'light')) }}
</label>
</div>
</div>
</template>
<script>
import dark from "../plugins/dark";
export default {
mixins: [dark],
data() {
return {
isDark: false,
}
},
mounted() {
if (!process.client) {
return false;
}
this.isDark = this.detectDark();
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', e => this.isDark = e.matches);
this.$eventHub.$on('mode-changed', dark => {
if (dark !== this.isDark) {
this.isDark = dark;
}
})
},
watch: {
isDark(dark) {
this.$eventHub.$emit('mode-changed', dark);
this.setMode(dark);
this.$store.commit('setDarkMode', dark);
}
}
}
</script>