VueTube/NUXT/plugins/utils.js

96 lines
2.3 KiB
JavaScript
Raw Normal View History

2022-03-18 11:49:47 +00:00
// Collection of functions that are useful but non-specific to any particular files
function getBetweenStrings(data, start_string, end_string) {
2022-03-21 23:47:11 +00:00
const regex = new RegExp(
`${escapeRegExp(start_string)}(.*?)${escapeRegExp(end_string)}`,
"s"
);
2022-03-18 11:49:47 +00:00
const match = data.match(regex);
return match ? match[1] : undefined;
}
2022-03-16 19:47:17 +00:00
function escapeRegExp(string) {
2022-03-18 11:49:47 +00:00
return string.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
2022-03-16 19:47:17 +00:00
}
2022-03-18 11:49:47 +00:00
function hexToRgb(hex) {
var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);
2022-03-21 23:47:11 +00:00
return result
? {
2022-04-13 10:15:26 +00:00
r: parseInt(result[1], 16),
g: parseInt(result[2], 16),
b: parseInt(result[3], 16),
}
2022-03-21 23:47:11 +00:00
: null;
2022-03-18 11:49:47 +00:00
}
function rgbToHex(r, g, b) {
return "#" + ((1 << 24) + (r << 16) + (g << 8) + b).toString(16).slice(1);
}
function getCpn() {
const chars =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_";
let result = "";
for (let i = 16; i > 0; --i)
result += chars[Math.round(Math.random() * (chars.length - 1))];
return result;
}
function getMutationByKey(key, mutations) {
if (!key || !mutations) return undefined;
return mutations.find((mutation) => mutation.entityKey === key).payload;
}
2022-04-13 03:55:29 +00:00
function setHttp(link) {
if (link.search(/^http[s]?\:\/\//) == -1) {
2022-04-13 10:15:26 +00:00
link = "http://" + link;
2022-04-13 03:55:29 +00:00
}
return link;
}
// Replace inputted html with tweemoji
function parseEmoji(body) {
2022-04-13 10:15:26 +00:00
if (twemoji)
return twemoji.parse(body, {
folder: "svg",
ext: ".svg",
});
2022-04-13 03:55:29 +00:00
}
function linkParser(url) {
2022-04-13 01:43:32 +00:00
let result;
if (url) {
try {
2022-04-13 03:55:29 +00:00
const slug = new URL(setHttp(url));
2022-06-19 07:13:49 +00:00
const host = slug.hostname.toLowerCase().replace(/^(www|m)\./, "");
2022-04-13 01:43:32 +00:00
if (host == "youtube.com") {
result = slug;
} else if (host == "youtu.be") {
result = new URL("/watch", window.location.origin);
result.searchParams.set("v", slug.pathname.split("/")[1]);
}
} finally {
2022-04-13 10:15:26 +00:00
return result instanceof URL ? result : false;
2022-04-13 01:43:32 +00:00
}
}
}
2022-04-09 03:06:35 +00:00
const delay = (ms) => new Promise((res) => setTimeout(res, ms));
2022-08-07 17:26:20 +00:00
function humanFileSize(size) {
var i = Math.floor( Math.log(size) / Math.log(1024) );
return ( size / Math.pow(1024, i) ).toFixed(2) * 1 + ' ' + ['B', 'kB', 'MB', 'GB', 'TB'][i];
};
2022-03-18 12:09:24 +00:00
module.exports = {
getBetweenStrings,
hexToRgb,
2022-03-21 23:47:11 +00:00
rgbToHex,
getCpn,
getMutationByKey,
linkParser,
2022-04-09 03:06:35 +00:00
delay,
parseEmoji,
2022-08-07 17:26:20 +00:00
humanFileSize,
2022-03-18 12:09:24 +00:00
};