diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-11-21 05:09:45 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-11-21 05:09:45 +0900 |
| commit | c598a9cba2d4cdecf2aec3dcde1a893ee039bce3 (patch) | |
| tree | ecd8d77ef22f487296b7ae0b3aba44d79eaf1506 /src/web/app/common/scripts/compose-notification.ts | |
| parent | Merge remote-tracking branch 'refs/remotes/origin/master' into sw (diff) | |
| download | sharkey-c598a9cba2d4cdecf2aec3dcde1a893ee039bce3.tar.gz sharkey-c598a9cba2d4cdecf2aec3dcde1a893ee039bce3.tar.bz2 sharkey-c598a9cba2d4cdecf2aec3dcde1a893ee039bce3.zip | |
wip
Diffstat (limited to 'src/web/app/common/scripts/compose-notification.ts')
| -rw-r--r-- | src/web/app/common/scripts/compose-notification.ts | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/src/web/app/common/scripts/compose-notification.ts b/src/web/app/common/scripts/compose-notification.ts new file mode 100644 index 0000000000..181dca734f --- /dev/null +++ b/src/web/app/common/scripts/compose-notification.ts @@ -0,0 +1,52 @@ +import getPostSummary from '../../../../common/get-post-summary'; + +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), + icon: data.user.avatar_url + '?thumbnail&size=64' + }; + + case 'reply': + return { + title: `${data.user.name}さんから返信:`, + body: getPostSummary(data), + icon: data.user.avatar_url + '?thumbnail&size=64' + }; + + case 'quote': + return { + title: `${data.user.name}さんが引用:`, + body: getPostSummary(data), + icon: data.user.avatar_url + '?thumbnail&size=64' + }; + + case 'unread_messaging_message': + return { + title: `${data.user.name}さんからメッセージ:`, + body: data.text, // TODO: getMessagingMessageSummary(data), + icon: data.user.avatar_url + '?thumbnail&size=64' + }; + + default: + return null; + } +} |