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) {
|
|
|
|
case 'drive_file_created':
|
|
|
|
return {
|
|
|
|
title: 'ファイルがアップロードされました',
|
|
|
|
body: data.name,
|
|
|
|
icon: data.url + '?thumbnail&size=64'
|
|
|
|
};
|
|
|
|
|
|
|
|
case 'unread_messaging_message':
|
|
|
|
return {
|
2018-04-05 18:36:34 +02:00
|
|
|
title: `${getUserName(data.user)}さんからメッセージ:`,
|
2017-11-20 21:09:45 +01:00
|
|
|
body: data.text, // TODO: getMessagingMessageSummary(data),
|
2018-03-29 07:48:47 +02:00
|
|
|
icon: data.user.avatarUrl + '?thumbnail&size=64'
|
2017-11-20 21:09:45 +01:00
|
|
|
};
|
|
|
|
|
2018-06-17 01:10:54 +02:00
|
|
|
case 'reversi_invited':
|
2018-03-17 09:53:35 +01:00
|
|
|
return {
|
|
|
|
title: '対局への招待があります',
|
2018-04-05 18:36:34 +02:00
|
|
|
body: `${getUserName(data.parent)}さんから`,
|
2018-03-29 07:48:47 +02:00
|
|
|
icon: data.parent.avatarUrl + '?thumbnail&size=64'
|
2018-03-17 09:53:35 +01:00
|
|
|
};
|
|
|
|
|
2018-06-21 04:35:28 +02:00
|
|
|
case 'notification':
|
|
|
|
switch (data.type) {
|
|
|
|
case 'mention':
|
|
|
|
return {
|
|
|
|
title: `${getUserName(data.user)}さんから:`,
|
|
|
|
body: getNoteSummary(data),
|
|
|
|
icon: data.user.avatarUrl + '?thumbnail&size=64'
|
|
|
|
};
|
|
|
|
|
|
|
|
case 'reply':
|
|
|
|
return {
|
|
|
|
title: `${getUserName(data.user)}さんから返信:`,
|
|
|
|
body: getNoteSummary(data),
|
|
|
|
icon: data.user.avatarUrl + '?thumbnail&size=64'
|
|
|
|
};
|
|
|
|
|
|
|
|
case 'quote':
|
|
|
|
return {
|
|
|
|
title: `${getUserName(data.user)}さんが引用:`,
|
|
|
|
body: getNoteSummary(data),
|
|
|
|
icon: data.user.avatarUrl + '?thumbnail&size=64'
|
|
|
|
};
|
|
|
|
|
|
|
|
case 'reaction':
|
|
|
|
return {
|
|
|
|
title: `${getUserName(data.user)}: ${getReactionEmoji(data.reaction)}:`,
|
|
|
|
body: getNoteSummary(data.note),
|
|
|
|
icon: data.user.avatarUrl + '?thumbnail&size=64'
|
|
|
|
};
|
|
|
|
|
|
|
|
default:
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2017-11-20 21:09:45 +01:00
|
|
|
default:
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|