2023-07-27 14:31:52 +09:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-11-25 21:31:34 +09:00
|
|
|
<template>
|
2023-01-06 13:40:17 +09:00
|
|
|
<div class="_gaps_m">
|
2023-07-17 08:11:17 +09:00
|
|
|
<MkSwitch v-model="useSimpleUiForNonRootPages">{{ i18n.ts._deck.useSimpleUiForNonRootPages }}</MkSwitch>
|
|
|
|
|
2023-01-07 14:59:54 +09:00
|
|
|
<MkSwitch v-model="navWindow">{{ i18n.ts.defaultNavigationBehaviour }}: {{ i18n.ts.openInWindow }}</MkSwitch>
|
2020-11-25 21:31:34 +09:00
|
|
|
|
2023-01-07 14:59:54 +09:00
|
|
|
<MkSwitch v-model="alwaysShowMainColumn">{{ i18n.ts._deck.alwaysShowMainColumn }}</MkSwitch>
|
2020-11-25 21:31:34 +09:00
|
|
|
|
2023-01-07 15:09:46 +09:00
|
|
|
<MkRadios v-model="columnAlign">
|
2022-05-05 22:51:29 +09:00
|
|
|
<template #label>{{ i18n.ts._deck.columnAlign }}</template>
|
|
|
|
<option value="left">{{ i18n.ts.left }}</option>
|
|
|
|
<option value="center">{{ i18n.ts.center }}</option>
|
2023-01-07 15:09:46 +09:00
|
|
|
</MkRadios>
|
2022-01-04 21:16:41 +09:00
|
|
|
</div>
|
2020-11-25 21:31:34 +09:00
|
|
|
</template>
|
|
|
|
|
2022-05-05 22:51:29 +09:00
|
|
|
<script lang="ts" setup>
|
2023-02-16 23:09:41 +09:00
|
|
|
import { computed } from 'vue';
|
2023-01-07 14:59:54 +09:00
|
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
2023-01-07 15:09:46 +09:00
|
|
|
import MkRadios from '@/components/MkRadios.vue';
|
2023-09-19 16:37:43 +09:00
|
|
|
import { deckStore } from '@/ui/deck/deck-store.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
2020-11-25 21:31:34 +09:00
|
|
|
|
2022-05-05 22:51:29 +09:00
|
|
|
const navWindow = computed(deckStore.makeGetterSetter('navWindow'));
|
2023-07-17 08:11:17 +09:00
|
|
|
const useSimpleUiForNonRootPages = computed(deckStore.makeGetterSetter('useSimpleUiForNonRootPages'));
|
2022-05-05 22:51:29 +09:00
|
|
|
const alwaysShowMainColumn = computed(deckStore.makeGetterSetter('alwaysShowMainColumn'));
|
|
|
|
const columnAlign = computed(deckStore.makeGetterSetter('columnAlign'));
|
2020-12-27 21:16:51 +09:00
|
|
|
|
2022-06-20 17:38:49 +09:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.deck,
|
2023-10-01 07:46:42 +09:00
|
|
|
icon: 'ph-text-columns ph-bold ph-lg',
|
2020-11-25 21:31:34 +09:00
|
|
|
});
|
|
|
|
</script>
|