2018-07-07 05:19:00 -05:00
|
|
|
import getNoteSummary from '../../../../misc/get-note-summary';
|
|
|
|
import getReactionEmoji from '../../../../misc/get-reaction-emoji';
|
|
|
|
import getUserName from '../../../../misc/get-user-name';
|
2017-11-20 14:09:45 -06:00
|
|
|
|
|
|
|
type Notification = {
|
|
|
|
title: string;
|
|
|
|
body: string;
|
|
|
|
icon: string;
|
|
|
|
onclick?: any;
|
|
|
|
};
|
|
|
|
|
|
|
|
// TODO: i18n
|
|
|
|
|
|
|
|
export default function(type, data): Notification {
|
|
|
|
switch (type) {
|
2018-10-06 21:06:17 -05:00
|
|
|
case 'driveFileCreated':
|
2017-11-20 14:09:45 -06:00
|
|
|
return {
|
2018-08-02 05:03:31 -05:00
|
|
|
title: '%i18n:common.notification.file-uploaded%',
|
2017-11-20 14:09:45 -06:00
|
|
|
body: data.name,
|
2018-07-24 09:43:14 -05:00
|
|
|
icon: data.url
|
2017-11-20 14:09:45 -06:00
|
|
|
};
|
|
|
|
|
2018-10-06 21:06:17 -05:00
|
|
|
case 'unreadMessagingMessage':
|
2017-11-20 14:09:45 -06:00
|
|
|
return {
|
2018-12-19 06:20:25 -06:00
|
|
|
title: '%i18n:common.notification.message-from%'.split('{}')[0] + `${getUserName(data.user)}` + '%i18n:common.notification.message-from%'.split('{}')[1] ,
|
2017-11-20 14:09:45 -06:00
|
|
|
body: data.text, // TODO: getMessagingMessageSummary(data),
|
2018-07-24 09:43:14 -05:00
|
|
|
icon: data.user.avatarUrl
|
2017-11-20 14:09:45 -06:00
|
|
|
};
|
|
|
|
|
2018-10-06 21:06:17 -05:00
|
|
|
case 'reversiInvited':
|
2018-03-17 03:53:35 -05:00
|
|
|
return {
|
2018-08-02 05:03:31 -05:00
|
|
|
title: '%i18n:common.notification.reversi-invited%',
|
2018-12-19 06:20:25 -06:00
|
|
|
body: '%i18n:common.notification.reversi-invited-by%'.split('{}')[0] + `${getUserName(data.parent)}` + '%i18n:common.notification.reversi-invited-by%'.split('{}')[1],
|
2018-07-24 09:43:14 -05:00
|
|
|
icon: data.parent.avatarUrl
|
2018-03-17 03:53:35 -05:00
|
|
|
};
|
|
|
|
|
2018-06-20 21:35:28 -05:00
|
|
|
case 'notification':
|
|
|
|
switch (data.type) {
|
|
|
|
case 'mention':
|
|
|
|
return {
|
2018-12-19 06:20:25 -06:00
|
|
|
title: '%i18n:common.notification.notified-by%'.split('{}')[0] + `${getUserName(data.user)}:` + '%i18n:common.notification.notified-by%'.split('{}')[1],
|
2018-06-20 21:35:28 -05:00
|
|
|
body: getNoteSummary(data),
|
2018-07-24 09:43:14 -05:00
|
|
|
icon: data.user.avatarUrl
|
2018-06-20 21:35:28 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
case 'reply':
|
|
|
|
return {
|
2018-12-19 06:20:25 -06:00
|
|
|
title: '%i18n:common.notification.reply-from%'.split('{}')[0] + `${getUserName(data.user)}` + '%i18n:common.notification.reply-from%'.split('{}')[1],
|
2018-06-20 21:35:28 -05:00
|
|
|
body: getNoteSummary(data),
|
2018-07-24 09:43:14 -05:00
|
|
|
icon: data.user.avatarUrl
|
2018-06-20 21:35:28 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
case 'quote':
|
|
|
|
return {
|
2018-12-19 06:20:25 -06:00
|
|
|
title: '%i18n:common.notification.quoted-by%'.split('{}')[0] + `${getUserName(data.user)}` + '%i18n:common.notification.quoted-by%'.split('{}')[1],
|
2018-06-20 21:35:28 -05:00
|
|
|
body: getNoteSummary(data),
|
2018-07-24 09:43:14 -05:00
|
|
|
icon: data.user.avatarUrl
|
2018-06-20 21:35:28 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
case 'reaction':
|
|
|
|
return {
|
|
|
|
title: `${getUserName(data.user)}: ${getReactionEmoji(data.reaction)}:`,
|
|
|
|
body: getNoteSummary(data.note),
|
2018-07-24 09:43:14 -05:00
|
|
|
icon: data.user.avatarUrl
|
2018-06-20 21:35:28 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
default:
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2017-11-20 14:09:45 -06:00
|
|
|
default:
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|