Sharkey/src/client/scripts/compose-notification.ts

60 lines
1.1 KiB
TypeScript
Raw Normal View History

import getNoteSummary from '../../misc/get-note-summary';
import getUserName from '../../misc/get-user-name';
2017-11-20 22:09:45 +02:00
type Notification = {
title: string;
body: string;
icon: string;
onclick?: any;
};
// TODO: i18n
export default function(type, data): Notification {
switch (type) {
case 'driveFileCreated':
2017-11-20 22:09:45 +02:00
return {
2019-02-28 13:57:38 +02:00
title: 'File uploaded',
2017-11-20 22:09:45 +02:00
body: data.name,
2018-07-24 17:43:14 +03:00
icon: data.url
2017-11-20 22:09:45 +02:00
};
2018-06-21 05:35:28 +03:00
case 'notification':
switch (data.type) {
case 'mention':
return {
2019-02-28 13:57:38 +02:00
title: `${getUserName(data.user)}:`,
2018-06-21 05:35:28 +03:00
body: getNoteSummary(data),
2018-07-24 17:43:14 +03:00
icon: data.user.avatarUrl
2018-06-21 05:35:28 +03:00
};
case 'reply':
return {
2019-02-28 13:57:38 +02:00
title: `You got reply from ${getUserName(data.user)}:`,
2018-06-21 05:35:28 +03:00
body: getNoteSummary(data),
2018-07-24 17:43:14 +03:00
icon: data.user.avatarUrl
2018-06-21 05:35:28 +03:00
};
case 'quote':
return {
2019-02-28 13:57:38 +02:00
title: `${getUserName(data.user)}:`,
2018-06-21 05:35:28 +03:00
body: getNoteSummary(data),
2018-07-24 17:43:14 +03:00
icon: data.user.avatarUrl
2018-06-21 05:35:28 +03:00
};
case 'reaction':
return {
title: `${getUserName(data.user)}: ${data.reaction}:`,
2018-06-21 05:35:28 +03:00
body: getNoteSummary(data.note),
2018-07-24 17:43:14 +03:00
icon: data.user.avatarUrl
2018-06-21 05:35:28 +03:00
};
default:
return null;
}
2017-11-20 22:09:45 +02:00
default:
return null;
}
}