0db88a5a3b
* enhane: unison-reloadに指定したパスに移動できるように * null * null * feat: ログインするアカウントのIDをクエリ文字列で指定する機能 * null * await? * rename * rename * Update read.ts * merge * get-note-summary * fix * swパッケージに * add missing packages * fix getNoteSummary * add webpack-cli * ✌️ * remove plugins * sw-inject分離したがテストしてない * fix notification.vue * remove a blank line * disconnect intersection observer * disconnect2 * fix notification.vue * remove a blank line * disconnect intersection observer * disconnect2 * fix * ✌️ * clean up config * typesを戻した * backend/src/web/index.ts * notification-badges * add scripts * change create-notification.ts * Update packages/client/src/components/notification.vue Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> * disconnect * oops * Failed to load the script unexpectedly回避 sw.jsとlib.tsを分離してみた * truncate notification * Update packages/client/src/ui/_common_/common.vue Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> * clean up * clean up * refactor * キャッシュ対策 * Truncate push notification message * fix * wip * clean up * migration * migration * comment * move soundConfigStore * ✌️ * clean up * クライアントがあったらストリームに接続しているということなので通知しない判定の位置を修正 * components/drive-file-thumbnail.vue * components/drive-select-dialog.vue * components/drive-window.vue * merge * fix * remove reversi setting * Service Workerのビルドにesbuildを使うようにする * return createEmptyNotification() * fix * fix * i18n.ts * update * ✌️ * remove ts-loader * fix * fix * enhance: Service Workerを常に登録するように * pollEnded * pollEnded * URLをsw.jsに戻す * clean up * clean up * update sounds.vue * update * fix type * ✌️ * ;v; --------- Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
74 lines
2.4 KiB
Vue
74 lines
2.4 KiB
Vue
<template>
|
|
<div class="_gaps_m">
|
|
<MkRange v-model="masterVolume" :min="0" :max="1" :step="0.05" :text-converter="(v) => `${Math.floor(v * 100)}%`">
|
|
<template #label>{{ i18n.ts.masterVolume }}</template>
|
|
</MkRange>
|
|
|
|
<FormSection>
|
|
<template #label>{{ i18n.ts.sounds }}</template>
|
|
<div class="_gaps_s">
|
|
<MkFolder v-for="type in soundsKeys" :key="type">
|
|
<template #label>{{ i18n.t('_sfx.' + type) }}</template>
|
|
<template #suffix>{{ sounds[type].type ?? i18n.ts.none }}</template>
|
|
|
|
<XSound :type="sounds[type].type" :volume="sounds[type].volume" @update="(res) => updated(type, res)"/>
|
|
</MkFolder>
|
|
</div>
|
|
</FormSection>
|
|
|
|
<MkButton danger @click="reset()"><i class="ti ti-reload"></i> {{ i18n.ts.default }}</MkButton>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { Ref, computed, ref } from 'vue';
|
|
import XSound from './sounds.sound.vue';
|
|
import MkRange from '@/components/MkRange.vue';
|
|
import MkButton from '@/components/MkButton.vue';
|
|
import FormSection from '@/components/form/section.vue';
|
|
import MkFolder from '@/components/MkFolder.vue';
|
|
import { soundConfigStore } from '@/scripts/sound';
|
|
import { i18n } from '@/i18n';
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
|
|
|
const masterVolume = computed(soundConfigStore.makeGetterSetter('sound_masterVolume'));
|
|
|
|
const soundsKeys = ['note', 'noteMy', 'notification', 'chat', 'chatBg', 'antenna', 'channel'] as const;
|
|
|
|
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,
|
|
});
|
|
|
|
async function updated(type: keyof typeof sounds.value, sound) {
|
|
const v = {
|
|
type: sound.type,
|
|
volume: sound.volume,
|
|
};
|
|
|
|
soundConfigStore.set(`sound_${type}`, v);
|
|
sounds.value[type] = v;
|
|
}
|
|
|
|
function reset() {
|
|
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);
|
|
sounds.value[sound] = v;
|
|
}
|
|
}
|
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
definePageMetadata({
|
|
title: i18n.ts.sounds,
|
|
icon: 'ti ti-music',
|
|
});
|
|
</script>
|