VueTube/NUXT/pages/mods/theme.vue

225 lines
7.4 KiB
Vue
Raw Normal View History

2022-03-14 17:13:24 +00:00
<template>
2022-03-31 21:26:53 +00:00
<client-only>
<div class="d-flex flex-column justify-end" style="min-height: 100%">
<!-- ----------------------------------------------Background Colors------------------------ -->
<v-radio-group v-model="$vuetify.theme.currentTheme.background">
2022-03-30 02:37:54 +00:00
<div
2022-03-31 21:26:53 +00:00
class="d-flex flex-row px-6 no-wrap"
style="max-width: 100%; overflow-x: auto"
2022-03-30 02:37:54 +00:00
>
2022-03-31 21:26:53 +00:00
<div
v-for="background in $vuetify.theme.dark
? backgroundsDark
: backgroundsLight"
:key="background.color"
class="text-center"
>
<v-radio
color="primary"
active-class="px-6 border-primary"
style="transition-duration: 0.3s"
:style="{
background: background.color,
border: '2px solid ' + background.color,
}"
class="py-4 px-4 ma-2 rounded-lg"
:value="background.color"
/>
{{ background.name }}
</div>
<div class="text-center">
<v-radio
color="primary"
active-class="px-6 border-primary primary"
style="transition-duration: 0.3s"
:style="{
background: $vuetify.theme.dark
? 'var(--v-primary-darken4) !important'
: 'var(--v-primary-lighten4) !important',
border: $vuetify.theme.dark
? '2px solid var(--v-primary-darken4)'
: '2px solid var(--v-primary-lighten4)',
}"
class="py-4 px-4 ma-2 rounded-lg"
2022-03-31 22:34:09 +00:00
:value="
$vuetify.theme.dark ? experimentalDark : experimentalLight
"
2022-03-31 21:26:53 +00:00
/>
Adaptive
</div>
2022-03-28 19:59:08 +00:00
</div>
2022-03-31 21:26:53 +00:00
</v-radio-group>
<!-- ----------------------------------------------Primary Colors------------------------ -->
<v-radio-group v-model="$vuetify.theme.currentTheme.primary" class="mx-2">
<div
class="d-flex flex-row px-6 py-2 no-wrap align-center"
style="max-width: 100%; overflow-x: auto; margin-top: -1.5rem"
>
2022-03-28 19:59:08 +00:00
<v-radio
2022-03-31 21:26:53 +00:00
v-for="color in $vuetify.theme.dark ? primaryDark : primaryLight"
:key="color"
color="background"
on-icon="mdi-check"
:light="$vuetify.theme.dark"
:dark="!$vuetify.theme.dark"
active-class="border-primary"
2022-03-30 02:37:54 +00:00
style="transition-duration: 0.3s"
:style="{
2022-03-31 21:26:53 +00:00
background: color,
border: '2px solid ' + color,
2022-03-30 02:37:54 +00:00
}"
2022-03-31 21:26:53 +00:00
class="mr-2 my-auto rounded-xl"
:value="color"
2022-03-28 19:59:08 +00:00
/>
2022-03-31 21:26:53 +00:00
<v-dialog
v-model="dialog"
width="300"
content-class="background rounded-lg"
>
<template #activator="{ on, attrs }">
<v-btn
icon
class="background"
style="height: 1.75rem; width: 1.75rem"
:class="$vuetify.theme.dark ? 'lighten-2' : 'darken-2'"
v-bind="attrs"
v-on="on"
>
<v-icon>mdi-plus</v-icon>
</v-btn>
</template>
<v-color-picker
v-model="$vuetify.theme.currentTheme.primary"
style="min-width: 100%"
class="background"
hide-mode-switch
dot-size="50"
mode="hexa"
flat
/>
</v-dialog>
</div>
</v-radio-group>
<!-- ----------------------------------------------Mode Switch------------------------ -->
<v-card
flat
class="d-flex flex-row justify-between mx-8 mb-4 px-4 background rounded-lg"
:class="$vuetify.theme.dark ? 'lighten-1' : 'darken-1'"
2022-03-31 23:33:39 +00:00
@click="
($vuetify.theme.dark = !$vuetify.theme.dark),
$vuetube.haptics.hapticsImpactLight(1)
"
2022-03-31 21:26:53 +00:00
>
<div class="my-auto">
<div>Dark Mode</div>
2022-03-30 02:37:54 +00:00
<div
class="background--text"
:class="$vuetify.theme.dark ? 'text--lighten-4' : 'text--darken-4'"
2022-03-31 21:26:53 +00:00
style="font-size: 0.75rem; margin-top: -0.25rem !important"
2022-03-30 02:37:54 +00:00
>
2022-03-31 21:26:53 +00:00
Bravo Six, Going Dark.
2022-03-30 02:37:54 +00:00
</div>
2022-03-28 19:59:08 +00:00
</div>
2022-03-31 21:26:53 +00:00
<v-spacer />
2022-03-31 22:34:09 +00:00
<v-switch
v-model="$vuetify.theme.dark"
style="pointer-events: none"
persistent-hint
inset
/>
2022-03-31 21:26:53 +00:00
</v-card>
</div>
</client-only>
2022-03-14 17:13:24 +00:00
</template>
<script>
export default {
2022-03-15 22:33:16 +00:00
data() {
return {
2022-03-31 21:26:53 +00:00
primaryLight: ["#E57373", "#8b5f37", "#016a49", "#34495E"],
2022-03-31 22:34:09 +00:00
primaryDark: [
"#B71C1C",
"#FFBBFF",
"#AAAFFF",
"#AAFFFF",
"#7CD6AF",
"#FEC89B",
],
backgroundsDark: [
{ name: "Dark", color: "#181818" },
{ name: "Black", color: "#000000" },
],
2022-03-31 04:22:24 +00:00
backgroundsLight: [{ name: "Normal", color: "#ffffff" }],
experimentalLight: "",
experimentalDark: "",
dialog: false,
2022-03-21 23:47:11 +00:00
};
2022-03-15 22:33:16 +00:00
},
2022-03-31 04:22:24 +00:00
watch: {
2022-03-31 21:26:53 +00:00
// also triggers background and primary watcher, unless primary colors match
"$vuetify.theme.dark"(value) {
localStorage.setItem("darkTheme", value);
2022-03-31 04:22:24 +00:00
},
"$vuetify.theme.currentTheme.background"(value) {
this.$vuetify.theme.dark
? localStorage.setItem("backgroundDark", value)
: localStorage.setItem("backgroundLight", value);
this.$vuetube.statusBar.setTheme(value, this.$vuetify.theme.dark);
this.$vuetube.navigationBar.setTheme(value, !this.$vuetify.theme.dark);
},
2022-03-31 21:26:53 +00:00
"$vuetify.theme.currentTheme.primary"(value) {
if (value != undefined) {
this.$vuetify.theme.dark
? localStorage.setItem("primaryDark", value)
: localStorage.setItem("primaryLight", value);
let tempD = this.experimentalDark;
let tempL = this.experimentalLight;
this.adapt();
if (this.$vuetify.theme.currentTheme.background === tempD)
this.$vuetify.theme.currentTheme.background = this.experimentalDark;
if (this.$vuetify.theme.currentTheme.background === tempL)
this.$vuetify.theme.currentTheme.background = this.experimentalLight;
}
2022-03-31 04:22:24 +00:00
},
},
2022-03-31 21:26:53 +00:00
beforeMount() {
this.adapt();
},
2022-03-31 04:22:24 +00:00
methods: {
adapt() {
2022-03-31 22:34:09 +00:00
let hexD = getComputedStyle(document.documentElement).getPropertyValue(
"--v-primary-darken4"
);
let hexL = getComputedStyle(document.documentElement).getPropertyValue(
"--v-primary-lighten4"
);
2022-03-30 02:37:54 +00:00
// the menace above returns a hex string with A SPACE " " in front of it, that's why substring(1)
2022-03-31 04:22:24 +00:00
// the SPACE " " is stored as part of the CSS variable itself to be used for chaining
2022-03-31 21:26:53 +00:00
this.experimentalDark = hexD.substring(1).toUpperCase();
this.experimentalLight = hexL.substring(1).toUpperCase();
setTimeout(() => {
2022-03-31 22:34:09 +00:00
if (
this.$vuetify.theme.currentTheme.background ==
hexD.substring(1).toUpperCase()
)
2022-03-31 21:26:53 +00:00
this.$vuetify.theme.currentTheme.background = this.experimentalDark;
2022-03-31 22:34:09 +00:00
if (
this.$vuetify.theme.currentTheme.background ==
hexL.substring(1).toUpperCase()
)
2022-03-31 21:26:53 +00:00
this.$vuetify.theme.currentTheme.background = this.experimentalLight;
}, 0);
2022-03-31 04:22:24 +00:00
},
2022-03-21 23:47:11 +00:00
},
};
2022-03-14 17:13:24 +00:00
</script>
2022-03-27 21:14:38 +00:00
<style>
2022-03-31 04:22:24 +00:00
.border-primary {
border: 2px solid var(--v-primary-base) !important;
2022-03-28 19:59:08 +00:00
}
2022-03-30 02:37:54 +00:00
.v-input--selection-controls__input {
margin-right: 0 !important;
}
2022-03-14 17:13:24 +00:00
</style>