Sharkey/packages/client/src/pages/settings/deck.vue

108 lines
2.8 KiB
Vue
Raw Normal View History

<template>
<FormBase>
2020-12-26 15:41:00 +02:00
<FormGroup>
<template #label>{{ $ts.defaultNavigationBehaviour }}</template>
2021-09-29 18:50:45 +03:00
<FormSwitch v-model="navWindow">{{ $ts.openInWindow }}</FormSwitch>
2020-12-26 15:41:00 +02:00
</FormGroup>
2021-09-29 18:50:45 +03:00
<FormSwitch v-model="alwaysShowMainColumn">{{ $ts._deck.alwaysShowMainColumn }}</FormSwitch>
2020-12-26 15:41:00 +02: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>
2021-09-29 18:50:45 +03:00
<FormInput v-model="columnMargin" type="number">
2020-12-26 15:41:00 +02:00
<span>{{ $ts._deck.columnMargin }}</span>
<template #suffix>px</template>
</FormInput>
<FormLink @click="setProfile">{{ $ts._deck.profile }}<template #suffix>{{ profile }}</template></FormLink>
</FormBase>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
2021-11-11 19:02:25 +02:00
import FormSwitch from '@/components/debobigego/switch.vue';
import FormLink from '@/components/debobigego/link.vue';
import FormRadios from '@/components/debobigego/radios.vue';
import FormInput from '@/components/debobigego/input.vue';
import FormBase from '@/components/debobigego/base.vue';
import FormGroup from '@/components/debobigego/group.vue';
import { deckStore } from '@/ui/deck/deck-store';
import * as os from '@/os';
import { unisonReload } from '@/scripts/unison-reload';
import * as symbols from '@/symbols';
export default defineComponent({
components: {
FormSwitch,
FormLink,
2020-12-26 15:41:00 +02:00
FormInput,
FormRadios,
FormBase,
FormGroup,
},
emits: ['info'],
data() {
return {
2021-04-10 06:54:12 +03:00
[symbols.PAGE_INFO]: {
2020-12-26 03:47:36 +02:00
title: this.$ts.deck,
2021-09-29 18:50:45 +03:00
icon: 'fas fa-columns',
bg: 'var(--bg)',
},
}
},
computed: {
navWindow: deckStore.makeGetterSetter('navWindow'),
alwaysShowMainColumn: deckStore.makeGetterSetter('alwaysShowMainColumn'),
columnAlign: deckStore.makeGetterSetter('columnAlign'),
2020-12-26 15:41:00 +02:00
columnMargin: deckStore.makeGetterSetter('columnMargin'),
columnHeaderHeight: deckStore.makeGetterSetter('columnHeaderHeight'),
profile: deckStore.makeGetterSetter('profile'),
},
2020-12-27 14:16:51 +02:00
watch: {
async navWindow() {
const { canceled } = await os.dialog({
type: 'info',
text: this.$ts.reloadToApplySetting,
showCancelButton: true
});
if (canceled) return;
unisonReload();
2020-12-27 14:16:51 +02:00
}
},
mounted() {
2021-04-10 06:54:12 +03:00
this.$emit('info', this[symbols.PAGE_INFO]);
},
methods: {
async setProfile() {
const { canceled, result: name } = await os.dialog({
title: this.$ts._deck.profile,
input: {
allowEmpty: false
}
});
if (canceled) return;
this.profile = name;
unisonReload();
}
}
});
</script>