Add comments, merge html and strings

This commit is contained in:
dangered wolf 2022-07-14 21:00:27 -04:00
parent f80c695264
commit 9de7a9bdfd
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
6 changed files with 30 additions and 25 deletions

View file

@ -41,8 +41,8 @@ export const renderCard = async (
let totalVotes = 0;
let timeLeft = '';
/* TODO: make poll code cleaner */
if (typeof values !== 'undefined') {
/* TODO: make poll code cleaner */
if (
typeof values.choice1_count !== 'undefined' &&
typeof values.choice2_count !== 'undefined'
@ -83,6 +83,7 @@ export const renderCard = async (
console.log(str);
}
/* Oh good, a non-Twitter video URL! This enables YouTube embeds*/
} else if (typeof values.player_url !== 'undefined') {
headers.push(
`<meta name="twitter:player" content="${values.player_url.string_value}">`,
@ -103,6 +104,7 @@ export const renderCard = async (
}">`
);
/* A control sequence I made up to tell status.ts that external media is being embedded */
str = 'EMBED_CARD';
}
}

View file

@ -1,19 +0,0 @@
import { Strings } from './strings';
export const Html = {
BASE_HTML: `<!DOCTYPE html>
<html {lang}>
<!-- ███████████ ▐█▌ ███ ███
The best way to embed tweets.
A work in progress by @dangeredwolf
-->
<head>{headers}</head>`
};

View file

@ -55,6 +55,7 @@ const profileRequest = async (request: any, _event: FetchEvent) => {
}
};
/* Handlers for Twitter statuses */
router.get('/:handle/status/:id', statusRequest);
router.get('/:handle/status/:id/photo/:mediaNumber', statusRequest);
router.get('/:handle/status/:id/video/:mediaNumber', statusRequest);

View file

@ -1,11 +1,11 @@
import { Constants } from './constants';
import { fetchUsingGuest } from './fetch';
import { Html } from './html';
import { linkFixer } from './linkFixer';
import { colorFromPalette } from './palette';
import { renderCard } from './card';
import { handleQuote } from './quote';
import { sanitizeText } from './utils';
import { Strings } from './strings';
export const handleStatus = async (
status: string,
@ -39,7 +39,7 @@ export const handleStatus = async (
`<meta content="Tweet failed to load :(" property="og:description"/>`
);
return Html.BASE_HTML.format({
return Strings.BASE_HTML.format({
lang: '',
headers: headers.join(''),
tweet: JSON.stringify(tweet)
@ -247,7 +247,7 @@ export const handleStatus = async (
/* When dealing with a Tweet of unknown lang, fall back to en */
let lang = tweet.lang === 'unk' ? 'en' : tweet.lang || 'en';
return Html.BASE_HTML.format({
return Strings.BASE_HTML.format({
lang: `lang="${lang}"`,
headers: headers.join('')
});

View file

@ -17,6 +17,22 @@ String.prototype.format = function (options: any) {
});
};
/* Maybe we should, but pxTwitter doesn't use strings as much as pronouns bot did */
export const Strings = {
TWITTER: 'Twitter'
TWITTER: 'Twitter',
BASE_HTML: `<!DOCTYPE html>
<html {lang}>
<!-- ███████████ ▐█▌ ███ ███
The best way to embed tweets.
A work in progress by @dangeredwolf
-->
<head>{headers}</head>`
};

View file

@ -1,3 +1,8 @@
/*
Types for various objects.
Note that a lot of these are not actually complete types. Many unused values may be missing.
*/
type TimelineBlobPartial = {
globalObjects: {
tweets: {