Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
export type Tweet = {
data: {
author_id: string;
created_at: string;
id: string;
text: string;
public_metrics: {
retweet_count: number;
like_count: number;
quote_count: number;
reply_count: number;
};
attachments: { media_keys: string[] };
};
includes: {
users: User[];
media: Media[];
};
};
type User = {
id: string;
name: string;
profile_image_url: string;
url: string;
username: string;
};
type Media = {
media_key: string;
type: string;
url: string;
preview_image_url?: string;
};
function buildMediaList(media: Media[]) {
const width = media.length > 1 ? "50%" : "100%";
return media
.map(
(media) =>
`<img src="${
media.preview_image_url || media.url
}" width="${width}" loading="lazy" alt="Tweet media" />`
)
.join("");
}
const likesSVG = `<svg viewBox="0 0 24 24" class="r-m0bqgq r-4qtqp9 r-yyyyoo r-1xvli5t r-dnmrzs r-bnwqim r-1plcrui r-lrvibr" style=""><g><path d="M12 21.638h-.014C9.403 21.59 1.95 14.856 1.95 8.478c0-3.064 2.525-5.754 5.403-5.754 2.29 0 3.83 1.58 4.646 2.73.814-1.148 2.354-2.73 4.645-2.73 2.88 0 5.404 2.69 5.404 5.755 0 6.376-7.454 13.11-10.037 13.157H12zM7.354 4.225c-2.08 0-3.903 1.988-3.903 4.255 0 5.74 7.034 11.596 8.55 11.658 1.518-.062 8.55-5.917 8.55-11.658 0-2.267-1.823-4.255-3.903-4.255-2.528 0-3.94 2.936-3.952 2.965-.23.562-1.156.562-1.387 0-.014-.03-1.425-2.965-3.954-2.965z"></path></g></svg>`;
const repliesSVG = `<svg viewBox="0 0 24 24" class="r-m0bqgq r-4qtqp9 r-yyyyoo r-1xvli5t r-dnmrzs r-bnwqim r-1plcrui r-lrvibr"><g><path d="M14.046 2.242l-4.148-.01h-.002c-4.374 0-7.8 3.427-7.8 7.802 0 4.098 3.186 7.206 7.465 7.37v3.828c0 .108.044.286.12.403.142.225.384.347.632.347.138 0 .277-.038.402-.118.264-.168 6.473-4.14 8.088-5.506 1.902-1.61 3.04-3.97 3.043-6.312v-.017c-.006-4.367-3.43-7.787-7.8-7.788zm3.787 12.972c-1.134.96-4.862 3.405-6.772 4.643V16.67c0-.414-.335-.75-.75-.75h-.396c-3.66 0-6.318-2.476-6.318-5.886 0-3.534 2.768-6.302 6.3-6.302l4.147.01h.002c3.532 0 6.3 2.766 6.302 6.296-.003 1.91-.942 3.844-2.514 5.176z"></path></g></svg>`;
function getAuthorHTML(tweet: Tweet) {
const author = tweet.includes?.users?.find(
(user: User) => user.id === tweet.data.author_id
);
if (!author) {
return {
author: { username: "" },
authorHTML: "",
};
}
const authorHTML = `<a class="author" href="${author.url}"><img src="${author.profile_image_url}" loading="lazy" alt="${author.name} avatar" /><b>${author.name}</b>@${author.username}</a>`;
return { author, authorHTML };
}
function mediaHTML(tweet: Tweet) {
const mediaHTML = tweet.includes.media
? `<div class="media">${buildMediaList(tweet.includes.media)}</div>`
: "";
return mediaHTML;
}
function tweetHTML(tweet: Tweet) {
const text = tweet.data.text
.replace(/https:\/\/t.co\/(\w+)/g, "")
.replace(/\n/g, "<br/>")
.replace(/(?=\W)@(\w+)/g, '<a href="https://twitter.com/$1">@$1</a>')
.replace(
/\#(\w+)/g,
'<a href="https://twitter.com/hashtag/$1">#$1</a>'
);
const tweetHTML = `<blockquote>${text}</blockquote>`;
return tweetHTML;
}
export function buildTweetHTML(tweet: Tweet) {
const { author, authorHTML } = getAuthorHTML(tweet);
const tweetURL = `https://twitter.com/${author.username}/status/${tweet.data.id}`;
const createdAtHTML = `<div class="time"><a href="${tweetURL}">${new Date(
tweet.data.created_at
).toLocaleTimeString()}${new Date(
tweet.data.created_at
).toLocaleDateString()}</a></div>`;
const likeIntent = `https://twitter.com/intent/like?tweet_id=${tweet.data.id}`;
const replyIntent = tweetURL;
const statsHTML = `<div class="stats"><a href="${likeIntent}" class="like">${likesSVG}${tweet.data.public_metrics.like_count}</a> <a href="${replyIntent}" class="reply">${repliesSVG}${tweet.data.public_metrics.reply_count}</a></div>`;
return `<div class="static-tweet-embed">
${authorHTML}
${tweetHTML(tweet)}
${mediaHTML(tweet)}
${createdAtHTML}
${statsHTML}
</div>`;
}