diff options
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/DarkMode.vue | 42 |
1 files changed, 35 insertions, 7 deletions
diff --git a/src/components/DarkMode.vue b/src/components/DarkMode.vue index a5aae41..02450d9 100644 --- a/src/components/DarkMode.vue +++ b/src/components/DarkMode.vue | |||
@@ -4,7 +4,7 @@ | |||
4 | aria-label="Toggle dark mode" | 4 | aria-label="Toggle dark mode" |
5 | class="navbar-item is-inline-block-mobile" | 5 | class="navbar-item is-inline-block-mobile" |
6 | > | 6 | > |
7 | <i class="fas fa-fw fa-adjust"></i> | 7 | <i :class="`${faClasses[mode]}`" class="fa-fw"></i> |
8 | </a> | 8 | </a> |
9 | </template> | 9 | </template> |
10 | 10 | ||
@@ -14,21 +14,49 @@ export default { | |||
14 | data: function () { | 14 | data: function () { |
15 | return { | 15 | return { |
16 | isDark: null, | 16 | isDark: null, |
17 | faClasses: null, | ||
18 | mode: null, | ||
17 | }; | 19 | }; |
18 | }, | 20 | }, |
19 | created: function () { | 21 | created: function () { |
20 | this.isDark = | 22 | this.faClasses = ["fas fa-adjust", "fas fa-circle", "far fa-circle"]; |
21 | "overrideDark" in localStorage | 23 | this.mode = 0; |
22 | ? JSON.parse(localStorage.overrideDark) | 24 | if ("overrideDark" in localStorage) { |
23 | : matchMedia("(prefers-color-scheme: dark)").matches; | 25 | // Light theme is 1 and Dark theme is 2 |
26 | this.mode = JSON.parse(localStorage.overrideDark) ? 2 : 1; | ||
27 | } | ||
28 | this.isDark = this.getIsDark(); | ||
24 | this.$emit("updated", this.isDark); | 29 | this.$emit("updated", this.isDark); |
25 | }, | 30 | }, |
26 | methods: { | 31 | methods: { |
27 | toggleTheme: function () { | 32 | toggleTheme: function () { |
28 | this.isDark = !this.isDark; | 33 | this.mode = (this.mode + 1) % 3 |
29 | localStorage.overrideDark = this.isDark; | 34 | switch(this.mode) { |
35 | // Default behavior | ||
36 | case 0: | ||
37 | localStorage.removeItem("overrideDark"); | ||
38 | break | ||
39 | // Force light theme | ||
40 | case 1: | ||
41 | localStorage.overrideDark = false; | ||
42 | break | ||
43 | // Force dark theme | ||
44 | case 2: | ||
45 | localStorage.overrideDark = true; | ||
46 | break | ||
47 | default: | ||
48 | // Should be unreachable | ||
49 | break | ||
50 | } | ||
51 | |||
52 | this.isDark = this.getIsDark(); | ||
30 | this.$emit("updated", this.isDark); | 53 | this.$emit("updated", this.isDark); |
31 | }, | 54 | }, |
55 | |||
56 | getIsDark: function() { | ||
57 | const values = [matchMedia("(prefers-color-scheme: dark)").matches, false, true]; | ||
58 | return values[this.mode]; | ||
59 | } | ||
32 | }, | 60 | }, |
33 | }; | 61 | }; |
34 | </script> | 62 | </script> |