2018-04-08 02:30:37 +09:00
|
|
|
/**
|
|
|
|
* 投稿を表す文字列を取得します。
|
2018-05-06 01:34:48 +09:00
|
|
|
* @param {*} note (packされた)投稿
|
2018-04-08 02:30:37 +09:00
|
|
|
*/
|
2020-12-28 23:05:30 +09:00
|
|
|
export const getNoteSummary = (note: any, locale: any): string => {
|
2018-05-28 14:39:46 +09:00
|
|
|
if (note.deletedAt) {
|
2020-05-23 13:19:31 +09:00
|
|
|
return `(${locale['deletedNote']})`;
|
2018-05-28 14:39:46 +09:00
|
|
|
}
|
|
|
|
|
2018-04-29 08:51:17 +09:00
|
|
|
if (note.isHidden) {
|
2020-05-23 13:19:31 +09:00
|
|
|
return `(${locale['invisibleNote']})`;
|
2018-04-29 08:51:17 +09:00
|
|
|
}
|
|
|
|
|
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) {
|
2020-05-23 13:19:31 +09:00
|
|
|
summary += ` (${locale['withNFiles'].replace('{n}', note.files.length)})`;
|
2018-04-08 02:30:37 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
// 投票が添付されているとき
|
|
|
|
if (note.poll) {
|
2020-06-03 13:30:17 +09:00
|
|
|
summary += ` (${locale['poll']})`;
|
2018-04-08 02:30:37 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
// 返信のとき
|
|
|
|
if (note.replyId) {
|
|
|
|
if (note.reply) {
|
2020-12-28 23:41:09 +09:00
|
|
|
summary += `\n\nRE: ${getNoteSummary(note.reply, locale)}`;
|
2018-04-08 02:30:37 +09:00
|
|
|
} else {
|
2018-11-30 09:34:37 +09:00
|
|
|
summary += '\n\nRE: ...';
|
2018-04-08 02:30:37 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Renoteのとき
|
|
|
|
if (note.renoteId) {
|
|
|
|
if (note.renote) {
|
2020-12-28 23:41:09 +09:00
|
|
|
summary += `\n\nRN: ${getNoteSummary(note.renote, locale)}`;
|
2018-04-08 02:30:37 +09:00
|
|
|
} else {
|
2018-11-30 09:34:37 +09:00
|
|
|
summary += '\n\nRN: ...';
|
2018-04-08 02:30:37 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return summary.trim();
|
|
|
|
};
|