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