Moved quote tweet header to strings

This commit is contained in:
dangered wolf 2022-07-16 11:45:03 -04:00
parent 3750e3508b
commit 2291064631
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
3 changed files with 7 additions and 5 deletions

View file

@ -1,12 +1,14 @@
import { linkFixer } from './linkFixer'; import { linkFixer } from './linkFixer';
import { Strings } from './strings';
export const handleQuote = (quote: TweetPartial): string | null => { export const handleQuote = (quote: TweetPartial): string | null => {
console.log('quote tweet: ', quote); console.log('quote tweet: ', quote);
let str = `\n`; let str = `\n`;
str += `════ ↘️ Quoting ${quote.user?.name} (@${quote.user?.screen_name}) ════`; str += Strings.QUOTE_TEXT.format({
name: quote.user?.name,
// str += '═'.repeat(Math.max(60 - str.length, 0)); screen_name: quote.user?.screen_name
});
str += ` \n\n`; str += ` \n\n`;
str += linkFixer(quote, quote.full_text); str += linkFixer(quote, quote.full_text);

View file

@ -110,7 +110,7 @@ router.get('/owoembed', async (request: any) => {
)}/status/${encodeURIComponent(status)}`, )}/status/${encodeURIComponent(status)}`,
provider_name: Constants.BRANDING_NAME, provider_name: Constants.BRANDING_NAME,
provider_url: Constants.REDIRECT_URL, provider_url: Constants.REDIRECT_URL,
title: Strings.TWITTER, title: Strings.DEFAULT_AUTHOR_TEXT,
type: 'link', type: 'link',
version: '1.0' version: '1.0'
}; };

View file

@ -19,7 +19,6 @@ String.prototype.format = function (options: any) {
/* Maybe we should, but pxTwitter doesn't use strings as much as pronouns bot did */ /* Maybe we should, but pxTwitter doesn't use strings as much as pronouns bot did */
export const Strings = { export const Strings = {
TWITTER: 'Twitter',
BASE_HTML: `<!DOCTYPE html> BASE_HTML: `<!DOCTYPE html>
<html {lang}> <html {lang}>
<!-- ███████████ ▐█▌ ███ ███ <!-- ███████████ ▐█▌ ███ ███
@ -36,6 +35,7 @@ export const Strings = {
--> -->
<head>{headers}</head>`, <head>{headers}</head>`,
DEFAULT_AUTHOR_TEXT: 'Twitter', DEFAULT_AUTHOR_TEXT: 'Twitter',
QUOTE_TEXT: `════ ↘️ Quoting {name} (@{screen_name}) ════`,
ERROR_API_FAIL: 'Tweet failed to load due to an API error :(', ERROR_API_FAIL: 'Tweet failed to load due to an API error :(',
ERROR_PRIVATE: `I can't embed Tweets from private accounts, sorry about that :(`, ERROR_PRIVATE: `I can't embed Tweets from private accounts, sorry about that :(`,
ERROR_TWEET_NOT_FOUND: `Sorry, that Tweet doesn't exist :(` ERROR_TWEET_NOT_FOUND: `Sorry, that Tweet doesn't exist :(`