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