mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Moved quote tweet header to strings
This commit is contained in:
parent
3750e3508b
commit
2291064631
3 changed files with 7 additions and 5 deletions
|
@ -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);
|
||||||
|
|
|
@ -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'
|
||||||
};
|
};
|
||||||
|
|
|
@ -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 :(`
|
||||||
|
|
Loading…
Add table
Reference in a new issue