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>
|
2021-01-11 12:38:34 +01:00
|
|
|
|
|
|
|
<FormLink @click="setProfile">{{ $ts._deck.profile }}<template #suffix>{{ profile }}</template></FormLink>
|
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';
|
2021-03-23 09:30:14 +01:00
|
|
|
import FormSwitch from '@client/components/form/switch.vue';
|
|
|
|
import FormLink from '@client/components/form/link.vue';
|
|
|
|
import FormRadios from '@client/components/form/radios.vue';
|
|
|
|
import FormInput from '@client/components/form/input.vue';
|
|
|
|
import FormBase from '@client/components/form/base.vue';
|
|
|
|
import FormGroup from '@client/components/form/group.vue';
|
|
|
|
import { deckStore } from '@client/ui/deck/deck-store';
|
|
|
|
import * as os from '@client/os';
|
|
|
|
import { unisonReload } from '@client/scripts/unison-reload';
|
2021-04-10 05:54:12 +02:00
|
|
|
import * as symbols from '@client/symbols';
|
2020-11-25 13:31:34 +01:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
FormSwitch,
|
2021-01-11 12:38:34 +01:00
|
|
|
FormLink,
|
2020-12-26 14:41:00 +01:00
|
|
|
FormInput,
|
2020-11-25 13:31:34 +01:00
|
|
|
FormRadios,
|
|
|
|
FormBase,
|
|
|
|
FormGroup,
|
|
|
|
},
|
|
|
|
|
|
|
|
emits: ['info'],
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
2021-04-10 05:54:12 +02:00
|
|
|
[symbols.PAGE_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'),
|
2021-01-11 12:38:34 +01:00
|
|
|
profile: deckStore.makeGetterSetter('profile'),
|
2020-11-25 13:31:34 +01:00
|
|
|
},
|
|
|
|
|
2020-12-27 13:16:51 +01:00
|
|
|
watch: {
|
|
|
|
async navWindow() {
|
|
|
|
const { canceled } = await os.dialog({
|
|
|
|
type: 'info',
|
|
|
|
text: this.$ts.reloadToApplySetting,
|
|
|
|
showCancelButton: true
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
2021-02-17 13:36:56 +01:00
|
|
|
unisonReload();
|
2020-12-27 13:16:51 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-11-25 13:31:34 +01:00
|
|
|
mounted() {
|
2021-04-10 05:54:12 +02:00
|
|
|
this.$emit('info', this[symbols.PAGE_INFO]);
|
2020-11-25 13:31:34 +01:00
|
|
|
},
|
2021-01-11 12:38:34 +01:00
|
|
|
|
|
|
|
methods: {
|
|
|
|
async setProfile() {
|
|
|
|
const { canceled, result: name } = await os.dialog({
|
|
|
|
title: this.$ts._deck.profile,
|
|
|
|
input: {
|
|
|
|
allowEmpty: false
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
this.profile = name;
|
2021-02-17 13:36:56 +01:00
|
|
|
unisonReload();
|
2021-01-11 12:38:34 +01:00
|
|
|
}
|
|
|
|
}
|
2020-11-25 13:31:34 +01:00
|
|
|
});
|
|
|
|
</script>
|