Add polls to instant view

This commit is contained in:
dangered wolf 2024-04-29 22:54:22 -04:00
parent 52f6664fbf
commit 6ebe12146c
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -1,7 +1,7 @@
/* eslint-disable no-irregular-whitespace */ /* eslint-disable no-irregular-whitespace */
import { Constants } from '../constants'; import { Constants } from '../constants';
import { getSocialTextIV } from '../helpers/socialproof'; import { getSocialTextIV } from '../helpers/socialproof';
import { sanitizeText } from '../helpers/utils'; import { formatNumber, sanitizeText } from '../helpers/utils';
import { Strings } from '../strings'; import { Strings } from '../strings';
enum AuthorActionType { enum AuthorActionType {
@ -174,6 +174,23 @@ const generateStatusFooter = (status: APIStatus, isQuote = false, author: APIUse
}); });
}; };
const generatePoll = (poll: APIPoll, language: string): string => {
// const formatNumber = Intl.NumberFormat(language ?? 'en')
let str = '';
const barLength = 20;
poll.choices.forEach(choice => {
const bar = '█'.repeat((choice.percentage / 100) * barLength);
// eslint-disable-next-line no-irregular-whitespace
str += `${bar}<br>${choice.label}<br>${choice.count} votes, ${choice.percentage}%<br>`;
});
/* Finally, add the footer of the poll with # of votes and time left */
str += `<br>${formatNumber(poll.total_votes)} votes · ${poll.time_left_en}`;
return str;
}
const generateCommunityNote = (status: APITwitterStatus): string => { const generateCommunityNote = (status: APITwitterStatus): string => {
if (status.community_note) { if (status.community_note) {
console.log('community_note', status.community_note) console.log('community_note', status.community_note)
@ -236,6 +253,8 @@ const generateStatus = (status: APIStatus, author: APIUser, isQuote = false, aut
${text} ${text}
<!-- Embed Community Note --> <!-- Embed Community Note -->
${generateCommunityNote(status as APITwitterStatus)} ${generateCommunityNote(status as APITwitterStatus)}
<!-- Embed poll -->
${status.poll ? generatePoll(status.poll, status.lang ?? 'en') : notApplicableComment}
<!-- Embedded quote status --> <!-- Embedded quote status -->
${!isQuote && status.quote ? generateStatus(status.quote, author, true, null) : notApplicableComment} ${!isQuote && status.quote ? generateStatus(status.quote, author, true, null) : notApplicableComment}
`.format({ `.format({