2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2022-06-23 15:47:55 +00:00
|
|
|
<template>
|
|
|
|
<MkStickyContainer>
|
2022-06-20 08:38:49 +00:00
|
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkSpacer :contentMax="800" :marginMin="16" :marginMax="32">
|
2023-01-06 04:40:17 +00:00
|
|
|
<div class="cwepdizn _gaps_m">
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkFolder :defaultOpen="true">
|
2022-06-23 15:47:55 +00:00
|
|
|
<template #label>{{ i18n.ts.backgroundColor }}</template>
|
|
|
|
<div class="cwepdizn-colors">
|
|
|
|
<div class="row">
|
|
|
|
<button v-for="color in bgColors.filter(x => x.kind === 'light')" :key="color.color" class="color _button" :class="{ active: theme.props.bg === color.color }" @click="setBgColor(color)">
|
|
|
|
<div class="preview" :style="{ background: color.forPreview }"></div>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<button v-for="color in bgColors.filter(x => x.kind === 'dark')" :key="color.color" class="color _button" :class="{ active: theme.props.bg === color.color }" @click="setBgColor(color)">
|
|
|
|
<div class="preview" :style="{ background: color.forPreview }"></div>
|
|
|
|
</button>
|
|
|
|
</div>
|
2022-01-04 13:42:04 +00:00
|
|
|
</div>
|
2023-01-09 00:41:25 +00:00
|
|
|
</MkFolder>
|
2022-06-23 15:47:55 +00:00
|
|
|
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkFolder :defaultOpen="true">
|
2022-06-23 15:47:55 +00:00
|
|
|
<template #label>{{ i18n.ts.accentColor }}</template>
|
|
|
|
<div class="cwepdizn-colors">
|
|
|
|
<div class="row">
|
|
|
|
<button v-for="color in accentColors" :key="color" class="color rounded _button" :class="{ active: theme.props.accent === color }" @click="setAccentColor(color)">
|
|
|
|
<div class="preview" :style="{ background: color }"></div>
|
|
|
|
</button>
|
|
|
|
</div>
|
2022-01-04 13:42:04 +00:00
|
|
|
</div>
|
2023-01-09 00:41:25 +00:00
|
|
|
</MkFolder>
|
2022-06-23 15:47:55 +00:00
|
|
|
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkFolder :defaultOpen="true">
|
2022-06-23 15:47:55 +00:00
|
|
|
<template #label>{{ i18n.ts.textColor }}</template>
|
|
|
|
<div class="cwepdizn-colors">
|
|
|
|
<div class="row">
|
|
|
|
<button v-for="color in fgColors" :key="color" class="color char _button" :class="{ active: (theme.props.fg === color.forLight) || (theme.props.fg === color.forDark) }" @click="setFgColor(color)">
|
|
|
|
<div class="preview" :style="{ color: color.forPreview ? color.forPreview : theme.base === 'light' ? '#5f5f5f' : '#dadada' }">A</div>
|
|
|
|
</button>
|
|
|
|
</div>
|
2022-01-04 13:42:04 +00:00
|
|
|
</div>
|
2023-01-09 00:41:25 +00:00
|
|
|
</MkFolder>
|
2022-06-23 15:47:55 +00:00
|
|
|
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkFolder :defaultOpen="false">
|
2023-09-30 19:53:52 +00:00
|
|
|
<template #icon><i class="ph-code ph-bold pg-lg"></i></template>
|
2022-06-23 15:47:55 +00:00
|
|
|
<template #label>{{ i18n.ts.editCode }}</template>
|
|
|
|
|
2023-01-06 04:40:17 +00:00
|
|
|
<div class="_gaps_m">
|
2023-01-07 06:09:46 +00:00
|
|
|
<MkTextarea v-model="themeCode" tall>
|
2022-06-23 15:47:55 +00:00
|
|
|
<template #label>{{ i18n.ts._theme.code }}</template>
|
2023-01-07 06:09:46 +00:00
|
|
|
</MkTextarea>
|
2023-01-06 00:41:14 +00:00
|
|
|
<MkButton primary @click="applyThemeCode">{{ i18n.ts.apply }}</MkButton>
|
2022-06-23 15:47:55 +00:00
|
|
|
</div>
|
2023-01-09 00:41:25 +00:00
|
|
|
</MkFolder>
|
2022-06-23 15:47:55 +00:00
|
|
|
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkFolder :defaultOpen="false">
|
2022-06-23 15:47:55 +00:00
|
|
|
<template #label>{{ i18n.ts.addDescription }}</template>
|
|
|
|
|
2023-01-06 04:40:17 +00:00
|
|
|
<div class="_gaps_m">
|
2023-01-07 06:09:46 +00:00
|
|
|
<MkTextarea v-model="description">
|
2022-06-23 15:47:55 +00:00
|
|
|
<template #label>{{ i18n.ts._theme.description }}</template>
|
2023-01-07 06:09:46 +00:00
|
|
|
</MkTextarea>
|
2022-01-04 13:42:04 +00:00
|
|
|
</div>
|
2023-01-09 00:41:25 +00:00
|
|
|
</MkFolder>
|
2022-06-23 15:47:55 +00:00
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2020-07-11 03:12:35 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-16 06:02:15 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { watch } from 'vue';
|
2021-04-04 04:00:39 +00:00
|
|
|
import { toUnicode } from 'punycode/';
|
2022-05-01 13:51:07 +00:00
|
|
|
import tinycolor from 'tinycolor2';
|
2022-06-10 05:36:55 +00:00
|
|
|
import { v4 as uuid } from 'uuid';
|
2022-05-01 13:51:07 +00:00
|
|
|
import JSON5 from 'json5';
|
2020-07-11 03:12:35 +00:00
|
|
|
|
2023-01-06 00:41:14 +00:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2023-01-07 06:09:46 +00:00
|
|
|
import MkTextarea from '@/components/MkTextarea.vue';
|
2023-01-09 00:41:25 +00:00
|
|
|
import MkFolder from '@/components/MkFolder.vue';
|
2020-07-11 03:12:35 +00:00
|
|
|
|
2023-09-19 07:37:43 +00:00
|
|
|
import { $i } from '@/account.js';
|
|
|
|
import { Theme, applyTheme } from '@/scripts/theme.js';
|
2022-05-28 12:59:23 +00:00
|
|
|
import lightTheme from '@/themes/_light.json5';
|
|
|
|
import darkTheme from '@/themes/_dark.json5';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { host } from '@/config.js';
|
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { ColdDeviceStorage, defaultStore } from '@/store.js';
|
2021-11-11 17:02:25 +00:00
|
|
|
import { addTheme } from '@/theme-store';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { useLeaveGuard } from '@/scripts/use-leave-guard.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
2022-01-16 06:02:15 +00:00
|
|
|
|
|
|
|
const bgColors = [
|
|
|
|
{ color: '#f5f5f5', kind: 'light', forPreview: '#f5f5f5' },
|
|
|
|
{ color: '#f0eee9', kind: 'light', forPreview: '#f3e2b9' },
|
|
|
|
{ color: '#e9eff0', kind: 'light', forPreview: '#bfe3e8' },
|
|
|
|
{ color: '#f0e9ee', kind: 'light', forPreview: '#f1d1e8' },
|
|
|
|
{ color: '#dce2e0', kind: 'light', forPreview: '#a4dccc' },
|
|
|
|
{ color: '#e2e0dc', kind: 'light', forPreview: '#d8c7a5' },
|
|
|
|
{ color: '#d5dbe0', kind: 'light', forPreview: '#b0cae0' },
|
|
|
|
{ color: '#dad5d5', kind: 'light', forPreview: '#d6afaf' },
|
|
|
|
{ color: '#2b2b2b', kind: 'dark', forPreview: '#444444' },
|
|
|
|
{ color: '#362e29', kind: 'dark', forPreview: '#735c4d' },
|
|
|
|
{ color: '#303629', kind: 'dark', forPreview: '#506d2f' },
|
|
|
|
{ color: '#293436', kind: 'dark', forPreview: '#258192' },
|
|
|
|
{ color: '#2e2936', kind: 'dark', forPreview: '#504069' },
|
|
|
|
{ color: '#252722', kind: 'dark', forPreview: '#3c462f' },
|
|
|
|
{ color: '#212525', kind: 'dark', forPreview: '#303e3e' },
|
|
|
|
{ color: '#191919', kind: 'dark', forPreview: '#272727' },
|
|
|
|
] as const;
|
|
|
|
const accentColors = ['#e36749', '#f29924', '#98c934', '#34c9a9', '#34a1c9', '#606df7', '#8d34c9', '#e84d83'];
|
|
|
|
const fgColors = [
|
|
|
|
{ color: 'none', forLight: '#5f5f5f', forDark: '#dadada', forPreview: null },
|
|
|
|
{ color: 'red', forLight: '#7f6666', forDark: '#e4d1d1', forPreview: '#ca4343' },
|
|
|
|
{ color: 'yellow', forLight: '#736955', forDark: '#e0d5c0', forPreview: '#d49923' },
|
|
|
|
{ color: 'green', forLight: '#586d5b', forDark: '#d1e4d4', forPreview: '#4cbd5c' },
|
|
|
|
{ color: 'cyan', forLight: '#5d7475', forDark: '#d1e3e4', forPreview: '#2abdc3' },
|
|
|
|
{ color: 'blue', forLight: '#676880', forDark: '#d1d2e4', forPreview: '#7275d8' },
|
|
|
|
{ color: 'pink', forLight: '#84667d', forDark: '#e4d1e0', forPreview: '#b12390' },
|
|
|
|
];
|
|
|
|
|
2022-07-04 14:22:11 +00:00
|
|
|
let theme = $ref<Partial<Theme>>({
|
2022-01-16 06:02:15 +00:00
|
|
|
base: 'light',
|
|
|
|
props: lightTheme.props,
|
|
|
|
});
|
|
|
|
let description = $ref<string | null>(null);
|
|
|
|
let themeCode = $ref<string | null>(null);
|
|
|
|
let changed = $ref(false);
|
2020-07-11 03:12:35 +00:00
|
|
|
|
2022-01-16 06:02:15 +00:00
|
|
|
useLeaveGuard($$(changed));
|
2020-07-11 03:12:35 +00:00
|
|
|
|
2022-01-16 06:02:15 +00:00
|
|
|
function showPreview() {
|
2022-05-29 10:21:36 +00:00
|
|
|
os.pageWindow('/preview');
|
2022-01-16 06:02:15 +00:00
|
|
|
}
|
2021-11-19 10:36:12 +00:00
|
|
|
|
2022-01-16 06:02:15 +00:00
|
|
|
function setBgColor(color: typeof bgColors[number]) {
|
2022-05-26 13:53:09 +00:00
|
|
|
if (theme.base !== color.kind) {
|
2022-01-16 06:02:15 +00:00
|
|
|
const base = color.kind === 'dark' ? darkTheme : lightTheme;
|
|
|
|
for (const prop of Object.keys(base.props)) {
|
|
|
|
if (prop === 'accent') continue;
|
|
|
|
if (prop === 'fg') continue;
|
|
|
|
theme.props[prop] = base.props[prop];
|
2020-07-11 03:12:35 +00:00
|
|
|
}
|
2022-01-16 06:02:15 +00:00
|
|
|
}
|
|
|
|
theme.base = color.kind;
|
|
|
|
theme.props.bg = color.color;
|
2020-07-11 03:12:35 +00:00
|
|
|
|
2022-01-16 06:02:15 +00:00
|
|
|
if (theme.props.fg) {
|
|
|
|
const matchedFgColor = fgColors.find(x => [tinycolor(x.forLight).toRgbString(), tinycolor(x.forDark).toRgbString()].includes(tinycolor(theme.props.fg).toRgbString()));
|
|
|
|
if (matchedFgColor) setFgColor(matchedFgColor);
|
|
|
|
}
|
|
|
|
}
|
2021-01-16 04:47:07 +00:00
|
|
|
|
2022-01-16 06:02:15 +00:00
|
|
|
function setAccentColor(color) {
|
|
|
|
theme.props.accent = color;
|
|
|
|
}
|
2021-01-16 04:47:07 +00:00
|
|
|
|
2022-01-16 06:02:15 +00:00
|
|
|
function setFgColor(color) {
|
|
|
|
theme.props.fg = theme.base === 'light' ? color.forLight : color.forDark;
|
|
|
|
}
|
2021-02-06 09:06:54 +00:00
|
|
|
|
2022-01-16 06:02:15 +00:00
|
|
|
function apply() {
|
|
|
|
themeCode = JSON5.stringify(theme, null, '\t');
|
|
|
|
applyTheme(theme, false);
|
|
|
|
changed = true;
|
|
|
|
}
|
2021-02-06 09:06:54 +00:00
|
|
|
|
2022-01-16 06:02:15 +00:00
|
|
|
function applyThemeCode() {
|
|
|
|
let parsed;
|
|
|
|
|
|
|
|
try {
|
|
|
|
parsed = JSON5.parse(themeCode);
|
|
|
|
} catch (err) {
|
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
2022-01-28 02:39:49 +00:00
|
|
|
text: i18n.ts._theme.invalid,
|
2022-01-16 06:02:15 +00:00
|
|
|
});
|
|
|
|
return;
|
2020-07-11 03:12:35 +00:00
|
|
|
}
|
2022-01-16 06:02:15 +00:00
|
|
|
|
|
|
|
theme = parsed;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function saveAs() {
|
|
|
|
const { canceled, result: name } = await os.inputText({
|
2022-01-28 02:39:49 +00:00
|
|
|
title: i18n.ts.name,
|
2022-01-16 06:02:15 +00:00
|
|
|
allowEmpty: false,
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
theme.id = uuid();
|
|
|
|
theme.name = name;
|
|
|
|
theme.author = `@${$i.username}@${toUnicode(host)}`;
|
|
|
|
if (description) theme.desc = description;
|
2022-07-05 22:08:45 +00:00
|
|
|
await addTheme(theme);
|
2022-01-16 06:02:15 +00:00
|
|
|
applyTheme(theme);
|
|
|
|
if (defaultStore.state.darkMode) {
|
|
|
|
ColdDeviceStorage.set('darkTheme', theme);
|
|
|
|
} else {
|
|
|
|
ColdDeviceStorage.set('lightTheme', theme);
|
|
|
|
}
|
|
|
|
changed = false;
|
|
|
|
os.alert({
|
|
|
|
type: 'success',
|
|
|
|
text: i18n.t('_theme.installed', { name: theme.name }),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
watch($$(theme), apply, { deep: true });
|
|
|
|
|
2022-06-23 15:47:55 +00:00
|
|
|
const headerActions = $computed(() => [{
|
|
|
|
asFullButton: true,
|
2023-09-30 19:53:52 +00:00
|
|
|
icon: 'ph-eye ph-bold ph-lg',
|
2022-06-23 15:47:55 +00:00
|
|
|
text: i18n.ts.preview,
|
|
|
|
handler: showPreview,
|
|
|
|
}, {
|
|
|
|
asFullButton: true,
|
2023-09-30 19:53:52 +00:00
|
|
|
icon: 'ph-check ph-bold ph-lg',
|
2022-06-23 15:47:55 +00:00
|
|
|
text: i18n.ts.saveAs,
|
|
|
|
handler: saveAs,
|
|
|
|
}]);
|
2022-06-20 08:38:49 +00:00
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.themeEditor,
|
2023-09-30 22:46:42 +00:00
|
|
|
icon: 'ph-palette ph-bold ph-lg',
|
2020-07-11 03:12:35 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2022-12-27 09:29:39 +00:00
|
|
|
<style lang="scss" scoped>
|
2021-01-09 08:18:45 +00:00
|
|
|
.cwepdizn {
|
2022-01-04 13:42:04 +00:00
|
|
|
::v-deep(.cwepdizn-colors) {
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
> .row {
|
|
|
|
> .color {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
width: 64px;
|
|
|
|
height: 64px;
|
2023-10-31 18:44:34 +00:00
|
|
|
border-radius: var(--radius-sm);
|
2022-01-04 13:42:04 +00:00
|
|
|
|
|
|
|
> .preview {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
margin: auto;
|
|
|
|
width: 42px;
|
|
|
|
height: 42px;
|
2023-10-31 18:44:34 +00:00
|
|
|
border-radius: var(--radius-xs);
|
2022-01-04 13:42:04 +00:00
|
|
|
box-shadow: 0 2px 4px rgb(0 0 0 / 30%);
|
|
|
|
transition: transform 0.15s ease;
|
|
|
|
}
|
2021-01-09 08:18:45 +00:00
|
|
|
|
2022-01-04 13:42:04 +00:00
|
|
|
&:hover {
|
2021-01-09 08:18:45 +00:00
|
|
|
> .preview {
|
2022-01-04 13:42:04 +00:00
|
|
|
transform: scale(1.1);
|
2020-07-11 03:12:35 +00:00
|
|
|
}
|
2022-01-04 13:42:04 +00:00
|
|
|
}
|
2020-07-11 03:12:35 +00:00
|
|
|
|
2022-01-04 13:42:04 +00:00
|
|
|
&.active {
|
|
|
|
box-shadow: 0 0 0 2px var(--divider) inset;
|
|
|
|
}
|
2020-07-11 03:12:35 +00:00
|
|
|
|
2022-01-04 13:42:04 +00:00
|
|
|
&.rounded {
|
2023-10-31 18:44:34 +00:00
|
|
|
border-radius: var(--radius-ellipse);
|
2020-07-11 03:12:35 +00:00
|
|
|
|
2022-01-04 13:42:04 +00:00
|
|
|
> .preview {
|
2023-10-31 18:44:34 +00:00
|
|
|
border-radius: var(--radius-ellipse);
|
2020-07-11 03:12:35 +00:00
|
|
|
}
|
2022-01-04 13:42:04 +00:00
|
|
|
}
|
2021-01-09 08:18:45 +00:00
|
|
|
|
2022-01-04 13:42:04 +00:00
|
|
|
&.char {
|
|
|
|
line-height: 42px;
|
2021-01-09 08:18:45 +00:00
|
|
|
}
|
2020-07-11 03:12:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|