summaryrefslogtreecommitdiff
path: root/src/components/_sila/Global/ThemeButton.vue
blob: 9a0de644c949ce58a6fc7a3e66edf9d2f993464e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<template>
  <b-nav-item @click="toggleTheme">
    <icon-sun v-if="userTheme !== 'dark-theme'" />
    <icon-moon v-if="userTheme === 'dark-theme'" />
  </b-nav-item>
</template>

<script>
import IconSun from '@carbon/icons-vue/es/sun/20';
import IconMoon from '@carbon/icons-vue/es/moon/20';

export default {
  name: 'ThemeButton',
  components: {
    IconSun,
    IconMoon,
  },

  data() {
    return {
      userTheme: 'light-theme',
    };
  },
  mounted() {
    const initUserTheme = this.getTheme() || this.getMediaPreference();
    this.setTheme(initUserTheme);
  },

  methods: {
    toggleTheme() {
      const activeTheme = localStorage.getItem('user-theme');
      if (activeTheme === 'light-theme') {
        this.setTheme('dark-theme');
      } else {
        this.setTheme('light-theme');
      }
    },

    getTheme() {
      return localStorage.getItem('user-theme');
    },

    setTheme(theme) {
      localStorage.setItem('user-theme', theme);
      this.userTheme = theme;
      document.documentElement.className = theme;
    },

    getMediaPreference() {
      const hasDarkPreference = window.matchMedia(
        '(prefers-color-scheme: dark)'
      ).matches;
      if (hasDarkPreference) {
        return 'dark-theme';
      } else {
        return 'light-theme';
      }
    },
  },
  // props: {},
  // data() {},
  // computed: {},
  // watch: {},
  // created() {},
  // mounted() {},
  // methods: {},
};
</script>

<style lang="scss">
:root.dark-theme {
  --background-color-primary: #1e1e1e;
  --background-color-secondary: #2d2d30;
  --accent-color: #3f3f3f;
  --text-primary-color: #ddd;
}
</style>