enhance: ダイアログのお知らせをアーカイブした時イベントが発生しないように・アーカイブされたお知らせをわかりやすく (MisskeyIO#153)

This commit is contained in:
まっちゃとーにゅ 2023-08-20 05:47:09 +09:00 committed by GitHub
parent 755d8419c9
commit eaae8e6bea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 13 deletions

View File

@ -98,6 +98,7 @@ export class AnnouncementService {
}
query.orderBy({
'announcement."isActive"': 'DESC',
'announcement."displayOrder"': 'DESC',
'announcement."createdAt"': 'DESC',
});
@ -166,21 +167,26 @@ export class AnnouncementService {
const packed = await this.announcementEntityService.pack(
announcement,
values.userId ? { id: values.userId } : null,
announcement.userId ? { id: announcement.userId } : null,
);
if (values.userId) {
if (announcement.isActive) {
if (announcement.userId) {
this.globalEventService.publishMainStream(
values.userId,
announcement.userId,
'announcementCreated',
{
announcement: packed,
},
);
} else {
this.globalEventService.publishBroadcastStream('announcementCreated', {
this.globalEventService.publishBroadcastStream(
'announcementCreated',
{
announcement: packed,
});
},
);
}
}
return {

View File

@ -28,6 +28,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<MkFolder v-for="announcement in announcements" :key="announcement.id ?? announcement._id" :defaultOpen="announcement.id == null">
<template #label>{{ announcement.title }}</template>
<template #icon>
<i v-if="announcement.id && !announcement.isActive" class="ti ti-archive"></i>
<i v-if="announcement.icon === 'info'" class="ti ti-info-circle"></i>
<i v-else-if="announcement.icon === 'warning'" class="ti ti-alert-triangle" style="color: var(--warn);"></i>
<i v-else-if="announcement.icon === 'error'" class="ti ti-circle-x" style="color: var(--error);"></i>