egirlskey/src/client/app/common/scripts/compose-notification.ts

68 lines
1.6 KiB
TypeScript
Raw Normal View History

2018-04-02 04:41:25 +00:00
import getPostSummary from '../../../../renderers/get-post-summary';
import getReactionEmoji from '../../../../renderers/get-reaction-emoji';
2017-11-20 20:09:45 +00:00
type Notification = {
title: string;
body: string;
icon: string;
onclick?: any;
};
// TODO: i18n
export default function(type, data): Notification {
switch (type) {
case 'drive_file_created':
return {
title: 'ファイルがアップロードされました',
body: data.name,
icon: data.url + '?thumbnail&size=64'
};
case 'mention':
return {
title: `${data.user.name}さんから:`,
body: getPostSummary(data),
2018-03-29 05:48:47 +00:00
icon: data.user.avatarUrl + '?thumbnail&size=64'
2017-11-20 20:09:45 +00:00
};
case 'reply':
return {
title: `${data.user.name}さんから返信:`,
body: getPostSummary(data),
2018-03-29 05:48:47 +00:00
icon: data.user.avatarUrl + '?thumbnail&size=64'
2017-11-20 20:09:45 +00:00
};
case 'quote':
return {
title: `${data.user.name}さんが引用:`,
body: getPostSummary(data),
2018-03-29 05:48:47 +00:00
icon: data.user.avatarUrl + '?thumbnail&size=64'
2017-11-20 20:09:45 +00:00
};
case 'reaction':
return {
title: `${data.user.name}: ${getReactionEmoji(data.reaction)}:`,
body: getPostSummary(data.post),
2018-03-29 05:48:47 +00:00
icon: data.user.avatarUrl + '?thumbnail&size=64'
};
2017-11-20 20:09:45 +00:00
case 'unread_messaging_message':
return {
title: `${data.user.name}さんからメッセージ:`,
body: data.text, // TODO: getMessagingMessageSummary(data),
2018-03-29 05:48:47 +00:00
icon: data.user.avatarUrl + '?thumbnail&size=64'
2017-11-20 20:09:45 +00:00
};
2018-03-17 08:53:35 +00:00
case 'othello_invited':
return {
title: '対局への招待があります',
body: `${data.parent.name}さんから`,
2018-03-29 05:48:47 +00:00
icon: data.parent.avatarUrl + '?thumbnail&size=64'
2018-03-17 08:53:35 +00:00
};
2017-11-20 20:09:45 +00:00
default:
return null;
}
}