The purpose of filter() is to remove currentGroup matching with URLs from the array. It doesn't matter there is numbers after Malappuram/123456/12 or not. Is there any best way to do it in ES6 ?
DEMO: https://jsbin.com/jozuqameto/edit?js,console
const initialLinks = [
"http://www.lchfmalayalam.com",
"https://t.me/Malappuram",
"https://t.me/keraladevelopers/42716",
"http://www.whatsapp.com",
"https://www.youtube.com/watch?v=BnbFRSyHIl4",
"http://google.com",
"https://t.me/joinchat/NHNd1hcSMCoYlnZGSC_H7g",
"https://t.me/keraladevelopers/",
"http://t.me/keraladevelopers",
"http://athimannil.com/react/",
"http://athimannil.info/",
"https://t.me/hellomates/5",
"http://t.me/Malappuram/32156",
"http://t.me/keraladevelopers/42716",
"http://t.me/joinchat/NHNd1hcSMCoYlnZGSC_H7g",
"http://t.me/keraladevelopers/",
"http://t.me/hellomates/5"
];
const normalizeTme = R.replace(
/^(?:@|(?:https?:\/\/)?(?:t\.me|telegram\.(?:me|dog))\/)(\w+)(\/.+)?/i,
(_match, username, rest) => {
return /^\/\d+$/.test(rest) ?
`https://t.me/${username.toLowerCase()}` :
`https://t.me/${username.toLowerCase()}${rest || ""}`;
}
);
const filterOwnLinks = groupUsername => {
return R.match(
/^(?:@|(?:https?:\/\/)?(?:t\.me|telegram\.(?:me|dog))\/)(\w+)(\/.+)?/i,
(_match, username, rest) => {
if (username) {
return currentGroup.toLowerCase() !== username.toLowerCase();
}
return true;
}
);
};
const currentGroup = "Malappuram";
const urls = R.uniq(initialLinks)
.filter(filterOwnLinks)
.map(normalizeTme);
console.log(initialLinks);
console.log(urls);
<script src="https://cdnjs.cloudflare.com/ajax/libs/ramda/0.25.0/ramda.min.js"></script>
currentGroup? Do you really need Regular Expressions or is a good ol'indexOfoperation enough?currentGroupmay vary at based on group name. The purpose is to filter link of the same group name related.http://websitname.domain/currentGroup? or it can be at any place in URL ?http://t.me/