* feat(deck-ui): implement note notification * chore: remove notify in antenna * docs(changelog): 新着ノートをサウンドで通知する機能をdeck UIに追加 * fix: type error in test * lint: key order * fix: remove notify column * test: remove test for notify * chore: make sound selectable * fix: add license header * fix: add license header again * Unnecessary await Co-authored-by: かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> * ファイルを選択してください -> ファイルが選択されていません * fix: i18n忘れ * fix: i18n忘れ * pleaseSelectFile > fileNotSelected --------- Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com> Co-authored-by: かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com>
86 lines
2.1 KiB
Vue
86 lines
2.1 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<XColumn :menu="menu" :column="column" :isStacked="isStacked" :refresher="() => timeline.reloadTimeline()">
|
|
<template #header>
|
|
<i class="ti ti-badge"></i><span style="margin-left: 8px;">{{ column.name }}</span>
|
|
</template>
|
|
|
|
<MkTimeline v-if="column.roleId" ref="timeline" src="role" :role="column.roleId" @note="onNote"/>
|
|
</XColumn>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { onMounted, ref, shallowRef, watch } from 'vue';
|
|
import XColumn from './column.vue';
|
|
import { updateColumn, Column } from './deck-store.js';
|
|
import MkTimeline from '@/components/MkTimeline.vue';
|
|
import * as os from '@/os.js';
|
|
import { misskeyApi } from '@/scripts/misskey-api.js';
|
|
import { i18n } from '@/i18n.js';
|
|
import { MenuItem } from '@/types/menu.js';
|
|
import { SoundStore } from '@/store.js';
|
|
import { soundSettingsButton } from '@/ui/deck/tl-note-notification.js';
|
|
import * as sound from '@/scripts/sound.js';
|
|
|
|
const props = defineProps<{
|
|
column: Column;
|
|
isStacked: boolean;
|
|
}>();
|
|
|
|
const timeline = shallowRef<InstanceType<typeof MkTimeline>>();
|
|
const soundSetting = ref<SoundStore>(props.column.soundSetting ?? { type: null, volume: 1 });
|
|
|
|
onMounted(() => {
|
|
if (props.column.roleId == null) {
|
|
setRole();
|
|
}
|
|
});
|
|
|
|
watch(soundSetting, v => {
|
|
updateColumn(props.column.id, { soundSetting: v });
|
|
});
|
|
|
|
async function setRole() {
|
|
const roles = (await misskeyApi('roles/list')).filter(x => x.isExplorable);
|
|
const { canceled, result: role } = await os.select({
|
|
title: i18n.ts.role,
|
|
items: roles.map(x => ({
|
|
value: x, text: x.name,
|
|
})),
|
|
default: props.column.roleId,
|
|
});
|
|
if (canceled) return;
|
|
updateColumn(props.column.id, {
|
|
roleId: role.id,
|
|
});
|
|
}
|
|
|
|
function onNote() {
|
|
sound.playMisskeySfxFile(soundSetting.value);
|
|
}
|
|
|
|
const menu: MenuItem[] = [{
|
|
icon: 'ti ti-pencil',
|
|
text: i18n.ts.role,
|
|
action: setRole,
|
|
}, {
|
|
icon: 'ti ti-bell',
|
|
text: i18n.ts._deck.newNoteNotificationSettings,
|
|
action: () => soundSettingsButton(soundSetting),
|
|
}];
|
|
|
|
/*
|
|
function focus() {
|
|
timeline.focus();
|
|
}
|
|
|
|
defineExpose({
|
|
focus,
|
|
});
|
|
*/
|
|
</script>
|