enhance: ダイアログのお知らせをアーカイブした時イベントが発生しないように・アーカイブされたお知らせをわかりやすく (MisskeyIO#153)
This commit is contained in:
parent
e649651b45
commit
3996b61420
|
@ -75,8 +75,9 @@ export class AnnouncementService {
|
|||
|
||||
const packed = (await this.packMany([announcement]))[0];
|
||||
|
||||
if (values.userId) {
|
||||
this.globalEventService.publishMainStream(values.userId, 'announcementCreated', {
|
||||
if (announcement.isActive) {
|
||||
if (announcement.userId) {
|
||||
this.globalEventService.publishMainStream(announcement.userId, 'announcementCreated', {
|
||||
announcement: packed,
|
||||
});
|
||||
} else {
|
||||
|
@ -84,6 +85,7 @@ export class AnnouncementService {
|
|||
announcement: packed,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
raw: announcement,
|
||||
|
|
|
@ -13,6 +13,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>
|
||||
|
|
Loading…
Reference in a new issue