2017-11-10 09:27:02 -06:00
|
|
|
import getPostSummary from './get-post-summary';
|
|
|
|
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':
|
2017-11-10 10:00:14 -06:00
|
|
|
return `${notification.user.name}にフォローされました`;
|
2017-11-10 09:27:02 -06:00
|
|
|
case 'mention':
|
2017-11-10 10:00:14 -06:00
|
|
|
return `言及されました: ${notification.user.name}「${getPostSummary(notification.post)}」`;
|
2017-11-10 09:27:02 -06:00
|
|
|
case 'reply':
|
2017-11-10 10:00:14 -06:00
|
|
|
return `返信されました: ${notification.user.name}「${getPostSummary(notification.post)}」`;
|
2017-11-10 09:27:02 -06:00
|
|
|
case 'repost':
|
2017-11-10 10:00:14 -06:00
|
|
|
return `Repostされました: ${notification.user.name}「${getPostSummary(notification.post)}」`;
|
2017-11-10 09:27:02 -06:00
|
|
|
case 'quote':
|
2017-11-10 10:00:14 -06:00
|
|
|
return `引用されました: ${notification.user.name}「${getPostSummary(notification.post)}」`;
|
2017-11-10 09:27:02 -06:00
|
|
|
case 'reaction':
|
2017-11-10 10:00:14 -06:00
|
|
|
return `リアクションされました: ${notification.user.name} <${getReactionEmoji(notification.reaction)}>「${getPostSummary(notification.post)}」`;
|
2017-11-10 09:27:02 -06:00
|
|
|
case 'poll_vote':
|
2017-11-10 10:00:14 -06:00
|
|
|
return `投票されました: ${notification.user.name}「${getPostSummary(notification.post)}」`;
|
2017-11-10 09:27:02 -06:00
|
|
|
default:
|
|
|
|
return `<不明な通知タイプ: ${notification.type}>`;
|
|
|
|
}
|
|
|
|
}
|