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 getUrlObject private? #75

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

Make getUrlObject private? #75

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 115 to 151 in d03e289

getUrlObject(url) {
let expandedUrl = url.expanded_url ?? url.url;
let displayUrl = expandedUrl;
let className = "tweet-url";
let targetUrl = expandedUrl;
// Links to my tweets
if(displayUrl.startsWith(`https://twitter.com/${metadata.username}/status/`)) {
targetUrl = `/${expandedUrl.substr(`https://twitter.com/${metadata.username}/status/`.length)}`;
}
// Links to other tweets
if(displayUrl.startsWith("https://twitter.com") && displayUrl.indexOf("/status/") > -1) {
displayUrl = displayUrl.substring("https://twitter.com/".length);
displayUrl = displayUrl.replace("/status/", "/");
displayUrl = `@${displayUrl}`;
// displayUrl = displayUrl.replace(/(\d+)/, function(match) {
// return "" + (match.length > 6 ? "…" : "") + match.substr(-6);
// });
className = "tweet-username";
} else {
if(displayUrl.startsWith("http://")) {
displayUrl = displayUrl.substring("http://".length);
}
if(displayUrl.startsWith("https://")) {
displayUrl = displayUrl.substring("https://".length);
}
if(displayUrl.startsWith("www.")) {
displayUrl = displayUrl.substring("www.".length);
}
}
return {
displayUrl,
className,
targetUrl,
}
}

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