mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
1e152c666c
* chore: moved app & space from apps to root * chore: modified workspace configuration * chore: modified dockerfiles for space and web * chore: modified icons for space * feat: updated files for new svg icons supported by next-images * chore: added /spaces base path for next * chore: added compose config for space * chore: updated husky configuration * chore: updated workflows for new configuration * chore: changed app name to web * fix: resolved build errors with web * chore: reset file tracing root for both projects * chore: added nginx config for deploy * fix: eslint and tsconfig settings for space app * husky setup fixes based on new dir * eslint fixes * prettier formatting --------- Co-authored-by: Henit Chobisa <chobisa.henit@gmail.com>
125 lines
3.4 KiB
TypeScript
125 lines
3.4 KiB
TypeScript
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);
|
|
|
|
export const truncateText = (str: string, length: number) => {
|
|
if (!str || str === "") return "";
|
|
|
|
return str.length > length ? `${str.substring(0, length)}...` : str;
|
|
};
|
|
|
|
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");
|
|
} catch (err) {}
|
|
|
|
document.body.removeChild(textArea);
|
|
};
|
|
|
|
export const copyTextToClipboard = async (text: string) => {
|
|
if (!navigator.clipboard) {
|
|
fallbackCopyTextToClipboard(text);
|
|
return;
|
|
}
|
|
await navigator.clipboard.writeText(text);
|
|
};
|
|
|
|
export const generateRandomColor = (string: string): string => {
|
|
if (!string) return "rgb(var(--color-primary-100))";
|
|
|
|
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;
|
|
};
|
|
|
|
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);
|
|
}
|
|
};
|
|
|
|
/**
|
|
* @description: This function will remove all the HTML tags from the string
|
|
* @param {string} html
|
|
* @return {string}
|
|
* @example:
|
|
* const html = "<p>Some text</p>";
|
|
* const text = stripHTML(html);
|
|
* console.log(text); // Some text
|
|
*/
|
|
|
|
export const stripHTML = (html: string) => {
|
|
const tmp = document.createElement("DIV");
|
|
tmp.innerHTML = html;
|
|
return tmp.textContent || tmp.innerText || "";
|
|
};
|
|
|
|
/**
|
|
* @description: This function return number count in string if number is more than 100 then it will return 99+
|
|
* @param {number} number
|
|
* @return {string}
|
|
* @example:
|
|
* const number = 100;
|
|
* const text = getNumberCount(number);
|
|
* console.log(text); // 99+
|
|
*/
|
|
|
|
export const getNumberCount = (number: number): string => {
|
|
if (number > 99) {
|
|
return "99+";
|
|
}
|
|
return number.toString();
|
|
};
|
|
|
|
export const objToQueryParams = (obj: any) => {
|
|
const params = new URLSearchParams();
|
|
|
|
for (const [key, value] of Object.entries(obj)) {
|
|
if (value !== undefined && value !== null) params.append(key, value as string);
|
|
}
|
|
|
|
return params.toString();
|
|
};
|