2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
<template>
|
2023-01-06 04:40:17 +00:00
|
|
|
<div class="_gaps_m">
|
2023-05-19 11:52:15 +00:00
|
|
|
<MkRange v-model="masterVolume" :min="0" :max="1" :step="0.05" :textConverter="(v) => `${Math.floor(v * 100)}%`">
|
2022-05-05 13:51:05 +00:00
|
|
|
<template #label>{{ i18n.ts.masterVolume }}</template>
|
2023-01-07 06:09:46 +00:00
|
|
|
</MkRange>
|
2020-11-25 12:31:34 +00:00
|
|
|
|
2021-11-28 11:07:37 +00:00
|
|
|
<FormSection>
|
2022-05-05 13:51:05 +00:00
|
|
|
<template #label>{{ i18n.ts.sounds }}</template>
|
2023-01-06 04:40:17 +00:00
|
|
|
<div class="_gaps_s">
|
2023-04-12 01:39:57 +00:00
|
|
|
<MkFolder v-for="type in soundsKeys" :key="type">
|
2023-04-01 05:01:57 +00:00
|
|
|
<template #label>{{ i18n.t('_sfx.' + type) }}</template>
|
2023-01-05 12:04:56 +00:00
|
|
|
<template #suffix>{{ sounds[type].type ?? i18n.ts.none }}</template>
|
2022-12-22 00:01:58 +00:00
|
|
|
|
2023-01-05 12:04:56 +00:00
|
|
|
<XSound :type="sounds[type].type" :volume="sounds[type].volume" @update="(res) => updated(type, res)"/>
|
2023-01-09 00:41:25 +00:00
|
|
|
</MkFolder>
|
2023-01-05 12:04:56 +00:00
|
|
|
</div>
|
2021-11-28 11:07:37 +00:00
|
|
|
</FormSection>
|
2020-11-25 12:31:34 +00:00
|
|
|
|
2023-01-06 00:41:14 +00:00
|
|
|
<MkButton danger @click="reset()"><i class="ti ti-reload"></i> {{ i18n.ts.default }}</MkButton>
|
2021-11-28 11:07:37 +00:00
|
|
|
</div>
|
2020-10-17 11:12:00 +00:00
|
|
|
</template>
|
|
|
|
|
2022-05-05 13:51:05 +00:00
|
|
|
<script lang="ts" setup>
|
2023-04-12 01:39:57 +00:00
|
|
|
import { Ref, computed, ref } from 'vue';
|
2022-12-22 00:01:58 +00:00
|
|
|
import XSound from './sounds.sound.vue';
|
2023-01-07 06:09:46 +00:00
|
|
|
import MkRange from '@/components/MkRange.vue';
|
2023-01-06 00:41:14 +00:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2021-11-28 11:07:37 +00:00
|
|
|
import FormSection from '@/components/form/section.vue';
|
2023-01-09 00:41:25 +00:00
|
|
|
import MkFolder from '@/components/MkFolder.vue';
|
2023-04-12 01:39:57 +00:00
|
|
|
import { soundConfigStore } from '@/scripts/sound';
|
2022-05-05 13:51:05 +00:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 08:38:49 +00:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2022-05-05 13:51:05 +00:00
|
|
|
|
2023-04-12 01:39:57 +00:00
|
|
|
const masterVolume = computed(soundConfigStore.makeGetterSetter('sound_masterVolume'));
|
2022-05-05 13:51:05 +00:00
|
|
|
|
2023-04-12 01:39:57 +00:00
|
|
|
const soundsKeys = ['note', 'noteMy', 'notification', 'chat', 'chatBg', 'antenna', 'channel'] as const;
|
2022-05-05 13:51:05 +00:00
|
|
|
|
2023-04-12 01:39:57 +00:00
|
|
|
const sounds = ref<Record<typeof soundsKeys[number], Ref<any>>>({
|
|
|
|
note: soundConfigStore.reactiveState.sound_note,
|
|
|
|
noteMy: soundConfigStore.reactiveState.sound_noteMy,
|
|
|
|
notification: soundConfigStore.reactiveState.sound_notification,
|
|
|
|
chat: soundConfigStore.reactiveState.sound_chat,
|
|
|
|
chatBg: soundConfigStore.reactiveState.sound_chatBg,
|
|
|
|
antenna: soundConfigStore.reactiveState.sound_antenna,
|
|
|
|
channel: soundConfigStore.reactiveState.sound_channel,
|
2022-05-05 13:51:05 +00:00
|
|
|
});
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2023-04-12 01:39:57 +00:00
|
|
|
async function updated(type: keyof typeof sounds.value, sound) {
|
2022-05-05 13:51:05 +00:00
|
|
|
const v = {
|
2022-12-22 00:01:58 +00:00
|
|
|
type: sound.type,
|
|
|
|
volume: sound.volume,
|
2022-05-05 13:51:05 +00:00
|
|
|
};
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2023-04-12 01:39:57 +00:00
|
|
|
soundConfigStore.set(`sound_${type}`, v);
|
2022-05-05 13:51:05 +00:00
|
|
|
sounds.value[type] = v;
|
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2022-05-05 13:51:05 +00:00
|
|
|
function reset() {
|
2023-04-12 01:39:57 +00:00
|
|
|
for (const sound of Object.keys(sounds.value) as Array<keyof typeof sounds.value>) {
|
|
|
|
const v = soundConfigStore.def[`sound_${sound}`].default;
|
|
|
|
soundConfigStore.set(`sound_${sound}`, v);
|
2022-05-05 13:51:05 +00:00
|
|
|
sounds.value[sound] = v;
|
|
|
|
}
|
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.sounds,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-music',
|
2020-10-17 11:12:00 +00:00
|
|
|
});
|
|
|
|
</script>
|