sharkey/src/misc/get-note-summary.ts

55 lines
1007 B
TypeScript
Raw Normal View History

2018-04-08 02:30:37 +09:00
/**
* 稿
* @param {*} note (packされた)稿
2018-04-08 02:30:37 +09:00
*/
const summarize = (note: any): string => {
2018-05-28 14:39:46 +09:00
if (note.deletedAt) {
return '(削除された投稿)';
}
2018-04-29 08:51:17 +09:00
if (note.isHidden) {
return '(非公開の投稿)';
}
2018-04-08 02:30:37 +09:00
let summary = '';
// 本文
2018-12-20 03:22:27 +09:00
if (note.cw != null) {
2018-12-17 20:17:21 +09:00
summary += note.cw;
} else {
summary += note.text ? note.text : '';
}
2018-04-08 02:30:37 +09:00
2018-09-05 19:32:46 +09:00
// ファイルが添付されているとき
2018-10-09 05:31:26 +09:00
if ((note.files || []).length != 0) {
2018-09-05 19:32:46 +09:00
summary += ` (${note.files.length}つのファイル)`;
2018-04-08 02:30:37 +09:00
}
// 投票が添付されているとき
if (note.poll) {
summary += ' (投票)';
}
// 返信のとき
if (note.replyId) {
if (note.reply) {
summary += `\n\nRE: ${summarize(note.reply)}`;
2018-04-08 02:30:37 +09:00
} else {
summary += '\n\nRE: ...';
2018-04-08 02:30:37 +09:00
}
}
// Renoteのとき
if (note.renoteId) {
if (note.renote) {
summary += `\n\nRN: ${summarize(note.renote)}`;
2018-04-08 02:30:37 +09:00
} else {
summary += '\n\nRN: ...';
2018-04-08 02:30:37 +09:00
}
}
return summary.trim();
};
export default summarize;