67 lines
1.5 KiB
Vue
67 lines
1.5 KiB
Vue
<template>
|
|
<span class="inline-flex">
|
|
<span class="select-wrapper">
|
|
<tippy
|
|
ref="fontSize"
|
|
interactive
|
|
tabindex="-1"
|
|
trigger="click"
|
|
theme="popover"
|
|
arrow
|
|
>
|
|
<template #trigger>
|
|
<ButtonSecondary
|
|
v-tippy="{ theme: 'tooltip' }"
|
|
:title="$t('settings.change_font_size')"
|
|
class="pr-8"
|
|
icon="format_size"
|
|
outline
|
|
:label="`${fontSizes.find(({ code }) => code == active.code).name}`"
|
|
/>
|
|
</template>
|
|
<SmartItem
|
|
v-for="(size, index) in fontSizes"
|
|
:key="`size-${index}`"
|
|
:label="size.name"
|
|
:info-icon="size.code === active.code ? 'done' : ''"
|
|
@click.native="
|
|
setActiveFont(size)
|
|
$refs.fontSize.tippy().hide()
|
|
"
|
|
/>
|
|
</tippy>
|
|
</span>
|
|
</span>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from "vue"
|
|
import {
|
|
HoppFontSizes,
|
|
getSettingSubject,
|
|
HoppFontSize,
|
|
settingsStore,
|
|
applySetting,
|
|
} from "~/newstore/settings"
|
|
|
|
export default Vue.extend({
|
|
data() {
|
|
return {
|
|
fontSizes: HoppFontSizes,
|
|
active: settingsStore.value.FONT_SIZE,
|
|
}
|
|
},
|
|
subscriptions() {
|
|
return {
|
|
active: getSettingSubject("FONT_SIZE"),
|
|
}
|
|
},
|
|
methods: {
|
|
setActiveFont(size: HoppFontSize) {
|
|
document.documentElement.setAttribute("data-font-size", size.code)
|
|
applySetting("FONT_SIZE", size)
|
|
},
|
|
},
|
|
})
|
|
</script>
|