2020-11-25 06:31:34 -06:00
|
|
|
<template>
|
|
|
|
<FormBase>
|
2020-12-26 07:41:00 -06:00
|
|
|
<FormGroup>
|
|
|
|
<template #label>{{ $ts.defaultNavigationBehaviour }}</template>
|
|
|
|
<FormSwitch v-model:value="navWindow">{{ $ts.openInWindow }}</FormSwitch>
|
|
|
|
</FormGroup>
|
2020-11-25 06:31:34 -06:00
|
|
|
|
2020-12-26 07:41:00 -06:00
|
|
|
<FormSwitch v-model:value="alwaysShowMainColumn">{{ $ts._deck.alwaysShowMainColumn }}</FormSwitch>
|
2020-11-25 06:31:34 -06:00
|
|
|
|
2020-12-26 07:41:00 -06: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 05:38:34 -06:00
|
|
|
|
|
|
|
<FormLink @click="setProfile">{{ $ts._deck.profile }}<template #suffix>{{ profile }}</template></FormLink>
|
2020-11-25 06:31:34 -06: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';
|
2021-01-11 05:38:34 -06:00
|
|
|
import FormLink from '@/components/form/link.vue';
|
2020-11-25 06:31:34 -06:00
|
|
|
import FormRadios from '@/components/form/radios.vue';
|
2020-12-26 07:41:00 -06:00
|
|
|
import FormInput from '@/components/form/input.vue';
|
2020-11-25 06:31:34 -06:00
|
|
|
import FormBase from '@/components/form/base.vue';
|
|
|
|
import FormGroup from '@/components/form/group.vue';
|
2020-12-18 19:55:52 -06:00
|
|
|
import { deckStore } from '@/ui/deck/deck-store';
|
2020-12-27 06:16:51 -06:00
|
|
|
import * as os from '@/os';
|
2020-11-25 06:31:34 -06:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
FormSwitch,
|
2021-01-11 05:38:34 -06:00
|
|
|
FormLink,
|
2020-12-26 07:41:00 -06:00
|
|
|
FormInput,
|
2020-11-25 06:31:34 -06:00
|
|
|
FormRadios,
|
|
|
|
FormBase,
|
|
|
|
FormGroup,
|
|
|
|
},
|
|
|
|
|
|
|
|
emits: ['info'],
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
INFO: {
|
2020-12-25 19:47:36 -06:00
|
|
|
title: this.$ts.deck,
|
2020-11-25 06:31:34 -06:00
|
|
|
icon: faColumns
|
|
|
|
},
|
|
|
|
faImage, faCog,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
2020-12-18 19:55:52 -06:00
|
|
|
navWindow: deckStore.makeGetterSetter('navWindow'),
|
|
|
|
alwaysShowMainColumn: deckStore.makeGetterSetter('alwaysShowMainColumn'),
|
|
|
|
columnAlign: deckStore.makeGetterSetter('columnAlign'),
|
2020-12-26 07:41:00 -06:00
|
|
|
columnMargin: deckStore.makeGetterSetter('columnMargin'),
|
|
|
|
columnHeaderHeight: deckStore.makeGetterSetter('columnHeaderHeight'),
|
2021-01-11 05:38:34 -06:00
|
|
|
profile: deckStore.makeGetterSetter('profile'),
|
2020-11-25 06:31:34 -06:00
|
|
|
},
|
|
|
|
|
2020-12-27 06:16:51 -06:00
|
|
|
watch: {
|
|
|
|
async navWindow() {
|
|
|
|
const { canceled } = await os.dialog({
|
|
|
|
type: 'info',
|
|
|
|
text: this.$ts.reloadToApplySetting,
|
|
|
|
showCancelButton: true
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
location.reload();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-11-25 06:31:34 -06:00
|
|
|
mounted() {
|
|
|
|
this.$emit('info', this.INFO);
|
|
|
|
},
|
2021-01-11 05:38:34 -06: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;
|
|
|
|
location.reload();
|
|
|
|
}
|
|
|
|
}
|
2020-11-25 06:31:34 -06:00
|
|
|
});
|
|
|
|
</script>
|