diff options
author | Aryess <yoann.celton@gmail.com> | 2021-10-12 11:28:41 +1100 |
---|---|---|
committer | Aryess <yoann.celton@gmail.com> | 2021-10-12 11:37:24 +1100 |
commit | 5db2414d052af629e2848f53ce9c2e0e686eefaf (patch) | |
tree | 99e332d6481ecd777dfc3b1223dce4dc8dd01c68 /src/components/DarkMode.vue | |
parent | c72acd57d0a61632b6c03e2d9c7321e25dc611fa (diff) | |
download | homer-5db2414d052af629e2848f53ce9c2e0e686eefaf.tar.gz homer-5db2414d052af629e2848f53ce9c2e0e686eefaf.tar.zst homer-5db2414d052af629e2848f53ce9c2e0e686eefaf.zip |
Fix #121 - Change default theme and layout from config
Diffstat (limited to 'src/components/DarkMode.vue')
-rw-r--r-- | src/components/DarkMode.vue | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/components/DarkMode.vue b/src/components/DarkMode.vue index 80491fa..677238a 100644 --- a/src/components/DarkMode.vue +++ b/src/components/DarkMode.vue | |||
@@ -15,6 +15,9 @@ | |||
15 | <script> | 15 | <script> |
16 | export default { | 16 | export default { |
17 | name: "Darkmode", | 17 | name: "Darkmode", |
18 | props: { | ||
19 | defaultValue: String, | ||
20 | }, | ||
18 | data: function () { | 21 | data: function () { |
19 | return { | 22 | return { |
20 | isDark: null, | 23 | isDark: null, |
@@ -30,6 +33,17 @@ export default { | |||
30 | if ("overrideDark" in localStorage) { | 33 | if ("overrideDark" in localStorage) { |
31 | // Light theme is 1 and Dark theme is 2 | 34 | // Light theme is 1 and Dark theme is 2 |
32 | this.mode = JSON.parse(localStorage.overrideDark) ? 2 : 1; | 35 | this.mode = JSON.parse(localStorage.overrideDark) ? 2 : 1; |
36 | } else { | ||
37 | switch (this.defaultValue) { | ||
38 | case "light": | ||
39 | this.mode = 1; | ||
40 | break; | ||
41 | case "dark": | ||
42 | this.mode = 2; | ||
43 | break; | ||
44 | default: | ||
45 | this.mode = 0; | ||
46 | } | ||
33 | } | 47 | } |
34 | this.isDark = this.getIsDark(); | 48 | this.isDark = this.getIsDark(); |
35 | this.$emit("updated", this.isDark); | 49 | this.$emit("updated", this.isDark); |