2023-01-26 18:12:20 +00:00
|
|
|
export const addSpaceIfCamelCase = (str: string) => str.replace(/([a-z])([A-Z])/g, "$1 $2");
|
|
|
|
|
|
|
|
export const replaceUnderscoreIfSnakeCase = (str: string) => str.replace(/_/g, " ");
|
|
|
|
|
|
|
|
export const capitalizeFirstLetter = (str: string) => str.charAt(0).toUpperCase() + str.slice(1);
|
|
|
|
|
2023-03-14 06:46:38 +00:00
|
|
|
export const truncateText = (str: string, length: number) => {
|
|
|
|
if (!str || str === "") return "";
|
|
|
|
|
|
|
|
return str.length > length ? `${str.substring(0, length)}...` : str;
|
|
|
|
};
|
2023-02-23 17:04:36 +00:00
|
|
|
|
2023-01-26 18:12:20 +00:00
|
|
|
export const createSimilarString = (str: string) => {
|
|
|
|
const shuffled = str
|
|
|
|
.split("")
|
|
|
|
.sort(() => Math.random() - 0.5)
|
|
|
|
.join("");
|
|
|
|
|
|
|
|
return shuffled;
|
|
|
|
};
|
|
|
|
|
|
|
|
const fallbackCopyTextToClipboard = (text: string) => {
|
|
|
|
var textArea = document.createElement("textarea");
|
|
|
|
textArea.value = text;
|
|
|
|
|
|
|
|
// Avoid scrolling to bottom
|
|
|
|
textArea.style.top = "0";
|
|
|
|
textArea.style.left = "0";
|
|
|
|
textArea.style.position = "fixed";
|
|
|
|
|
|
|
|
document.body.appendChild(textArea);
|
|
|
|
textArea.focus();
|
|
|
|
textArea.select();
|
|
|
|
|
|
|
|
try {
|
|
|
|
// FIXME: Even though we are using this as a fallback, execCommand is deprecated 👎. We should find a better way to do this.
|
|
|
|
// https://developer.mozilla.org/en-US/docs/Web/API/Document/execCommand
|
|
|
|
var successful = document.execCommand("copy");
|
2023-04-17 19:45:26 +00:00
|
|
|
} catch (err) {}
|
2023-01-26 18:12:20 +00:00
|
|
|
|
|
|
|
document.body.removeChild(textArea);
|
|
|
|
};
|
|
|
|
|
|
|
|
export const copyTextToClipboard = async (text: string) => {
|
|
|
|
if (!navigator.clipboard) {
|
|
|
|
fallbackCopyTextToClipboard(text);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
await navigator.clipboard.writeText(text);
|
|
|
|
};
|
|
|
|
|
|
|
|
const wordsVector = (str: string) => {
|
|
|
|
const words = str.split(" ");
|
|
|
|
const vector: any = {};
|
|
|
|
for (let i = 0; i < words.length; i++) {
|
|
|
|
const word = words[i];
|
|
|
|
if (vector[word]) {
|
|
|
|
vector[word] += 1;
|
|
|
|
} else {
|
|
|
|
vector[word] = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return vector;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const cosineSimilarity = (a: string, b: string) => {
|
|
|
|
const vectorA = wordsVector(a.trim());
|
|
|
|
const vectorB = wordsVector(b.trim());
|
|
|
|
|
|
|
|
const vectorAKeys = Object.keys(vectorA);
|
|
|
|
const vectorBKeys = Object.keys(vectorB);
|
|
|
|
|
|
|
|
const union = vectorAKeys.concat(vectorBKeys);
|
|
|
|
|
|
|
|
let dotProduct = 0;
|
|
|
|
let magnitudeA = 0;
|
|
|
|
let magnitudeB = 0;
|
|
|
|
|
|
|
|
for (let i = 0; i < union.length; i++) {
|
|
|
|
const key = union[i];
|
|
|
|
const valueA = vectorA[key] || 0;
|
|
|
|
const valueB = vectorB[key] || 0;
|
|
|
|
dotProduct += valueA * valueB;
|
|
|
|
magnitudeA += valueA * valueA;
|
|
|
|
magnitudeB += valueB * valueB;
|
|
|
|
}
|
|
|
|
|
|
|
|
return dotProduct / Math.sqrt(magnitudeA * magnitudeB);
|
|
|
|
};
|
2023-05-18 13:37:24 +00:00
|
|
|
|
|
|
|
export const generateRandomColor = (string: string): string => {
|
2023-07-10 07:17:00 +00:00
|
|
|
if (!string) return "rgb(var(--color-primary-100))";
|
2023-05-18 13:37:24 +00:00
|
|
|
|
|
|
|
string = `${string}`;
|
|
|
|
|
|
|
|
const uniqueId = string.length.toString() + string; // Unique identifier based on string length
|
|
|
|
const combinedString = uniqueId + string;
|
|
|
|
|
|
|
|
const hash = Array.from(combinedString).reduce((acc, char) => {
|
|
|
|
const charCode = char.charCodeAt(0);
|
|
|
|
return (acc << 5) - acc + charCode;
|
|
|
|
}, 0);
|
|
|
|
|
|
|
|
const hue = hash % 360;
|
|
|
|
const saturation = 70; // Higher saturation for pastel colors
|
|
|
|
const lightness = 60; // Mid-range lightness for pastel colors
|
|
|
|
|
|
|
|
const randomColor = `hsl(${hue}, ${saturation}%, ${lightness}%)`;
|
|
|
|
|
|
|
|
return randomColor;
|
|
|
|
};
|
2023-05-30 13:44:35 +00:00
|
|
|
|
|
|
|
export const getFirstCharacters = (str: string) => {
|
|
|
|
const words = str.trim().split(" ");
|
|
|
|
if (words.length === 1) {
|
|
|
|
return words[0].charAt(0);
|
|
|
|
} else {
|
|
|
|
return words[0].charAt(0) + words[1].charAt(0);
|
|
|
|
}
|
|
|
|
};
|