2020-11-25 13:31:34 +01:00
|
|
|
<template>
|
|
|
|
<FormBase>
|
|
|
|
|
|
|
|
<section class="_card _vMargin">
|
|
|
|
<div class="_title"><Fa :icon="faColumns"/> </div>
|
|
|
|
<div class="_content">
|
|
|
|
<div>{{ $t('defaultNavigationBehaviour') }}</div>
|
2020-12-19 02:55:52 +01:00
|
|
|
<MkSwitch v-model:value="navWindow">{{ $t('openInWindow') }}</MkSwitch>
|
2020-11-25 13:31:34 +01:00
|
|
|
</div>
|
|
|
|
<div class="_content">
|
2020-12-19 02:55:52 +01:00
|
|
|
<MkSwitch v-model:value="alwaysShowMainColumn">
|
2020-11-25 13:31:34 +01:00
|
|
|
{{ $t('_deck.alwaysShowMainColumn') }}
|
|
|
|
</MkSwitch>
|
|
|
|
</div>
|
|
|
|
<div class="_content">
|
|
|
|
<div>{{ $t('_deck.columnAlign') }}</div>
|
2020-12-19 02:55:52 +01:00
|
|
|
<MkRadio v-model="columnAlign" value="left">{{ $t('left') }}</MkRadio>
|
|
|
|
<MkRadio v-model="columnAlign" value="center">{{ $t('center') }}</MkRadio>
|
2020-11-25 13:31:34 +01:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
</FormBase>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue';
|
|
|
|
import { faImage, faCog, faColumns } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import MkButton from '@/components/ui/button.vue';
|
|
|
|
import MkSwitch from '@/components/ui/switch.vue';
|
|
|
|
import MkSelect from '@/components/ui/select.vue';
|
|
|
|
import MkRadio from '@/components/ui/radio.vue';
|
|
|
|
import MkRadios from '@/components/ui/radios.vue';
|
|
|
|
import MkRange from '@/components/ui/range.vue';
|
|
|
|
import FormSwitch from '@/components/form/switch.vue';
|
|
|
|
import FormSelect from '@/components/form/select.vue';
|
|
|
|
import FormRadios from '@/components/form/radios.vue';
|
|
|
|
import FormBase from '@/components/form/base.vue';
|
|
|
|
import FormGroup from '@/components/form/group.vue';
|
|
|
|
import { clientDb, set } from '@/db';
|
|
|
|
import * as os from '@/os';
|
2020-12-19 02:55:52 +01:00
|
|
|
import { deckStore } from '@/ui/deck/deck-store';
|
2020-11-25 13:31:34 +01:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
MkButton,
|
|
|
|
MkSwitch,
|
|
|
|
MkSelect,
|
|
|
|
MkRadio,
|
|
|
|
MkRadios,
|
|
|
|
MkRange,
|
|
|
|
FormSwitch,
|
|
|
|
FormSelect,
|
|
|
|
FormRadios,
|
|
|
|
FormBase,
|
|
|
|
FormGroup,
|
|
|
|
},
|
|
|
|
|
|
|
|
emits: ['info'],
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
INFO: {
|
|
|
|
title: this.$t('deck'),
|
|
|
|
icon: faColumns
|
|
|
|
},
|
|
|
|
faImage, faCog,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
2020-12-19 02:55:52 +01:00
|
|
|
navWindow: deckStore.makeGetterSetter('navWindow'),
|
|
|
|
alwaysShowMainColumn: deckStore.makeGetterSetter('alwaysShowMainColumn'),
|
|
|
|
columnAlign: deckStore.makeGetterSetter('columnAlign'),
|
2020-11-25 13:31:34 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
this.$emit('info', this.INFO);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|