iceshrimp-legacy/packages/client/src/pages/settings/theme.vue

537 lines
12 KiB
Vue
Raw Normal View History

<template>
2023-04-08 02:01:42 +02:00
<div class="_formRoot rsljpzjq">
<div v-adaptive-border class="rfqxtzch _panel _formBlock">
<div class="toggle">
<div class="toggleWrapper">
<input
id="dn"
v-model="darkMode"
type="checkbox"
class="dn"
/>
<label for="dn" class="toggle">
<span class="before">{{ i18n.ts.light }}</span>
<span class="after">{{ i18n.ts.dark }}</span>
<span class="toggle__handler">
<span class="crater crater--1"></span>
<span class="crater crater--2"></span>
<span class="crater crater--3"></span>
</span>
<span class="star star--1"></span>
<span class="star star--2"></span>
<span class="star star--3"></span>
<span class="star star--4"></span>
<span class="star star--5"></span>
<span class="star star--6"></span>
</label>
</div>
</div>
<div class="sync">
<FormSwitch v-model="syncDeviceDarkMode">{{
i18n.ts.syncDeviceDarkMode
}}</FormSwitch>
2020-03-22 02:39:12 +01:00
</div>
2020-11-14 04:16:28 +01:00
</div>
2021-04-12 06:06:00 +02:00
2023-04-08 02:01:42 +02:00
<div class="selects _formBlock">
<FormSelect v-model="lightThemeId" large class="select">
<template #label>{{ i18n.ts.themeForLightMode }}</template>
<template #prefix
><i class="ph-sun ph-bold ph-lg"></i
></template>
<option
v-if="instanceLightTheme"
:key="'instance:' + instanceLightTheme.id"
:value="instanceLightTheme.id"
>
{{ instanceLightTheme.name }}
</option>
<optgroup
v-if="installedLightThemes.length > 0"
:label="i18n.ts._theme.installedThemes"
>
<option
v-for="x in installedLightThemes"
:key="'installed:' + x.id"
:value="x.id"
>
{{ x.name }}
</option>
</optgroup>
<optgroup :label="i18n.ts._theme.builtinThemes">
<option
v-for="x in builtinLightThemes"
:key="'builtin:' + x.id"
:value="x.id"
>
{{ x.name }}
</option>
</optgroup>
</FormSelect>
<FormSelect v-model="darkThemeId" large class="select">
<template #label>{{ i18n.ts.themeForDarkMode }}</template>
<template #prefix
><i class="ph-moon ph-bold ph-lg"></i
></template>
<option
v-if="instanceDarkTheme"
:key="'instance:' + instanceDarkTheme.id"
:value="instanceDarkTheme.id"
>
{{ instanceDarkTheme.name }}
</option>
<optgroup
v-if="installedDarkThemes.length > 0"
:label="i18n.ts._theme.installedThemes"
>
<option
v-for="x in installedDarkThemes"
:key="'installed:' + x.id"
:value="x.id"
>
{{ x.name }}
</option>
</optgroup>
<optgroup :label="i18n.ts._theme.builtinThemes">
<option
v-for="x in builtinDarkThemes"
:key="'builtin:' + x.id"
:value="x.id"
>
{{ x.name }}
</option>
</optgroup>
</FormSelect>
2021-11-28 12:07:37 +01:00
</div>
2023-04-08 02:01:42 +02:00
<FormSection>
<div class="_formLinksGrid">
<FormLink to="/settings/theme/manage"
><template #icon
><i
class="ph-folder-notch-open ph-bold ph-lg"
></i></template
>{{ i18n.ts._theme.manage
}}<template #suffix>{{ themesCount }}</template></FormLink
>
<FormLink to="https://assets.misskey.io/theme/list" external
><template #icon
><i class="ph-planet ph-bold ph-lg"></i></template
>{{ i18n.ts._theme.explore }}</FormLink
>
<FormLink to="/settings/theme/install"
><template #icon
><i
class="ph-download-simple ph-bold ph-lg"
></i></template
>{{ i18n.ts._theme.install }}</FormLink
>
<FormLink to="/theme-editor"
><template #icon
><i
class="ph-paint-brush-broad ph-bold ph-lg"
></i></template
>{{ i18n.ts._theme.make }}</FormLink
>
</div>
</FormSection>
2023-05-15 04:10:52 +02:00
<FormSection>
<FormLink to="/settings/custom-css" class="_formBlock"
><template #icon><i class="ph-code ph-bold ph-lg"></i></template
>{{ i18n.ts.customCss }}</FormLink
>
</FormSection>
2023-04-08 02:01:42 +02:00
<FormButton
v-if="wallpaper == null"
class="_formBlock"
@click="setWallpaper"
>{{ i18n.ts.setWallpaper }}</FormButton
>
<FormButton v-else class="_formBlock" @click="wallpaper = null">{{
i18n.ts.removeWallpaper
}}</FormButton>
</div>
</template>
<script lang="ts" setup>
2023-04-08 02:01:42 +02:00
import { computed, onActivated, ref, watch } from "vue";
import JSON5 from "json5";
import FormSwitch from "@/components/form/switch.vue";
import FormSelect from "@/components/form/select.vue";
import FormSection from "@/components/form/section.vue";
import FormLink from "@/components/form/link.vue";
import FormButton from "@/components/MkButton.vue";
import { getBuiltinThemesRef } from "@/scripts/theme";
import { selectFile } from "@/scripts/select-file";
import { isDeviceDarkmode } from "@/scripts/is-device-darkmode";
import { ColdDeviceStorage, defaultStore } from "@/store";
import { i18n } from "@/i18n";
import { instance } from "@/instance";
import { uniqueBy } from "@/scripts/array";
import { fetchThemes, getThemes } from "@/theme-store";
import { definePageMetadata } from "@/scripts/page-metadata";
const installedThemes = ref(getThemes());
2022-05-28 14:59:23 +02:00
const builtinThemes = getBuiltinThemesRef();
2023-04-08 02:01:42 +02:00
const instanceDarkTheme = computed(() =>
instance.defaultDarkTheme ? JSON5.parse(instance.defaultDarkTheme) : null
);
const installedDarkThemes = computed(() =>
installedThemes.value.filter((t) => t.base === "dark" || t.kind === "dark")
);
const builtinDarkThemes = computed(() =>
builtinThemes.value.filter((t) => t.base === "dark" || t.kind === "dark")
);
const instanceLightTheme = computed(() =>
instance.defaultLightTheme ? JSON5.parse(instance.defaultLightTheme) : null
);
const installedLightThemes = computed(() =>
installedThemes.value.filter(
(t) => t.base === "light" || t.kind === "light"
)
);
const builtinLightThemes = computed(() =>
builtinThemes.value.filter((t) => t.base === "light" || t.kind === "light")
);
const themes = computed(() =>
uniqueBy(
[
instanceDarkTheme.value,
instanceLightTheme.value,
...builtinThemes.value,
...installedThemes.value,
].filter((x) => x != null),
(theme) => theme.id
)
);
const darkTheme = ColdDeviceStorage.ref("darkTheme");
const darkThemeId = computed({
get() {
return darkTheme.value.id;
},
set(id) {
2023-04-08 02:01:42 +02:00
const t = themes.value.find((x) => x.id === id);
if (t) {
// テーマエディタでテーマを作成したときなどは、themesに反映されないため undefined になる
ColdDeviceStorage.set("darkTheme", t);
}
},
});
2023-04-08 02:01:42 +02:00
const lightTheme = ColdDeviceStorage.ref("lightTheme");
const lightThemeId = computed({
get() {
return lightTheme.value.id;
},
set(id) {
2023-04-08 02:01:42 +02:00
const t = themes.value.find((x) => x.id === id);
if (t) {
// テーマエディタでテーマを作成したときなどは、themesに反映されないため undefined になる
ColdDeviceStorage.set("lightTheme", t);
}
},
});
2023-04-08 02:01:42 +02:00
const darkMode = computed(defaultStore.makeGetterSetter("darkMode"));
const syncDeviceDarkMode = computed(
ColdDeviceStorage.makeGetterSetter("syncDeviceDarkMode")
);
const wallpaper = ref(localStorage.getItem("wallpaper"));
const themesCount = installedThemes.value.length;
watch(syncDeviceDarkMode, () => {
if (syncDeviceDarkMode.value) {
2023-04-08 02:01:42 +02:00
defaultStore.set("darkMode", isDeviceDarkmode());
}
});
Migrate to Vue3 (#6587) * Update reaction.vue * fix bug * wip * wip * wjio * wip * Revert "wip" This reverts commit e427f2160adf4e8a4147006e25a89854edab0033. * wip * wip * wip * Update init.ts * Update drive-window.vue * wip * wip * Use PascalCase for components * Use PascalCase for components * update dep * wip * wip * wip * Update init.ts * wip * Update paging.ts * Update test.vue * watch deep * wip * lint * wip * wip * wip * wip * wiop * wip * Update webpack.config.ts * alllow null poll * wip * wip * wip * wiop * UI redesign & refactor (#6714) * wip * wip * wip * wip * wip * Update drive.vue * Update word-mute.vue * wip * wip * wip * clean up * wip * Update default.vue * wip * Update notes.vue * Update mfm.ts * Update index.home.vue * Update post-form.vue * Update post-form-attaches.vue * wip * Update post-form.vue * Update sidebar.vue * wip * wip * Update index.vue * wip * Update default.vue * Update index.vue * Update index.vue * wip * Update post-form-attaches.vue * Update note.vue * wip * clean up * Update notes.vue * wip * wip * Update ja-JP.yml * wip * wip * Update index.vue * wip * wip * wip * wip * wip * wip * wip * wip * Update default.vue * wip * Update _dark.json5 * wip * wip * wip * clean up * wip * wip * Update index.vue * Update test.vue * wip * wip * fix * wip * wip * wip * wip * clena yop * wip * wip * Update store.ts * Update messaging-room.vue * Update default.widgets.vue * fix * wip * wip * Update modal.vue * wip * Update os.ts * Update os.ts * Update deck.vue * Update init.ts * wip * Update ja-JP.yml * v-sizeは単にwindowのresizeを監視するだけで良いかもしれない * Update modal.vue * wip * Update tooltip.ts * wip * wip * wip * wip * wip * Update image-viewer.vue * wip * wip * Update style.scss * Update style.scss * Update visitor.vue * wip * Update init.ts * Update init.ts * wip * wip * Update visitor.vue * Update visitor.vue * Update visitor.vue * Update visitor.vue * wip * wip * Update modal.vue * Update header.vue * Update menu.vue * Update about.vue * Update about-misskey.vue * wip * wip * Update visitor.vue * Update tooltip.ts * wip * Update drive.vue * wip * Update style.scss * Update header.vue * wip * wip * Update users.user.vue * Update announcements.vue * wip * wip * wip * Update emojis.vue * wip * Update emojis.vue * Update style.scss * Update users.vue * wip * Update style.scss * wip * Update welcome.entrance.vue * Update radio.vue * Update size.ts * Update emoji-edit-dialog.vue * wip * Update emojis.vue * wip * Update emojis.vue * Update emojis.vue * Update emojis.vue * wip * wip * wip * wip * Update file-dialog.vue * wip * wip * Update token-generate-window.vue * Update notification-setting-window.vue * wip * wip * Update _error_.vue * Update ja-JP.yml * wip * wip * Update store.ts * Update emojis.vue * Update emojis.vue * Update emojis.vue * Update announcements.vue * Update store.ts * wip * Update page-editor.vue * wip * wip * Update modal.vue * wip * Update select-file.ts * Update timeline.vue * Update emojis.vue * Update os.ts * wip * Update user-select.vue * Update mfm.ts * Update get-file-info.ts * Update drive.vue * Update init.ts * Update mfm.ts * wip * wip * Update window.vue * Update note.vue * wip * wip * Update user-info.vue * wip * wip * wip * wip * wip * Update header.vue * Update header.vue * wip * Update explore.vue * wip * wip * wip * Update webpack.config.ts * wip * wip * wip * wip * wip * wip * Update autocomplete.ts * wip * wip * wip * Update toast.vue * wip * Update post-form-dialog.vue * wip * wip * wip * wip * wip * Update users.vue * wip * Update explore.vue * wip * wip * wip * Update package.json * wip * Update icon-dialog.vue * wip * wip * Update user-preview.ts * wip * wip * wip * wip * wip * Update instance.vue * Update user-name.vue * Update federation.vue * Update instance.vue * wip * wip * Update tag.vue * wip * wip * wip * wip * wip * Update instance.vue * wip * Update os.ts * Update os.ts * wip * wip * wip * Update router.ts * wip * Update init.ts * Update note.vue * Update messages.vue * wip * wip * wip * wip * wip * google * wip * wip * wip * wip * Update theme-editor.vue * wip * wip * Update room.vue * Update channel-editor.vue * wip * Update window.vue * Update window.vue * wip * Update window.vue * Update window.vue * wip * Update menu.vue * wip * wip * wip * wip * Update messaging-room.vue * wip * Update post-form.vue * Update default.widgets.vue * Update window.vue * wip
2020-10-17 13:12:00 +02:00
watch(wallpaper, () => {
if (wallpaper.value == null) {
2023-04-08 02:01:42 +02:00
localStorage.removeItem("wallpaper");
} else {
2023-04-08 02:01:42 +02:00
localStorage.setItem("wallpaper", wallpaper.value);
}
location.reload();
});
2020-03-22 02:57:58 +01:00
onActivated(() => {
fetchThemes().then(() => {
installedThemes.value = getThemes();
});
});
fetchThemes().then(() => {
installedThemes.value = getThemes();
});
function setWallpaper(event) {
2023-04-08 02:01:42 +02:00
selectFile(event.currentTarget ?? event.target, null).then((file) => {
wallpaper.value = file.url;
});
}
const headerActions = $computed(() => []);
const headerTabs = $computed(() => []);
definePageMetadata({
title: i18n.ts.theme,
2023-04-08 02:01:42 +02:00
icon: "ph-palette ph-bold ph-lg",
});
</script>
<style lang="scss" scoped>
.rfqxtzch {
2021-11-28 12:07:37 +01:00
border-radius: 6px;
2021-11-28 12:07:37 +01:00
> .toggle {
position: relative;
2021-11-28 12:07:37 +01:00
padding: 26px 0;
text-align: center;
&.disabled {
opacity: 0.7;
2023-04-08 02:01:42 +02:00
&,
* {
cursor: not-allowed !important;
}
}
2021-11-28 12:07:37 +01:00
> .toggleWrapper {
display: inline-block;
text-align: left;
padding: 0 100px;
2022-07-25 14:24:37 +02:00
vertical-align: bottom;
input {
position: absolute;
left: -99em;
}
2023-05-10 23:44:08 +02:00
&:focus-within > .toggle {
outline: auto;
}
}
2020-03-28 07:57:31 +01:00
.toggle {
cursor: pointer;
display: inline-block;
position: relative;
width: 90px;
height: 50px;
2023-04-08 02:01:42 +02:00
background-color: #83d8ff;
border-radius: 90px - 6;
2023-04-08 02:01:42 +02:00
transition: background-color 200ms
cubic-bezier(0.445, 0.05, 0.55, 0.95) !important;
2020-03-28 07:57:31 +01:00
2023-04-08 02:01:42 +02:00
> .before,
> .after {
position: absolute;
top: 15px;
transition: color 1s ease;
}
2020-03-28 07:57:31 +01:00
> .before {
left: -70px;
color: var(--accent);
}
> .after {
right: -68px;
color: var(--fg);
}
}
2020-03-22 02:39:12 +01:00
.toggle__handler {
display: inline-block;
2020-03-22 02:39:12 +01:00
position: relative;
z-index: 1;
top: 3px;
left: 3px;
width: 50px - 6;
height: 50px - 6;
2023-04-08 02:01:42 +02:00
background-color: #ffcf96;
border-radius: 50px;
2023-04-08 02:01:42 +02:00
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
2023-04-08 02:01:42 +02:00
transform: rotate(-45deg);
.crater {
position: absolute;
2023-04-08 02:01:42 +02:00
background-color: #e8cda5;
opacity: 0;
transition: opacity 200ms ease-in-out !important;
border-radius: 100%;
}
2020-03-22 02:39:12 +01:00
.crater--1 {
top: 18px;
left: 10px;
width: 4px;
height: 4px;
}
2020-03-22 02:39:12 +01:00
.crater--2 {
top: 28px;
left: 22px;
width: 6px;
height: 6px;
2020-03-22 02:39:12 +01:00
}
.crater--3 {
top: 10px;
left: 25px;
width: 8px;
height: 8px;
2020-03-22 02:39:12 +01:00
}
}
2020-03-22 02:39:12 +01:00
.star {
position: absolute;
background-color: #ffffff;
transition: all 300ms cubic-bezier(0.445, 0.05, 0.55, 0.95) !important;
border-radius: 50%;
}
.star--1 {
top: 10px;
left: 35px;
z-index: 0;
width: 30px;
height: 3px;
}
.star--2 {
top: 18px;
left: 28px;
z-index: 1;
width: 30px;
height: 3px;
}
.star--3 {
top: 27px;
left: 40px;
z-index: 0;
width: 30px;
height: 3px;
}
.star--4,
.star--5,
.star--6 {
opacity: 0;
transition: all 300ms 0 cubic-bezier(0.445, 0.05, 0.55, 0.95) !important;
}
.star--4 {
top: 16px;
left: 11px;
z-index: 0;
width: 2px;
height: 2px;
2023-04-08 02:01:42 +02:00
transform: translate3d(3px, 0, 0);
}
.star--5 {
top: 32px;
left: 17px;
z-index: 0;
width: 3px;
height: 3px;
2023-04-08 02:01:42 +02:00
transform: translate3d(3px, 0, 0);
}
.star--6 {
top: 36px;
left: 28px;
z-index: 0;
width: 2px;
height: 2px;
2023-04-08 02:01:42 +02:00
transform: translate3d(3px, 0, 0);
}
input:checked {
+ .toggle {
2023-04-08 02:01:42 +02:00
background-color: #749dd6;
2020-03-22 02:39:12 +01:00
> .before {
color: var(--fg);
2020-03-22 02:39:12 +01:00
}
> .after {
color: var(--accent);
}
.toggle__handler {
2023-04-08 02:01:42 +02:00
background-color: #ffe5b5;
transform: translate3d(40px, 0, 0) rotate(0);
2023-04-08 02:01:42 +02:00
.crater {
opacity: 1;
}
2020-03-22 02:39:12 +01:00
}
.star--1 {
width: 2px;
height: 2px;
2020-03-22 02:39:12 +01:00
}
.star--2 {
2020-03-22 02:39:12 +01:00
width: 4px;
height: 4px;
transform: translate3d(-5px, 0, 0);
2020-03-22 02:39:12 +01:00
}
.star--3 {
width: 2px;
height: 2px;
transform: translate3d(-7px, 0, 0);
2020-03-22 02:39:12 +01:00
}
.star--4,
.star--5,
.star--6 {
opacity: 1;
2023-04-08 02:01:42 +02:00
transform: translate3d(0, 0, 0);
2020-03-22 02:39:12 +01:00
}
.star--4 {
2023-04-08 02:01:42 +02:00
transition: all 300ms 200ms
cubic-bezier(0.445, 0.05, 0.55, 0.95) !important;
}
2020-03-22 02:39:12 +01:00
.star--5 {
2023-04-08 02:01:42 +02:00
transition: all 300ms 300ms
cubic-bezier(0.445, 0.05, 0.55, 0.95) !important;
}
2020-03-22 02:39:12 +01:00
.star--6 {
2023-04-08 02:01:42 +02:00
transition: all 300ms 400ms
cubic-bezier(0.445, 0.05, 0.55, 0.95) !important;
2020-03-22 02:39:12 +01:00
}
}
}
}
2021-11-28 12:07:37 +01:00
> .sync {
padding: 14px 16px;
border-top: solid 0.5px var(--divider);
}
2020-03-22 02:39:12 +01:00
}
.rsljpzjq {
> .selects {
display: flex;
2022-06-28 09:02:39 +02:00
gap: 1.5em var(--margin);
flex-wrap: wrap;
> .select {
flex: 1;
min-width: 280px;
}
}
}
2020-03-22 02:39:12 +01:00
</style>