2022-03-21 05:13:21 +00:00
|
|
|
<template>
|
2022-07-06 04:07:12 +00:00
|
|
|
<div class="container-max-height d-flex flex-column justify-end">
|
2022-07-28 03:14:57 +00:00
|
|
|
<!-- // TODO: outer radius -->
|
|
|
|
<!-- // TODO: Dense Navbar -->
|
|
|
|
<!-- // TODO: Disable Top Bar -->
|
|
|
|
<!-- // TODO: Top and Bottom bar color selection -->
|
2022-07-29 06:52:25 +00:00
|
|
|
<!-- <v-card
|
2022-03-31 06:01:29 +00:00
|
|
|
flat
|
2022-07-29 04:44:26 +00:00
|
|
|
class="mx-4 my-2 px-4 py-2 d-flex flex-row background"
|
2022-03-31 23:33:39 +00:00
|
|
|
style="transition-duration: 0.3s; transition-property: border-radius"
|
2022-05-13 06:20:15 +00:00
|
|
|
:class="
|
|
|
|
roundTweak > 0 ? ($vuetify.theme.dark ? 'lighten-1' : 'darken-1') : ''
|
|
|
|
"
|
2022-03-31 06:01:29 +00:00
|
|
|
:style="{
|
|
|
|
borderRadius: `${roundTweak / 2}rem`,
|
|
|
|
}"
|
|
|
|
>
|
2022-05-13 22:25:47 +00:00
|
|
|
<h3
|
2022-05-18 03:53:03 +00:00
|
|
|
class="my-auto background--text"
|
2022-05-13 22:25:47 +00:00
|
|
|
:class="$vuetify.theme.dark ? 'text--lighten-3' : 'text--darken-3'"
|
|
|
|
>
|
2022-06-15 19:29:52 +00:00
|
|
|
{{ lang.fullscreen }}
|
2022-05-13 22:25:47 +00:00
|
|
|
</h3>
|
|
|
|
<v-spacer />
|
2022-05-18 03:53:03 +00:00
|
|
|
<v-switch
|
|
|
|
disabled
|
|
|
|
class="mt-2"
|
|
|
|
style="pointer-events: none"
|
|
|
|
persistent-hint
|
|
|
|
inset
|
|
|
|
/>
|
2022-07-29 06:52:25 +00:00
|
|
|
</v-card> -->
|
2022-05-13 22:25:47 +00:00
|
|
|
|
2022-07-29 06:52:25 +00:00
|
|
|
<!-- <v-divider v-if="!roundTweak" /> -->
|
2022-05-13 22:25:47 +00:00
|
|
|
|
2022-07-29 06:52:25 +00:00
|
|
|
<!-- <v-card
|
2022-05-13 22:25:47 +00:00
|
|
|
flat
|
2022-07-29 04:44:26 +00:00
|
|
|
class="mx-4 my-2 px-4 py-2 d-flex flex-row background"
|
2022-05-13 22:25:47 +00:00
|
|
|
style="transition-duration: 0.3s; transition-property: border-radius"
|
|
|
|
:class="
|
|
|
|
roundTweak > 0 ? ($vuetify.theme.dark ? 'lighten-1' : 'darken-1') : ''
|
|
|
|
"
|
|
|
|
:style="{
|
|
|
|
borderRadius: `${roundTweak / 2}rem`,
|
|
|
|
}"
|
|
|
|
>
|
|
|
|
<h3
|
2022-05-18 03:53:03 +00:00
|
|
|
class="my-auto background--text"
|
2022-05-13 22:25:47 +00:00
|
|
|
:class="$vuetify.theme.dark ? 'text--lighten-3' : 'text--darken-3'"
|
|
|
|
>
|
2022-06-15 19:29:52 +00:00
|
|
|
{{ lang.navbarblur }}
|
2022-05-13 22:25:47 +00:00
|
|
|
</h3>
|
|
|
|
<v-spacer />
|
2022-05-18 03:53:03 +00:00
|
|
|
<v-switch
|
|
|
|
disabled
|
|
|
|
class="mt-2"
|
|
|
|
style="pointer-events: none"
|
|
|
|
persistent-hint
|
|
|
|
inset
|
|
|
|
/>
|
2022-07-29 06:52:25 +00:00
|
|
|
</v-card> -->
|
2022-05-13 22:25:47 +00:00
|
|
|
|
|
|
|
<v-divider v-if="!roundTweak" />
|
|
|
|
|
2022-06-15 19:29:52 +00:00
|
|
|
<h3 class="ml-8 mt-8">{{ lang.roundedcorners }}</h3>
|
2022-05-18 03:53:03 +00:00
|
|
|
|
2022-05-13 22:25:47 +00:00
|
|
|
<v-card
|
|
|
|
flat
|
2022-07-29 06:52:25 +00:00
|
|
|
class="mx-4 mt-2 mb-6 background"
|
2022-05-18 03:53:03 +00:00
|
|
|
style="
|
|
|
|
transition-duration: 0.3s;
|
|
|
|
transition-property: border-radius;
|
|
|
|
overflow: hidden;
|
2022-05-13 22:25:47 +00:00
|
|
|
"
|
|
|
|
:style="{
|
|
|
|
borderRadius: `${roundTweak / 2}rem`,
|
|
|
|
}"
|
|
|
|
>
|
2022-05-18 03:53:03 +00:00
|
|
|
<!-- margin: $store.state.tweaks.roundTweak > 0 ? '0 1rem' : '0', -->
|
2022-05-13 22:25:47 +00:00
|
|
|
<v-card
|
|
|
|
flat
|
2022-07-29 04:44:26 +00:00
|
|
|
class="mb-1 px-4 py-2 d-flex flex-row background"
|
2022-05-18 03:53:03 +00:00
|
|
|
:class="
|
|
|
|
roundTweak > 0 ? ($vuetify.theme.dark ? 'lighten-1' : 'darken-1') : ''
|
|
|
|
"
|
|
|
|
:style="{
|
2022-05-18 04:22:14 +00:00
|
|
|
borderRadius: `${roundTweak / 12}rem`,
|
2022-05-18 03:53:03 +00:00
|
|
|
}"
|
2022-05-13 22:25:47 +00:00
|
|
|
@click="
|
|
|
|
(roundThumb = !roundThumb), $vuetube.haptics.hapticsImpactLight(1)
|
|
|
|
"
|
|
|
|
>
|
2022-12-27 01:16:06 +00:00
|
|
|
<div class="my-auto" :class="roundThumb ? 'primary--text' : ''">
|
2022-06-15 19:29:52 +00:00
|
|
|
{{ lang.roundthumbnails }}
|
2022-05-18 03:53:03 +00:00
|
|
|
</div>
|
2022-05-13 22:25:47 +00:00
|
|
|
<v-spacer />
|
|
|
|
<v-switch
|
|
|
|
v-model="roundThumb"
|
|
|
|
style="pointer-events: none"
|
|
|
|
persistent-hint
|
2022-05-18 03:53:03 +00:00
|
|
|
class="mt-2"
|
2022-05-13 22:25:47 +00:00
|
|
|
inset
|
|
|
|
/>
|
|
|
|
</v-card>
|
|
|
|
<v-card
|
|
|
|
flat
|
2022-07-29 04:44:26 +00:00
|
|
|
class="mb-1 px-4 py-2 d-flex flex-row background"
|
2022-05-18 03:53:03 +00:00
|
|
|
:class="
|
|
|
|
roundTweak > 0 ? ($vuetify.theme.dark ? 'lighten-1' : 'darken-1') : ''
|
|
|
|
"
|
|
|
|
:style="{
|
2022-05-18 04:22:14 +00:00
|
|
|
borderRadius: `${roundTweak / 12}rem`,
|
2022-05-18 03:53:03 +00:00
|
|
|
}"
|
2022-05-13 22:25:47 +00:00
|
|
|
@click="
|
|
|
|
(roundWatch = !roundWatch), $vuetube.haptics.hapticsImpactLight(1)
|
|
|
|
"
|
|
|
|
>
|
2022-12-27 01:16:06 +00:00
|
|
|
<div class="my-auto" :class="roundThumb ? 'primary--text' : ''">
|
2022-06-15 19:29:52 +00:00
|
|
|
{{ lang.roundwatchpagecomponents }}
|
2022-05-18 03:53:03 +00:00
|
|
|
</div>
|
2022-05-13 22:25:47 +00:00
|
|
|
<v-spacer />
|
|
|
|
<v-switch
|
|
|
|
v-model="roundWatch"
|
|
|
|
style="pointer-events: none"
|
|
|
|
persistent-hint
|
2022-05-18 03:53:03 +00:00
|
|
|
class="mt-2"
|
2022-05-13 22:25:47 +00:00
|
|
|
inset
|
|
|
|
/>
|
|
|
|
</v-card>
|
2022-03-21 05:13:21 +00:00
|
|
|
<v-slider
|
2022-03-21 23:47:11 +00:00
|
|
|
v-model="roundTweak"
|
2022-07-28 21:27:14 +00:00
|
|
|
class="pr-8 pl-4 pt-3 pb-0 background"
|
2022-03-21 05:13:21 +00:00
|
|
|
:max="4"
|
2022-05-13 22:25:47 +00:00
|
|
|
step=".25"
|
2022-03-21 05:13:21 +00:00
|
|
|
thumb-size="64"
|
2022-05-18 03:53:03 +00:00
|
|
|
:class="
|
|
|
|
roundTweak > 0 ? ($vuetify.theme.dark ? 'lighten-1' : 'darken-1') : ''
|
|
|
|
"
|
|
|
|
:style="{
|
2022-05-18 04:22:14 +00:00
|
|
|
borderRadius: `${roundTweak / 12}rem`,
|
2022-05-18 03:53:03 +00:00
|
|
|
}"
|
2022-03-31 23:58:37 +00:00
|
|
|
@input="$vuetube.haptics.hapticsImpactLight(0)"
|
2022-03-21 05:13:21 +00:00
|
|
|
>
|
2022-12-27 04:32:48 +00:00
|
|
|
<template #label>
|
|
|
|
<div :class="roundTweak > 0 ? 'primary--text' : ''">
|
|
|
|
{{ lang.radius }}
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-03-21 23:47:11 +00:00
|
|
|
<template #thumb-label="{ value }">
|
2022-03-21 05:13:21 +00:00
|
|
|
<div
|
2022-07-28 03:14:57 +00:00
|
|
|
class="pa-4 background"
|
2022-07-29 04:44:26 +00:00
|
|
|
:style="{ borderRadius: value * 3.5 + 'px !important' }"
|
2022-03-21 05:13:21 +00:00
|
|
|
></div>
|
|
|
|
</template>
|
|
|
|
</v-slider>
|
|
|
|
</v-card>
|
2022-12-26 21:20:19 +00:00
|
|
|
|
|
|
|
<v-divider v-if="!$store.state.tweaks.roundTweak" />
|
|
|
|
|
|
|
|
<!-- TODO: translate below -->
|
|
|
|
|
2022-12-28 12:55:31 +00:00
|
|
|
<h3 class="ml-8 mt-8">{{ lang.launchscreen }}</h3>
|
2022-12-26 21:20:19 +00:00
|
|
|
|
|
|
|
<v-card
|
|
|
|
flat
|
|
|
|
class="mx-4 mt-2 mb-6 background d-flex flex-row"
|
|
|
|
style="overflow: hidden"
|
|
|
|
:style="{
|
|
|
|
borderRadius: `${$store.state.tweaks.roundTweak / 2}rem`,
|
|
|
|
}"
|
|
|
|
>
|
|
|
|
<v-card
|
|
|
|
flat
|
2022-12-27 01:16:06 +00:00
|
|
|
class="mr-1 pa-4 d-flex flex-column align-center justify-space-between"
|
2022-12-26 21:20:19 +00:00
|
|
|
style="width: calc(100% / 3) !important"
|
|
|
|
:class="
|
|
|
|
$store.state.tweaks.roundTweak > 0
|
|
|
|
? $vuetify.theme.dark
|
2022-12-27 01:16:06 +00:00
|
|
|
? launchTheme === 0
|
2022-12-26 21:20:19 +00:00
|
|
|
? 'primary darken-4'
|
|
|
|
: 'background lighten-1'
|
2022-12-27 01:16:06 +00:00
|
|
|
: launchTheme === 0
|
2022-12-26 21:20:19 +00:00
|
|
|
? 'primary lighten-4'
|
|
|
|
: 'background darken-1'
|
|
|
|
: 'background'
|
|
|
|
"
|
|
|
|
:style="{
|
|
|
|
borderRadius: `${$store.state.tweaks.roundTweak / 12}rem`,
|
|
|
|
}"
|
2022-12-27 01:16:06 +00:00
|
|
|
@click="launchTheme = 0"
|
2022-12-26 21:20:19 +00:00
|
|
|
>
|
2022-12-27 01:16:06 +00:00
|
|
|
<v-icon
|
|
|
|
style="transition: transform 0.25s; width: 3rem; height: 3rem"
|
2022-12-26 21:20:19 +00:00
|
|
|
:style="{
|
2022-12-27 01:16:06 +00:00
|
|
|
transform: launchTheme === 0 ? 'scale(1.5)' : '',
|
|
|
|
color: launchTheme === 0 ? $vuetify.theme.currentTheme.primary : '',
|
2022-12-26 21:20:19 +00:00
|
|
|
}"
|
|
|
|
>
|
2022-12-27 01:16:06 +00:00
|
|
|
mdi-align-horizontal-center
|
|
|
|
</v-icon>
|
2022-12-26 21:20:19 +00:00
|
|
|
<span class="mt-3 text-center" style="font-size: 0.8rem">
|
2022-12-28 12:55:31 +00:00
|
|
|
{{ lang.centeredlayout }}
|
2022-12-26 21:20:19 +00:00
|
|
|
</span>
|
|
|
|
</v-card>
|
|
|
|
<v-card
|
|
|
|
flat
|
|
|
|
class="mr-1 pa-4 d-flex flex-column align-center justify-space-between"
|
|
|
|
style="width: calc(100% / 3) !important"
|
|
|
|
:class="
|
|
|
|
$store.state.tweaks.roundTweak > 0
|
|
|
|
? $vuetify.theme.dark
|
2022-12-27 01:16:06 +00:00
|
|
|
? launchTheme === 1
|
2022-12-26 21:20:19 +00:00
|
|
|
? 'primary darken-4'
|
|
|
|
: 'background lighten-1'
|
2022-12-27 01:16:06 +00:00
|
|
|
: launchTheme === 1
|
2022-12-26 21:20:19 +00:00
|
|
|
? 'primary lighten-4'
|
|
|
|
: 'background darken-1'
|
|
|
|
: 'background'
|
|
|
|
"
|
|
|
|
:style="{
|
2022-12-27 01:16:06 +00:00
|
|
|
borderRadius: `${$store.state.tweaks.roundTweak / 12}rem ${
|
|
|
|
$store.state.tweaks.roundTweak / 2
|
|
|
|
}rem ${$store.state.tweaks.roundTweak / 2}rem ${
|
|
|
|
$store.state.tweaks.roundTweak / 12
|
|
|
|
}rem `,
|
2022-12-26 21:20:19 +00:00
|
|
|
}"
|
2022-12-27 01:16:06 +00:00
|
|
|
@click="launchTheme = 1"
|
2022-12-26 21:20:19 +00:00
|
|
|
>
|
|
|
|
<v-icon
|
|
|
|
style="transition: transform 0.25s; width: 3rem; height: 3rem"
|
|
|
|
:style="{
|
2022-12-27 01:16:06 +00:00
|
|
|
transform: launchTheme === 1 ? 'scale(1.5)' : '',
|
|
|
|
color: launchTheme === 1 ? $vuetify.theme.currentTheme.primary : '',
|
2022-12-26 21:20:19 +00:00
|
|
|
}"
|
|
|
|
>
|
2022-12-27 01:16:06 +00:00
|
|
|
mdi-align-vertical-distribute
|
2022-12-26 21:20:19 +00:00
|
|
|
</v-icon>
|
|
|
|
<span class="mt-3 text-center" style="font-size: 0.8rem">
|
2022-12-28 12:55:31 +00:00
|
|
|
{{ lang.fullscreenlayout }}
|
2022-12-26 21:20:19 +00:00
|
|
|
</span>
|
|
|
|
</v-card>
|
|
|
|
<v-card
|
|
|
|
flat
|
2022-12-27 01:16:06 +00:00
|
|
|
class="ml-4 pa-4 pt-6 d-flex flex-column align-center justify-space-between"
|
2022-12-26 21:20:19 +00:00
|
|
|
style="width: calc(100% / 3) !important"
|
|
|
|
:class="
|
|
|
|
$store.state.tweaks.roundTweak > 0
|
|
|
|
? $vuetify.theme.dark
|
2022-12-27 01:16:06 +00:00
|
|
|
? launchIconTheme
|
2022-12-26 21:20:19 +00:00
|
|
|
? 'primary darken-4'
|
|
|
|
: 'background lighten-1'
|
2022-12-27 01:16:06 +00:00
|
|
|
: launchIconTheme
|
2022-12-26 21:20:19 +00:00
|
|
|
? 'primary lighten-4'
|
|
|
|
: 'background darken-1'
|
|
|
|
: 'background'
|
|
|
|
"
|
|
|
|
:style="{
|
2022-12-27 01:16:06 +00:00
|
|
|
borderRadius: `${$store.state.tweaks.roundTweak / 2}rem`,
|
2022-12-26 21:20:19 +00:00
|
|
|
}"
|
2022-12-27 01:16:06 +00:00
|
|
|
@click="launchIconTheme = !launchIconTheme"
|
2022-12-26 21:20:19 +00:00
|
|
|
>
|
2022-12-27 01:16:06 +00:00
|
|
|
<svg
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
width="1.5rem"
|
|
|
|
height="1.5rem"
|
|
|
|
xml:space="preserve"
|
|
|
|
viewBox="0 0 512 512"
|
|
|
|
class="iconsvgstuff"
|
|
|
|
style="transition: scale 0.25s; border-radius: 0 !important"
|
2022-12-26 21:20:19 +00:00
|
|
|
:style="{
|
2022-12-27 01:16:06 +00:00
|
|
|
scale: launchIconTheme ? 1.25 : 1,
|
|
|
|
color: launchIconTheme ? $vuetify.theme.currentTheme.primary : '',
|
2022-12-26 21:20:19 +00:00
|
|
|
}"
|
|
|
|
>
|
2022-12-27 01:16:06 +00:00
|
|
|
<g>
|
|
|
|
<path
|
|
|
|
d="M157.768,142.391C168.454,136.236 168.454,120.814 157.766,114.66L157.761,114.658L121.527,93.811L161.399,75.218L175.714,83.453L175.736,83.466L216.392,106.857C233.102,116.471 233.102,140.582 216.392,150.196L175.743,173.582L175.714,173.599L158.778,183.343L118.905,164.75L157.761,142.395L157.768,142.391ZM36,163.605L36,184.79C36.005,197.092 49.314,204.788 59.979,198.652L82.89,185.471L122.763,204.063L77.932,229.856L77.903,229.873L37.467,253.137C20.801,262.726 0,250.695 0,231.467L0,146.818L36,163.605ZM125.384,54.497L85.512,73.09L59.979,58.4L59.964,58.392C49.3,52.27 36,59.968 36,72.269L36,96.178L0,112.965L0,25.585C0,6.357 20.801,-5.673 37.467,3.916L77.917,27.187L77.932,27.196L125.384,54.497Z"
|
|
|
|
transform="matrix(1.99234,0,0,1.99234,52.4337,-0.543689)"
|
|
|
|
style="fill: currentColor"
|
|
|
|
/>
|
|
|
|
</g>
|
|
|
|
</svg>
|
2022-12-26 21:20:19 +00:00
|
|
|
<span class="mt-3 text-center" style="font-size: 0.8rem">
|
2022-12-28 12:55:31 +00:00
|
|
|
{{ lang.themedicon }}
|
2022-12-26 21:20:19 +00:00
|
|
|
</span>
|
|
|
|
</v-card>
|
|
|
|
</v-card>
|
2022-12-27 01:16:06 +00:00
|
|
|
|
|
|
|
<v-divider v-if="!$store.state.tweaks.roundTweak" />
|
|
|
|
|
|
|
|
<!-- TODO: translate below -->
|
|
|
|
|
2022-12-28 12:55:31 +00:00
|
|
|
<h3 class="ml-8 mt-8">{{ lang.bottomnavigation }}</h3>
|
2022-12-27 01:16:06 +00:00
|
|
|
<v-card
|
|
|
|
flat
|
|
|
|
class="mx-4 mt-2 mb-6 background d-flex flex-column"
|
|
|
|
style="overflow: hidden"
|
|
|
|
:style="{
|
|
|
|
borderRadius: `${$store.state.tweaks.roundTweak / 2}rem`,
|
|
|
|
}"
|
|
|
|
>
|
|
|
|
<v-card
|
|
|
|
flat
|
|
|
|
class="mb-1 px-4 py-2 d-flex flex-row background"
|
|
|
|
:class="
|
|
|
|
roundTweak > 0 ? ($vuetify.theme.dark ? 'lighten-1' : 'darken-1') : ''
|
|
|
|
"
|
|
|
|
:style="{
|
|
|
|
borderRadius: `${roundTweak / 12}rem`,
|
|
|
|
}"
|
|
|
|
@click="
|
2022-12-27 04:32:48 +00:00
|
|
|
navigationIcons < 1 ? (navigationShift = !navigationShift) : '',
|
2022-12-27 01:16:06 +00:00
|
|
|
$vuetube.haptics.hapticsImpactLight(1)
|
|
|
|
"
|
|
|
|
>
|
2022-12-27 01:21:54 +00:00
|
|
|
<div class="my-auto" :class="navigationShift ? 'primary--text' : ''">
|
2022-12-28 12:55:31 +00:00
|
|
|
{{ lang.shift }}
|
2022-12-27 01:16:06 +00:00
|
|
|
</div>
|
|
|
|
<v-spacer />
|
|
|
|
<v-switch
|
|
|
|
v-model="navigationShift"
|
|
|
|
style="pointer-events: none"
|
|
|
|
persistent-hint
|
|
|
|
class="mt-2"
|
|
|
|
inset
|
|
|
|
/>
|
|
|
|
</v-card>
|
|
|
|
<v-card
|
|
|
|
flat
|
|
|
|
class="mb-1 px-4 py-2 d-flex flex-row background"
|
|
|
|
:class="
|
|
|
|
roundTweak > 0 ? ($vuetify.theme.dark ? 'lighten-1' : 'darken-1') : ''
|
|
|
|
"
|
|
|
|
:style="{
|
|
|
|
borderRadius: `${roundTweak / 12}rem`,
|
|
|
|
}"
|
|
|
|
@click="
|
|
|
|
(navigationText = !navigationText),
|
|
|
|
$vuetube.haptics.hapticsImpactLight(1)
|
|
|
|
"
|
|
|
|
>
|
|
|
|
<div class="my-auto" :class="navigationText ? 'primary--text' : ''">
|
2022-12-28 12:55:31 +00:00
|
|
|
{{ lang.showlabels }}
|
2022-12-27 01:16:06 +00:00
|
|
|
</div>
|
|
|
|
<v-spacer />
|
|
|
|
<v-switch
|
|
|
|
v-model="navigationText"
|
|
|
|
style="pointer-events: none"
|
|
|
|
persistent-hint
|
|
|
|
class="mt-2"
|
|
|
|
inset
|
|
|
|
/>
|
|
|
|
</v-card>
|
2022-12-27 04:32:48 +00:00
|
|
|
<div class="mb-1 d-flex flex-row">
|
2022-12-27 01:16:06 +00:00
|
|
|
<v-card
|
|
|
|
flat
|
|
|
|
class="mr-1 pa-4 d-flex flex-row align-center background"
|
|
|
|
:class="
|
|
|
|
roundTweak > 0
|
|
|
|
? $vuetify.theme.dark
|
2022-12-27 04:32:48 +00:00
|
|
|
? 'lighten-1'
|
|
|
|
: 'darken-1'
|
2022-12-27 01:16:06 +00:00
|
|
|
: ''
|
|
|
|
"
|
|
|
|
style="width: 100%"
|
|
|
|
:style="{
|
|
|
|
color: navigationIcons === 0 ? 'var(--v-primary-base)' : '',
|
|
|
|
borderRadius: `${roundTweak / 12}rem`,
|
|
|
|
}"
|
2022-12-27 04:32:48 +00:00
|
|
|
@click="(navigationIcons = 0), $vuetube.haptics.hapticsImpactLight(1)"
|
2022-12-27 01:16:06 +00:00
|
|
|
>
|
2022-12-28 12:55:31 +00:00
|
|
|
<div>{{ lang.mdi }}</div>
|
2022-12-27 04:32:48 +00:00
|
|
|
<v-spacer></v-spacer>
|
|
|
|
<v-icon
|
|
|
|
:class="navigationIcons === 0 ? 'primary--text' : ''"
|
|
|
|
class="ma-1"
|
|
|
|
>
|
|
|
|
mdi-home
|
|
|
|
</v-icon>
|
|
|
|
<v-icon
|
|
|
|
:class="navigationIcons === 0 ? 'primary--text' : ''"
|
|
|
|
class="ma-1"
|
|
|
|
>
|
|
|
|
mdi-youtube-subscription
|
|
|
|
</v-icon>
|
|
|
|
<v-icon
|
|
|
|
:class="navigationIcons === 0 ? 'primary--text' : ''"
|
|
|
|
class="ma-1"
|
|
|
|
>
|
|
|
|
mdi-view-list
|
|
|
|
</v-icon>
|
2022-12-27 01:16:06 +00:00
|
|
|
</v-card>
|
|
|
|
<v-card
|
|
|
|
flat
|
|
|
|
class="pa-4 d-flex flex-row align-center background"
|
|
|
|
:class="
|
|
|
|
roundTweak > 0
|
|
|
|
? $vuetify.theme.dark
|
2022-12-27 04:32:48 +00:00
|
|
|
? 'lighten-1'
|
|
|
|
: 'darken-1'
|
2022-12-27 01:16:06 +00:00
|
|
|
: ''
|
|
|
|
"
|
|
|
|
style="width: 100%"
|
|
|
|
:style="{
|
|
|
|
color: navigationIcons === 1 ? 'var(--v-primary-base)' : '',
|
|
|
|
borderRadius: `${roundTweak / 12}rem`,
|
|
|
|
}"
|
2022-12-27 04:32:48 +00:00
|
|
|
@click="
|
|
|
|
(navigationIcons = 1),
|
|
|
|
(navigationShift = false),
|
|
|
|
$vuetube.haptics.hapticsImpactLight(1)
|
|
|
|
"
|
2022-12-27 01:16:06 +00:00
|
|
|
>
|
2022-12-28 12:55:31 +00:00
|
|
|
<div>{{ lang.materialsymbols }}</div>
|
2022-12-27 04:32:48 +00:00
|
|
|
<v-spacer></v-spacer>
|
|
|
|
<svg
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
fill="currentColor"
|
|
|
|
viewBox="0 0 48 48"
|
|
|
|
height="2rem"
|
|
|
|
width="2rem"
|
|
|
|
class="ma-1"
|
|
|
|
>
|
|
|
|
<use href="/home.svg#main" />
|
|
|
|
</svg>
|
|
|
|
<svg
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
fill="currentColor"
|
|
|
|
viewBox="0 0 48 48"
|
|
|
|
height="2rem"
|
|
|
|
width="2rem"
|
|
|
|
class="ma-1"
|
|
|
|
>
|
|
|
|
<use href="/subs.svg#main" />
|
|
|
|
</svg>
|
|
|
|
<svg
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
fill="currentColor"
|
|
|
|
viewBox="0 0 48 48"
|
|
|
|
height="2rem"
|
|
|
|
width="2rem"
|
|
|
|
class="ma-1"
|
|
|
|
>
|
|
|
|
<use href="/list.svg#main" />
|
|
|
|
</svg>
|
|
|
|
</v-card>
|
|
|
|
</div>
|
|
|
|
<div class="d-flex flex-row">
|
|
|
|
<v-card
|
|
|
|
flat
|
|
|
|
class="mr-1 pa-4 d-flex flex-row align-center background"
|
|
|
|
:class="
|
|
|
|
roundTweak > 0
|
|
|
|
? $vuetify.theme.dark
|
|
|
|
? 'lighten-1'
|
|
|
|
: 'darken-1'
|
|
|
|
: ''
|
|
|
|
"
|
|
|
|
style="width: 100%"
|
|
|
|
:style="{
|
|
|
|
color: navigationIcons === 2 ? 'var(--v-primary-base)' : '',
|
|
|
|
borderRadius: `${roundTweak / 12}rem`,
|
|
|
|
}"
|
|
|
|
@click="
|
|
|
|
(navigationIcons = 2),
|
|
|
|
(navigationShift = false),
|
|
|
|
$vuetube.haptics.hapticsImpactLight(1)
|
|
|
|
"
|
|
|
|
>
|
2022-12-28 12:55:31 +00:00
|
|
|
<div>{{ lang.fluentuiicons }}</div>
|
2022-12-27 04:32:48 +00:00
|
|
|
<v-spacer></v-spacer>
|
|
|
|
<svg
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
fill="currentColor"
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
height="2rem"
|
|
|
|
width="2rem"
|
|
|
|
class="ma-1"
|
|
|
|
>
|
|
|
|
<use href="/fhome.svg#main" />
|
|
|
|
</svg>
|
|
|
|
<svg
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
fill="currentColor"
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
height="2rem"
|
|
|
|
width="2rem"
|
|
|
|
class="ma-1"
|
|
|
|
>
|
|
|
|
<use href="/fsubs.svg#main" />
|
|
|
|
</svg>
|
|
|
|
<svg
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
fill="currentColor"
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
height="2rem"
|
|
|
|
width="2rem"
|
|
|
|
class="ma-1"
|
|
|
|
>
|
|
|
|
<use href="/flist.svg#main" />
|
|
|
|
</svg>
|
|
|
|
</v-card>
|
|
|
|
<v-card
|
|
|
|
flat
|
|
|
|
class="pa-4 d-flex flex-row align-center background"
|
|
|
|
:class="
|
|
|
|
roundTweak > 0
|
|
|
|
? $vuetify.theme.dark
|
|
|
|
? 'lighten-1'
|
|
|
|
: 'darken-1'
|
|
|
|
: ''
|
|
|
|
"
|
|
|
|
style="width: 100%"
|
|
|
|
:style="{
|
|
|
|
color: navigationIcons === 3 ? 'var(--v-primary-base)' : '',
|
|
|
|
borderRadius: `${roundTweak / 12}rem`,
|
|
|
|
}"
|
|
|
|
@click="
|
|
|
|
(navigationIcons = 3),
|
|
|
|
(navigationShift = false),
|
|
|
|
$vuetube.haptics.hapticsImpactLight(1)
|
|
|
|
"
|
|
|
|
>
|
2022-12-28 12:55:31 +00:00
|
|
|
<div>{{ lang.ibmcarbonicons }}</div>
|
2022-12-27 04:32:48 +00:00
|
|
|
<v-spacer></v-spacer>
|
|
|
|
<svg
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
fill="currentColor"
|
|
|
|
viewBox="0 0 32 32"
|
|
|
|
height="2rem"
|
|
|
|
width="2rem"
|
|
|
|
class="ma-1"
|
|
|
|
>
|
|
|
|
<use href="/chome.svg#main" />
|
|
|
|
</svg>
|
|
|
|
<svg
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
fill="currentColor"
|
|
|
|
viewBox="0 0 32 32"
|
|
|
|
height="2rem"
|
|
|
|
width="2rem"
|
|
|
|
class="ma-1"
|
|
|
|
>
|
|
|
|
<use href="/csubs.svg#main" />
|
|
|
|
</svg>
|
|
|
|
<svg
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
fill="currentColor"
|
|
|
|
viewBox="0 0 32 32"
|
|
|
|
height="2rem"
|
|
|
|
width="2rem"
|
|
|
|
class="ma-1"
|
|
|
|
>
|
|
|
|
<use href="/clist.svg#main" />
|
|
|
|
</svg>
|
2022-12-27 01:16:06 +00:00
|
|
|
</v-card>
|
|
|
|
</div>
|
|
|
|
</v-card>
|
2022-03-21 05:13:21 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
2022-06-15 19:29:52 +00:00
|
|
|
data() {
|
|
|
|
return {
|
2022-06-22 05:24:06 +00:00
|
|
|
lang: {},
|
|
|
|
};
|
2022-06-15 19:29:52 +00:00
|
|
|
},
|
2022-03-21 05:13:21 +00:00
|
|
|
computed: {
|
|
|
|
roundTweak: {
|
|
|
|
get() {
|
|
|
|
return this.$store.state.tweaks.roundTweak;
|
|
|
|
},
|
|
|
|
set(value) {
|
|
|
|
this.$store.commit("tweaks/setRoundTweak", value);
|
|
|
|
},
|
|
|
|
},
|
2022-05-13 22:25:47 +00:00
|
|
|
roundThumb: {
|
|
|
|
get() {
|
|
|
|
return this.$store.state.tweaks.roundThumb;
|
|
|
|
},
|
|
|
|
set(value) {
|
|
|
|
this.$store.commit("tweaks/setRoundThumb", value);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
roundWatch: {
|
|
|
|
get() {
|
|
|
|
return this.$store.state.tweaks.roundWatch;
|
|
|
|
},
|
|
|
|
set(value) {
|
|
|
|
this.$store.commit("tweaks/setRoundWatch", value);
|
|
|
|
},
|
|
|
|
},
|
2022-12-26 21:20:19 +00:00
|
|
|
launchTheme: {
|
|
|
|
get() {
|
|
|
|
return this.$store.state.tweaks.launchTheme;
|
|
|
|
},
|
|
|
|
set(value) {
|
|
|
|
this.$store.commit("tweaks/setLaunchTheme", value);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
launchIconTheme: {
|
|
|
|
get() {
|
|
|
|
return this.$store.state.tweaks.launchIconTheme;
|
|
|
|
},
|
|
|
|
set(value) {
|
|
|
|
this.$store.commit("tweaks/setLaunchIconTheme", value);
|
|
|
|
},
|
|
|
|
},
|
2022-12-27 01:16:06 +00:00
|
|
|
navigationText: {
|
|
|
|
get() {
|
|
|
|
return this.$store.state.tweaks.navigationText;
|
|
|
|
},
|
|
|
|
set(value) {
|
|
|
|
this.$store.commit("tweaks/setNavigationText", value);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
navigationShift: {
|
|
|
|
get() {
|
|
|
|
return this.$store.state.tweaks.navigationShift;
|
|
|
|
},
|
|
|
|
set(value) {
|
|
|
|
this.$store.commit("tweaks/setNavigationShift", value);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
navigationIcons: {
|
|
|
|
get() {
|
|
|
|
return this.$store.state.tweaks.navigationIcons;
|
|
|
|
},
|
|
|
|
set(value) {
|
|
|
|
this.$store.commit("tweaks/setNavigationIcons", value);
|
|
|
|
},
|
|
|
|
},
|
2022-03-21 05:13:21 +00:00
|
|
|
},
|
2022-07-06 04:07:12 +00:00
|
|
|
mounted() {
|
|
|
|
this.lang = this.$lang("mods").tweaks;
|
|
|
|
},
|
2022-03-21 05:13:21 +00:00
|
|
|
};
|
|
|
|
</script>
|