2020-11-25 13:31:34 +01:00
|
|
|
<template>
|
|
|
|
<FormBase>
|
2020-12-26 14:41:00 +01:00
|
|
|
<FormGroup>
|
|
|
|
<template #label>{{ $ts.defaultNavigationBehaviour }}</template>
|
|
|
|
<FormSwitch v-model:value="navWindow">{{ $ts.openInWindow }}</FormSwitch>
|
|
|
|
</FormGroup>
|
2020-11-25 13:31:34 +01:00
|
|
|
|
2020-12-26 14:41:00 +01:00
|
|
|
<FormSwitch v-model:value="alwaysShowMainColumn">{{ $ts._deck.alwaysShowMainColumn }}</FormSwitch>
|
2020-11-25 13:31:34 +01:00
|
|
|
|
2020-12-26 14:41:00 +01:00
|
|
|
<FormRadios v-model="columnAlign">
|
|
|
|
<template #desc>{{ $ts._deck.columnAlign }}</template>
|
|
|
|
<option value="left">{{ $ts.left }}</option>
|
|
|
|
<option value="center">{{ $ts.center }}</option>
|
|
|
|
</FormRadios>
|
|
|
|
|
|
|
|
<FormRadios v-model="columnHeaderHeight">
|
|
|
|
<template #desc>{{ $ts._deck.columnHeaderHeight }}</template>
|
|
|
|
<option :value="42">{{ $ts.narrow }}</option>
|
|
|
|
<option :value="45">{{ $ts.medium }}</option>
|
|
|
|
<option :value="48">{{ $ts.wide }}</option>
|
|
|
|
</FormRadios>
|
|
|
|
|
|
|
|
<FormInput v-model:value="columnMargin" type="number">
|
|
|
|
<span>{{ $ts._deck.columnMargin }}</span>
|
|
|
|
<template #suffix>px</template>
|
|
|
|
</FormInput>
|
2020-11-25 13:31:34 +01:00
|
|
|
</FormBase>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue';
|
|
|
|
import { faImage, faCog, faColumns } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import FormSwitch from '@/components/form/switch.vue';
|
|
|
|
import FormSelect from '@/components/form/select.vue';
|
|
|
|
import FormRadios from '@/components/form/radios.vue';
|
2020-12-26 14:41:00 +01:00
|
|
|
import FormInput from '@/components/form/input.vue';
|
2020-11-25 13:31:34 +01:00
|
|
|
import FormBase from '@/components/form/base.vue';
|
|
|
|
import FormGroup from '@/components/form/group.vue';
|
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: {
|
|
|
|
FormSwitch,
|
|
|
|
FormSelect,
|
2020-12-26 14:41:00 +01:00
|
|
|
FormInput,
|
2020-11-25 13:31:34 +01:00
|
|
|
FormRadios,
|
|
|
|
FormBase,
|
|
|
|
FormGroup,
|
|
|
|
},
|
|
|
|
|
|
|
|
emits: ['info'],
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
INFO: {
|
2020-12-26 02:47:36 +01:00
|
|
|
title: this.$ts.deck,
|
2020-11-25 13:31:34 +01:00
|
|
|
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-12-26 14:41:00 +01:00
|
|
|
columnMargin: deckStore.makeGetterSetter('columnMargin'),
|
|
|
|
columnHeaderHeight: deckStore.makeGetterSetter('columnHeaderHeight'),
|
2020-11-25 13:31:34 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
this.$emit('info', this.INFO);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|