mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 12:13:08 +02:00
87 lines
2.6 KiB
Vue
87 lines
2.6 KiB
Vue
<template>
|
|
<div class="_gaps_m">
|
|
<MkTextarea v-model="items" tall manual-save>
|
|
<template #label>{{ i18n.ts.navbar }}</template>
|
|
<template #caption><button class="_textButton" @click="addItem">{{ i18n.ts.addItem }}</button></template>
|
|
</MkTextarea>
|
|
|
|
<MkRadios v-model="menuDisplay">
|
|
<template #label>{{ i18n.ts.display }}</template>
|
|
<option value="sideFull">{{ i18n.ts._menuDisplay.sideFull }}</option>
|
|
<option value="sideIcon">{{ i18n.ts._menuDisplay.sideIcon }}</option>
|
|
<option value="top">{{ i18n.ts._menuDisplay.top }}</option>
|
|
<!-- <MkRadio v-model="menuDisplay" value="hide" disabled>{{ i18n.ts._menuDisplay.hide }}</MkRadio>--> <!-- TODO: サイドバーを完全に隠せるようにすると、別途ハンバーガーボタンのようなものをUIに表示する必要があり面倒 -->
|
|
</MkRadios>
|
|
|
|
<MkButton danger @click="reset()"><i class="ti ti-reload"></i> {{ i18n.ts.default }}</MkButton>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed, ref, watch } from 'vue';
|
|
import MkTextarea from '@/components/MkTextarea.vue';
|
|
import MkRadios from '@/components/MkRadios.vue';
|
|
import MkButton from '@/components/MkButton.vue';
|
|
import * as os from '@/os';
|
|
import { navbarItemDef } from '@/navbar';
|
|
import { defaultStore } from '@/store';
|
|
import { unisonReload } from '@/scripts/unison-reload';
|
|
import { i18n } from '@/i18n';
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
|
|
|
const items = ref(defaultStore.state.menu.join('\n'));
|
|
|
|
const split = computed(() => items.value.trim().split('\n').filter(x => x.trim() !== ''));
|
|
const menuDisplay = computed(defaultStore.makeGetterSetter('menuDisplay'));
|
|
|
|
async function reloadAsk() {
|
|
const { canceled } = await os.confirm({
|
|
type: 'info',
|
|
text: i18n.ts.reloadToApplySetting,
|
|
});
|
|
if (canceled) return;
|
|
|
|
unisonReload();
|
|
}
|
|
|
|
async function addItem() {
|
|
const menu = Object.keys(navbarItemDef).filter(k => !defaultStore.state.menu.includes(k));
|
|
const { canceled, result: item } = await os.select({
|
|
title: i18n.ts.addItem,
|
|
items: [...menu.map(k => ({
|
|
value: k, text: navbarItemDef[k].title,
|
|
})), {
|
|
value: '-', text: i18n.ts.divider,
|
|
}],
|
|
});
|
|
if (canceled) return;
|
|
items.value = [...split.value, item].join('\n');
|
|
}
|
|
|
|
async function save() {
|
|
defaultStore.set('menu', split.value);
|
|
await reloadAsk();
|
|
}
|
|
|
|
function reset() {
|
|
defaultStore.reset('menu');
|
|
items.value = defaultStore.state.menu.join('\n');
|
|
}
|
|
|
|
watch(items, async () => {
|
|
await save();
|
|
});
|
|
|
|
watch(menuDisplay, async () => {
|
|
await reloadAsk();
|
|
});
|
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
definePageMetadata({
|
|
title: i18n.ts.navbar,
|
|
icon: 'ti ti-list',
|
|
});
|
|
</script>
|