2018-04-07 12:30:37 -05:00
|
|
|
/**
|
|
|
|
* 投稿を表す文字列を取得します。
|
2018-05-05 11:34:48 -05:00
|
|
|
* @param {*} note (packされた)投稿
|
2018-04-07 12:30:37 -05:00
|
|
|
*/
|
|
|
|
const summarize = (note: any): string => {
|
2018-05-28 00:39:46 -05:00
|
|
|
if (note.deletedAt) {
|
|
|
|
return '(削除された投稿)';
|
|
|
|
}
|
|
|
|
|
2018-04-28 18:51:17 -05:00
|
|
|
if (note.isHidden) {
|
|
|
|
return '(非公開の投稿)';
|
|
|
|
}
|
|
|
|
|
2018-04-07 12:30:37 -05:00
|
|
|
let summary = '';
|
|
|
|
|
|
|
|
// 本文
|
|
|
|
summary += note.text ? note.text : '';
|
|
|
|
|
2018-09-05 05:32:46 -05:00
|
|
|
// ファイルが添付されているとき
|
2018-10-08 15:31:26 -05:00
|
|
|
if ((note.files || []).length != 0) {
|
2018-09-05 05:32:46 -05:00
|
|
|
summary += ` (${note.files.length}つのファイル)`;
|
2018-04-07 12:30:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// 投票が添付されているとき
|
|
|
|
if (note.poll) {
|
|
|
|
summary += ' (投票)';
|
|
|
|
}
|
|
|
|
|
|
|
|
// 返信のとき
|
|
|
|
if (note.replyId) {
|
|
|
|
if (note.reply) {
|
2018-11-29 18:34:37 -06:00
|
|
|
summary += `\n\nRE: ${summarize(note.reply)}`;
|
2018-04-07 12:30:37 -05:00
|
|
|
} else {
|
2018-11-29 18:34:37 -06:00
|
|
|
summary += '\n\nRE: ...';
|
2018-04-07 12:30:37 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Renoteのとき
|
|
|
|
if (note.renoteId) {
|
|
|
|
if (note.renote) {
|
2018-11-29 18:34:37 -06:00
|
|
|
summary += `\n\nRN: ${summarize(note.renote)}`;
|
2018-04-07 12:30:37 -05:00
|
|
|
} else {
|
2018-11-29 18:34:37 -06:00
|
|
|
summary += '\n\nRN: ...';
|
2018-04-07 12:30:37 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return summary.trim();
|
|
|
|
};
|
|
|
|
|
|
|
|
export default summarize;
|