mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 19:13:08 +02:00
becc4d2e54
* wip * fix * create migration * oops * fix front const * changelog * fix type * fix * wip * Revert "wip" This reverts commit 6cdb3600e280be3550b8b6353b2c7930f7b31438. * enumのこす * fix --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
90 lines
2.6 KiB
Vue
90 lines
2.6 KiB
Vue
<template>
|
|
<MkModalWindow
|
|
ref="dialog"
|
|
:width="400"
|
|
:height="450"
|
|
:with-ok-button="true"
|
|
:ok-button-disabled="false"
|
|
@ok="ok()"
|
|
@close="dialog?.close()"
|
|
@closed="emit('closed')"
|
|
>
|
|
<template #header>{{ i18n.ts.notificationSetting }}</template>
|
|
|
|
<MkSpacer :margin-min="20" :margin-max="28">
|
|
<div class="_gaps_m">
|
|
<template v-if="showGlobalToggle">
|
|
<MkSwitch v-model="useGlobalSetting">
|
|
{{ i18n.ts.useGlobalSetting }}
|
|
<template #caption>{{ i18n.ts.useGlobalSettingDesc }}</template>
|
|
</MkSwitch>
|
|
</template>
|
|
<template v-if="!useGlobalSetting">
|
|
<MkInfo>{{ i18n.ts.notificationSettingDesc }}</MkInfo>
|
|
<div class="_buttons">
|
|
<MkButton inline @click="disableAll">{{ i18n.ts.disableAll }}</MkButton>
|
|
<MkButton inline @click="enableAll">{{ i18n.ts.enableAll }}</MkButton>
|
|
</div>
|
|
<MkSwitch v-for="ntype in notificationTypes" :key="ntype" v-model="typesMap[ntype].value">{{ i18n.t(`_notification._types.${ntype}`) }}</MkSwitch>
|
|
</template>
|
|
</div>
|
|
</MkSpacer>
|
|
</MkModalWindow>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref, Ref } from 'vue';
|
|
import MkSwitch from './MkSwitch.vue';
|
|
import MkInfo from './MkInfo.vue';
|
|
import MkButton from './MkButton.vue';
|
|
import MkModalWindow from '@/components/MkModalWindow.vue';
|
|
import { notificationTypes } from '@/const';
|
|
import { i18n } from '@/i18n';
|
|
|
|
type TypesMap = Record<typeof notificationTypes[number], Ref<boolean>>
|
|
|
|
const emit = defineEmits<{
|
|
(ev: 'done', v: { includingTypes: string[] | null }): void,
|
|
(ev: 'closed'): void,
|
|
}>();
|
|
|
|
const props = withDefaults(defineProps<{
|
|
includingTypes?: typeof notificationTypes[number][] | null;
|
|
showGlobalToggle?: boolean;
|
|
}>(), {
|
|
includingTypes: () => [],
|
|
showGlobalToggle: true,
|
|
});
|
|
|
|
let includingTypes = $computed(() => props.includingTypes?.filter(x => notificationTypes.includes(x)) ?? []);
|
|
|
|
const dialog = $shallowRef<InstanceType<typeof MkModalWindow>>();
|
|
|
|
const typesMap: TypesMap = notificationTypes.reduce((p, t) => ({ ...p, [t]: ref<boolean>(includingTypes.includes(t)) }), {} as any);
|
|
let useGlobalSetting = $ref((includingTypes === null || includingTypes.length === 0) && props.showGlobalToggle);
|
|
|
|
function ok() {
|
|
if (useGlobalSetting) {
|
|
emit('done', { includingTypes: null });
|
|
} else {
|
|
emit('done', {
|
|
includingTypes: (Object.keys(typesMap) as typeof notificationTypes[number][])
|
|
.filter(type => typesMap[type].value),
|
|
});
|
|
}
|
|
|
|
if (dialog) dialog.close();
|
|
}
|
|
|
|
function disableAll() {
|
|
for (const type of notificationTypes) {
|
|
typesMap[type].value = false;
|
|
}
|
|
}
|
|
|
|
function enableAll() {
|
|
for (const type of notificationTypes) {
|
|
typesMap[type].value = true;
|
|
}
|
|
}
|
|
</script>
|