1
0
mirror of https://github.com/hotomoe/hotomoe synced 2024-12-14 14:48:19 +09:00
hotomoe/src/common/get-post-summary.ts

46 lines
859 B
TypeScript
Raw Normal View History

2017-10-07 03:36:46 +09:00
/**
* 稿
* @param {*} post 稿
*/
2017-10-07 06:58:50 +09:00
const summarize = (post: any): string => {
2017-11-01 04:16:16 +09:00
let summary = '';
// チャンネル
summary += post.channel ? `${post.channel.title}:` : '';
// 本文
summary += post.text ? post.text : '';
2017-02-18 13:07:34 +09:00
// メディアが添付されているとき
if (post.media) {
summary += ` (${post.media.length}つのメディア)`;
}
// 投票が添付されているとき
if (post.poll) {
summary += ' (投票)';
}
// 返信のとき
2017-11-01 10:22:40 +09:00
if (post.reply_id) {
if (post.reply) {
summary += ` RE: ${summarize(post.reply)}`;
2017-02-18 13:07:34 +09:00
} else {
summary += ' RE: ...';
}
}
// Repostのとき
if (post.repost_id) {
if (post.repost) {
2017-02-19 12:27:43 +09:00
summary += ` RP: ${summarize(post.repost)}`;
2017-02-18 13:07:34 +09:00
} else {
summary += ' RP: ...';
}
}
return summary.trim();
};
2017-03-18 20:05:11 +09:00
export default summarize;