mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-12-21 05:22:38 +03:00
34 lines
703 B
JavaScript
34 lines
703 B
JavaScript
import getHTMLText from './getHTMLText';
|
|
|
|
function statusPeek(status) {
|
|
const { spoilerText, content, poll, mediaAttachments } = status;
|
|
let text = '';
|
|
if (spoilerText?.trim()) {
|
|
text += spoilerText;
|
|
} else {
|
|
text += getHTMLText(content);
|
|
}
|
|
text = text.trim();
|
|
if (poll) {
|
|
text += ' 📊';
|
|
}
|
|
if (mediaAttachments?.length) {
|
|
text +=
|
|
' ' +
|
|
mediaAttachments
|
|
.map(
|
|
(m) =>
|
|
({
|
|
image: '🖼️',
|
|
gifv: '🎞️',
|
|
video: '📹',
|
|
audio: '🎵',
|
|
unknown: '',
|
|
}[m.type] || ''),
|
|
)
|
|
.join('');
|
|
}
|
|
return text;
|
|
}
|
|
|
|
export default statusPeek;
|