2018-07-07 05:19:00 -05:00
|
|
|
import getUserName from './get-user-name';
|
2018-04-07 12:30:37 -05:00
|
|
|
import getNoteSummary from './get-note-summary';
|
2017-11-10 09:27:02 -06:00
|
|
|
import getReactionEmoji from './get-reaction-emoji';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 通知を表す文字列を取得します。
|
|
|
|
* @param notification 通知
|
|
|
|
*/
|
2017-11-10 10:00:14 -06:00
|
|
|
export default function(notification: any): string {
|
2017-11-10 09:27:02 -06:00
|
|
|
switch (notification.type) {
|
|
|
|
case 'follow':
|
2018-04-05 11:36:34 -05:00
|
|
|
return `${getUserName(notification.user)}にフォローされました`;
|
2017-11-10 09:27:02 -06:00
|
|
|
case 'mention':
|
2018-04-07 12:30:37 -05:00
|
|
|
return `言及されました:\n${getUserName(notification.user)}「${getNoteSummary(notification.note)}」`;
|
2017-11-10 09:27:02 -06:00
|
|
|
case 'reply':
|
2018-04-07 12:30:37 -05:00
|
|
|
return `返信されました:\n${getUserName(notification.user)}「${getNoteSummary(notification.note)}」`;
|
|
|
|
case 'renote':
|
|
|
|
return `Renoteされました:\n${getUserName(notification.user)}「${getNoteSummary(notification.note)}」`;
|
2017-11-10 09:27:02 -06:00
|
|
|
case 'quote':
|
2018-04-07 12:30:37 -05:00
|
|
|
return `引用されました:\n${getUserName(notification.user)}「${getNoteSummary(notification.note)}」`;
|
2017-11-10 09:27:02 -06:00
|
|
|
case 'reaction':
|
2018-04-07 12:30:37 -05:00
|
|
|
return `リアクションされました:\n${getUserName(notification.user)} <${getReactionEmoji(notification.reaction)}>「${getNoteSummary(notification.note)}」`;
|
2017-11-10 09:27:02 -06:00
|
|
|
case 'poll_vote':
|
2018-04-07 12:30:37 -05:00
|
|
|
return `投票されました:\n${getUserName(notification.user)}「${getNoteSummary(notification.note)}」`;
|
2017-11-10 09:27:02 -06:00
|
|
|
default:
|
|
|
|
return `<不明な通知タイプ: ${notification.type}>`;
|
|
|
|
}
|
|
|
|
}
|