2023-09-22 10:01:54 +00:00
|
|
|
import {
|
|
|
|
CYCLE_ISSUES_WITH_PARAMS,
|
|
|
|
MODULE_ISSUES_WITH_PARAMS,
|
|
|
|
PROJECT_ISSUES_LIST_WITH_PARAMS,
|
|
|
|
VIEW_ISSUES,
|
|
|
|
} from "constants/fetch-keys";
|
|
|
|
|
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);
|
|
|
|
};
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
};
|
2023-07-18 06:37:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @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();
|
|
|
|
};
|
2023-07-26 06:32:14 +00:00
|
|
|
|
|
|
|
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();
|
|
|
|
};
|
2023-09-22 10:01:54 +00:00
|
|
|
|
|
|
|
export const getFetchKeysForIssueMutation = (options: {
|
|
|
|
cycleId?: string | string[];
|
|
|
|
moduleId?: string | string[];
|
|
|
|
viewId?: string | string[];
|
|
|
|
projectId: string;
|
|
|
|
calendarParams: any;
|
|
|
|
spreadsheetParams: any;
|
|
|
|
viewGanttParams: any;
|
|
|
|
ganttParams: any;
|
|
|
|
}) => {
|
|
|
|
const {
|
|
|
|
cycleId,
|
|
|
|
moduleId,
|
|
|
|
viewId,
|
|
|
|
projectId,
|
|
|
|
calendarParams,
|
|
|
|
spreadsheetParams,
|
|
|
|
viewGanttParams,
|
|
|
|
ganttParams,
|
|
|
|
} = options;
|
|
|
|
|
|
|
|
const calendarFetchKey = cycleId
|
|
|
|
? { calendarFetchKey: CYCLE_ISSUES_WITH_PARAMS(cycleId.toString(), calendarParams) }
|
|
|
|
: moduleId
|
|
|
|
? { calendarFetchKey: MODULE_ISSUES_WITH_PARAMS(moduleId.toString(), calendarParams) }
|
|
|
|
: viewId
|
|
|
|
? { calendarFetchKey: VIEW_ISSUES(viewId.toString(), calendarParams) }
|
|
|
|
: {
|
|
|
|
calendarFetchKey: PROJECT_ISSUES_LIST_WITH_PARAMS(
|
|
|
|
projectId?.toString() ?? "",
|
|
|
|
calendarParams
|
|
|
|
),
|
|
|
|
};
|
|
|
|
|
|
|
|
const spreadsheetFetchKey = cycleId
|
|
|
|
? { spreadsheetFetchKey: CYCLE_ISSUES_WITH_PARAMS(cycleId.toString(), spreadsheetParams) }
|
|
|
|
: moduleId
|
|
|
|
? { spreadsheetFetchKey: MODULE_ISSUES_WITH_PARAMS(moduleId.toString(), spreadsheetParams) }
|
|
|
|
: viewId
|
|
|
|
? { spreadsheetFetchKey: VIEW_ISSUES(viewId.toString(), spreadsheetParams) }
|
|
|
|
: {
|
|
|
|
spreadsheetFetchKey: PROJECT_ISSUES_LIST_WITH_PARAMS(
|
|
|
|
projectId?.toString() ?? "",
|
|
|
|
spreadsheetParams
|
|
|
|
),
|
|
|
|
};
|
|
|
|
|
|
|
|
const ganttFetchKey = cycleId
|
|
|
|
? { ganttFetchKey: CYCLE_ISSUES_WITH_PARAMS(cycleId.toString(), ganttParams) }
|
|
|
|
: moduleId
|
|
|
|
? { ganttFetchKey: MODULE_ISSUES_WITH_PARAMS(moduleId.toString(), ganttParams) }
|
|
|
|
: viewId
|
|
|
|
? { ganttFetchKey: VIEW_ISSUES(viewId.toString(), viewGanttParams) }
|
|
|
|
: { ganttFetchKey: PROJECT_ISSUES_LIST_WITH_PARAMS(projectId?.toString() ?? "", ganttParams) };
|
|
|
|
|
|
|
|
return {
|
|
|
|
...calendarFetchKey,
|
|
|
|
...spreadsheetFetchKey,
|
|
|
|
...ganttFetchKey,
|
|
|
|
};
|
|
|
|
};
|