28e9d4e483
* feat: フォローされた際のメッセージを設定できるようにする Resolve #14425 * Update CHANGELOG.md * 既にフォローしているユーザーのメッセージも見れるように * Update packages/frontend/src/components/MkNotification.vue Co-authored-by: かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> * fix indent * Update users.ts * wip * Update users.ts --------- Co-authored-by: かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com>
136 lines
2.6 KiB
TypeScript
136 lines
2.6 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { MiUser } from './User.js';
|
|
import { MiNote } from './Note.js';
|
|
import { MiAccessToken } from './AccessToken.js';
|
|
import { MiRole } from './Role.js';
|
|
import { MiDriveFile } from './DriveFile.js';
|
|
import { userExportableEntities } from '@/types.js';
|
|
|
|
export type MiNotification = {
|
|
type: 'note';
|
|
id: string;
|
|
createdAt: string;
|
|
notifierId: MiUser['id'];
|
|
noteId: MiNote['id'];
|
|
} | {
|
|
type: 'follow';
|
|
id: string;
|
|
createdAt: string;
|
|
notifierId: MiUser['id'];
|
|
} | {
|
|
type: 'mention';
|
|
id: string;
|
|
createdAt: string;
|
|
notifierId: MiUser['id'];
|
|
noteId: MiNote['id'];
|
|
} | {
|
|
type: 'reply';
|
|
id: string;
|
|
createdAt: string;
|
|
notifierId: MiUser['id'];
|
|
noteId: MiNote['id'];
|
|
} | {
|
|
type: 'renote';
|
|
id: string;
|
|
createdAt: string;
|
|
notifierId: MiUser['id'];
|
|
noteId: MiNote['id'];
|
|
targetNoteId: MiNote['id'];
|
|
} | {
|
|
type: 'quote';
|
|
id: string;
|
|
createdAt: string;
|
|
notifierId: MiUser['id'];
|
|
noteId: MiNote['id'];
|
|
} | {
|
|
type: 'reaction';
|
|
id: string;
|
|
createdAt: string;
|
|
notifierId: MiUser['id'];
|
|
noteId: MiNote['id'];
|
|
reaction: string;
|
|
} | {
|
|
type: 'pollEnded';
|
|
id: string;
|
|
createdAt: string;
|
|
notifierId: MiUser['id'];
|
|
noteId: MiNote['id'];
|
|
} | {
|
|
type: 'receiveFollowRequest';
|
|
id: string;
|
|
createdAt: string;
|
|
notifierId: MiUser['id'];
|
|
} | {
|
|
type: 'followRequestAccepted';
|
|
id: string;
|
|
createdAt: string;
|
|
notifierId: MiUser['id'];
|
|
message: string | null;
|
|
} | {
|
|
type: 'roleAssigned';
|
|
id: string;
|
|
createdAt: string;
|
|
roleId: MiRole['id'];
|
|
} | {
|
|
type: 'achievementEarned';
|
|
id: string;
|
|
createdAt: string;
|
|
achievement: string;
|
|
} | {
|
|
type: 'exportCompleted';
|
|
id: string;
|
|
createdAt: string;
|
|
exportedEntity: typeof userExportableEntities[number];
|
|
fileId: MiDriveFile['id'];
|
|
} | {
|
|
type: 'app';
|
|
id: string;
|
|
createdAt: string;
|
|
|
|
/**
|
|
* アプリ通知のbody
|
|
*/
|
|
customBody: string;
|
|
|
|
/**
|
|
* アプリ通知のheader
|
|
* (省略時はアプリ名で表示されることを期待)
|
|
*/
|
|
customHeader: string | null;
|
|
|
|
/**
|
|
* アプリ通知のicon(URL)
|
|
* (省略時はアプリアイコンで表示されることを期待)
|
|
*/
|
|
customIcon: string | null;
|
|
|
|
/**
|
|
* アプリ通知のアプリ(のトークン)
|
|
*/
|
|
appAccessTokenId: MiAccessToken['id'] | null;
|
|
} | {
|
|
type: 'test';
|
|
id: string;
|
|
createdAt: string;
|
|
};
|
|
|
|
export type MiGroupedNotification = MiNotification | {
|
|
type: 'reaction:grouped';
|
|
id: string;
|
|
createdAt: string;
|
|
noteId: MiNote['id'];
|
|
reactions: {
|
|
userId: string;
|
|
reaction: string;
|
|
}[];
|
|
} | {
|
|
type: 'renote:grouped';
|
|
id: string;
|
|
createdAt: string;
|
|
noteId: MiNote['id'];
|
|
userIds: string[];
|
|
};
|