Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make renderFullText private? #79

Open
Ryuno-Ki opened this issue Mar 1, 2023 · 0 comments
Open

Make renderFullText private? #79

Ryuno-Ki opened this issue Mar 1, 2023 · 0 comments

Comments

@Ryuno-Ki
Copy link

Ryuno-Ki commented Mar 1, 2023

Looking at

tweetback/src/twitter.js

Lines 255 to 273 in d03e289

async renderFullText(tweet) {
let text = tweet.full_text;
// Markdown
// replace `*` with <code>*</code>
text = text.replace(/\`([^\`]*)\`/g, "<code>$1</code>");
let {medias, textReplacements} = await this.getMedia(tweet);
for(let [key, {regex, html}] of textReplacements) {
text = text.replace(regex || key, html);
}
if(medias.length) {
text += `<is-land on:visible><div class="tweet-medias">${medias.join("")}</div></is-land>`;
}
return text;
}

it appears to be used only within this class. Therefore I suggest to declare it as a private method (by prefixing it with an underscore or using private class feature).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant