2018-07-07 12:19:00 +02: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 21:09:45 +01:00
|
|
|
|
|
|
|
type Notification = {
|
|
|
|
title: string;
|
|
|
|
body: string;
|
|
|
|
icon: string;
|
|
|
|
onclick?: any;
|
|
|
|
};
|
|
|
|
|
|
|
|
// TODO: i18n
|
|
|
|
|
|
|
|
export default function(type, data): Notification {
|
|
|
|
switch (type) {
|
2018-10-07 04:06:17 +02:00
|
|
|
case 'driveFileCreated':
|
2017-11-20 21:09:45 +01:00
|
|
|
return {
|
2019-02-28 12:57:38 +01:00
|
|
|
title: 'File uploaded',
|
2017-11-20 21:09:45 +01:00
|
|
|
body: data.name,
|
2018-07-24 16:43:14 +02:00
|
|
|
icon: data.url
|
2017-11-20 21:09:45 +01:00
|
|
|
};
|
|
|
|
|
2018-10-07 04:06:17 +02:00
|
|
|
case 'unreadMessagingMessage':
|
2017-11-20 21:09:45 +01:00
|
|
|
return {
|
2019-02-28 12:57:38 +01:00
|
|
|
title: `New message from ${getUserName(data.user)}`,
|
2017-11-20 21:09:45 +01:00
|
|
|
body: data.text, // TODO: getMessagingMessageSummary(data),
|
2018-07-24 16:43:14 +02:00
|
|
|
icon: data.user.avatarUrl
|
2017-11-20 21:09:45 +01:00
|
|
|
};
|
|
|
|
|
2018-10-07 04:06:17 +02:00
|
|
|
case 'reversiInvited':
|
2018-03-17 09:53:35 +01:00
|
|
|
return {
|
2019-02-28 12:57:38 +01:00
|
|
|
title: 'Play reversi with me',
|
|
|
|
body: `You got reversi invitation from ${getUserName(data.parent)}`,
|
2018-07-24 16:43:14 +02:00
|
|
|
icon: data.parent.avatarUrl
|
2018-03-17 09:53:35 +01:00
|
|
|
};
|
|
|
|
|
2018-06-21 04:35:28 +02:00
|
|
|
case 'notification':
|
|
|
|
switch (data.type) {
|
|
|
|
case 'mention':
|
|
|
|
return {
|
2019-02-28 12:57:38 +01:00
|
|
|
title: `${getUserName(data.user)}:`,
|
2018-06-21 04:35:28 +02:00
|
|
|
body: getNoteSummary(data),
|
2018-07-24 16:43:14 +02:00
|
|
|
icon: data.user.avatarUrl
|
2018-06-21 04:35:28 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
case 'reply':
|
|
|
|
return {
|
2019-02-28 12:57:38 +01:00
|
|
|
title: `You got reply from ${getUserName(data.user)}:`,
|
2018-06-21 04:35:28 +02:00
|
|
|
body: getNoteSummary(data),
|
2018-07-24 16:43:14 +02:00
|
|
|
icon: data.user.avatarUrl
|
2018-06-21 04:35:28 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
case 'quote':
|
|
|
|
return {
|
2019-02-28 12:57:38 +01:00
|
|
|
title: `${getUserName(data.user)}:`,
|
2018-06-21 04:35:28 +02:00
|
|
|
body: getNoteSummary(data),
|
2018-07-24 16:43:14 +02:00
|
|
|
icon: data.user.avatarUrl
|
2018-06-21 04:35:28 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
case 'reaction':
|
|
|
|
return {
|
|
|
|
title: `${getUserName(data.user)}: ${getReactionEmoji(data.reaction)}:`,
|
|
|
|
body: getNoteSummary(data.note),
|
2018-07-24 16:43:14 +02:00
|
|
|
icon: data.user.avatarUrl
|
2018-06-21 04:35:28 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
default:
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2017-11-20 21:09:45 +01:00
|
|
|
default:
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|