mirror of
https://github.com/makeplane/plane.git
synced 2026-07-14 14:31:37 +02:00
* refactor: iframe service * refactor: name iframely * refactor: use extension storage * refactor:error handler * refactor : error handling * fix: drag handler inside error * feat: refactor space embed handler * refactor: handle convert UI * refactor : iframely service , controller * refactor: fix modal opening logic * feat: loading in twit embed. * fix: twit frame * feat :tweet fix in space. * refactor: change name casing * feat: add icon link * feat: added animation * fix : iframe styles * refactor : update link-container * refactor : fix build * feat: handle link url mark * fix: iframely service created in web * fix: group issue * fix: use live URL instead * fix : close embed modal * feat: handle arrow keys * fix: handle error * fix : remove logs * feat: handle bookmark * feat: handle og image * chore:remove observer * feat: handle bookmark and embed * feat: handle custom render * chore: clean up * feat: handle conversion * fix : handle links properly * feat: handle figma embed * refactor : put iframely controller in ee * refactor: better icon * feat: feature flag external embed * feat: timeout * feat: refactor embed component * refactor: upgrade plan * feat :handle block menu * feat: handle comment * fix : reloads * refactor : remove border * fix : embed order * fix :Embed handler * feat: insert embed v1 * feat : web bookmark command * chore: fix text * feat: ui updates * feat: handle cursor focus * feat: update isopened in storage * feat: add platform name * fix:deny plane embed * feat: props update * feat: handle embed options properly * chore: minor changes * chore : add external embeds in the page form * chore : convert bookmark to rich card * feat : update thumnail not found * feat: add new loading animation * fix : handle paste embed * feat:block translation * feat: basic local setup * feat: embed translation for all languages * chore : update feature flag name * feat: handle feature flag in space * FIX: add build in i18n package * fix : update props for embed handler * chore : remove comments * chore : move hooks * FIX : package update * FIX: live * feat: handle unique ID * feat: handle thumbnails * chore : remove useless fetch * chore : update types * refactor : twitter theme * chore : remove slash command for rich card * chore: different text in readonly * refactor : change editor name * refactor: update modal style * refactor : make the html simple * refactor : external extension * refactor : rename extension * refactor: attribute names * refactor : add entity type * refactor: figma hook * refactor: remove translations * fix : creds * feat: handle iframely api auth * feat: handle space embed load * feat: handle paste link * feat: styles updates * chore : remove editable condition * remove link-container * feat : feature flag slash command * chore * fix * chore : refactor external embed * refactor : fix embed insert * chore : remove auth * chore : remove old code * fix : build * fix:auth * Fix: floating portal Fix * fix: refactor * fix : update types * fix: build * fix : update iframe response types * refactor: embed ui components * refactor : emebd components * refactor : add tailwind animations * refactor core * refactor ce * refactor : move icons * refactor lite editor * small refactor * refactor : update icons import * build fix * fix: cors * feat: update project structure * refactor : embed handler * refactor : embed hooks * refactor : packages * chore: embed setup in dev wiki * refactor: embed extension * refactor:fix types * refactor: external emebds * chore: clean imports * chore :remove readonly editor types * chore : remove logs * Revert changes to dev-wiki/ * refactor: remove upgrade plane component * feat: add unique id * refactor : update fetching logic with useSWR * Feat: Handle auth in iframley API * feat:update embed select style * refactor : remove useless component * refactor : widge embed * Remove changes to i18n locales path * refactor: utils * refactor : update emebd handler * wip -- * fix : build * refactor : block menu * refactor:remove unused code * refactor : update block menu * refactor: slash command feature flag * refactor: add badge in slash command * refactor: editor attribute * refactor : embed handler * fix : swr * fix : build * refactor: feature flag space * refactor : storage types * refactor: remove embeddable * refactor: space remove feature flag * refactor: update space feature flag * refactor: external embed * fix :rerender * build : fix hooks * fix: block menu refactor * refactor: hooks * refactor: move tldjs * refactor :extension * refactor: page render * refactor : update NodeViewProps types * refactor : embed handler space * refactor: update has_embed_failed * refactor: remove useless render code * refactor : twitter embed * fix : build * refactor : attribute with commands * refactor : external embed extension. * refactor: external embed storage. * fix : rich and embed types * fix : web embed * style : selection * refactor: space embed handler * fix : extension storage * refactor: embed types * refactor: imports * fix : page renderer * chore: add comment * chore: update comments * chore: install tldjs * refactor: update ui package * fix :dev-wiki pnpm changes * chore: minor improvements * refactor : update embed type * refactor : update component name * refactor :url modifier * refactor: remove external embed ce * feat: disabled external embed * refactor: add disabled props * refactor: remove get attribute method * refactor: package ui styles * feat: translations * refactor: theme type * feat: jwt auth * improve: add jwt auth for user * chore :comment translations * refactor: api params * refactor: update types * refactor: update props * refactor: constants * refactor: lite comments * refactor: add type imports * refactor:external embed node view * refactor: move tldjs to dev dep * refactor: add flagged check * refactor: update slice imports * refactor: update type changes * chore : remove comments * refactor : update nodeview types * chore :remove type export * chore: update icon * chore: update iframley types * fix: build errors --------- Co-authored-by: Palanikannan M <akashmalinimurugu@gmail.com> Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
255 lines
7.6 KiB
TypeScript
255 lines
7.6 KiB
TypeScript
import DOMPurify from "isomorphic-dompurify";
|
|
|
|
export const addSpaceIfCamelCase = (str: string) => {
|
|
if (str === undefined || str === null) return "";
|
|
|
|
if (typeof str !== "string") str = `${str}`;
|
|
|
|
return 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) => {
|
|
const 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
|
|
document.execCommand("copy");
|
|
} catch (err) {
|
|
// catch fallback error
|
|
}
|
|
|
|
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 sanitizeHTML = (htmlString: string) => {
|
|
const sanitizedText = DOMPurify.sanitize(htmlString, { ALLOWED_TAGS: [] }); // sanitize the string to remove all HTML tags
|
|
return sanitizedText.trim(); // trim the string to remove leading and trailing whitespaces
|
|
};
|
|
|
|
/**
|
|
*
|
|
* @example:
|
|
* const html = "<p>Some text</p>";
|
|
* const text = stripAndTruncateHTML(html);
|
|
* console.log(text); // Some text
|
|
*/
|
|
|
|
export const stripAndTruncateHTML = (html: string, length: number = 55) => truncateText(sanitizeHTML(html), length);
|
|
|
|
/**
|
|
* @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();
|
|
|
|
if (!obj) return params.toString();
|
|
|
|
for (const [key, value] of Object.entries(obj)) {
|
|
if (value !== undefined && value !== null) params.append(key, value as string);
|
|
}
|
|
|
|
return params.toString();
|
|
};
|
|
|
|
/**
|
|
* @returns {boolean} true if searchQuery is substring of text in the same order, false otherwise
|
|
* @description Returns true if searchQuery is substring of text in the same order, false otherwise
|
|
* @param {string} text string to compare from
|
|
* @param {string} searchQuery
|
|
* @example substringMatch("hello world", "hlo") => true
|
|
* @example substringMatch("hello world", "hoe") => false
|
|
*/
|
|
export const substringMatch = (text: string, searchQuery: string): boolean => {
|
|
try {
|
|
let searchIndex = 0;
|
|
|
|
for (let i = 0; i < text.length; i++) {
|
|
if (text[i].toLowerCase() === searchQuery[searchIndex]?.toLowerCase()) searchIndex++;
|
|
|
|
// All characters of searchQuery found in order
|
|
if (searchIndex === searchQuery.length) return true;
|
|
}
|
|
|
|
// Not all characters of searchQuery found in order
|
|
return false;
|
|
} catch (error) {
|
|
return false;
|
|
}
|
|
};
|
|
|
|
/**
|
|
* @returns {boolean} true if email is valid, false otherwise
|
|
* @description Returns true if email is valid, false otherwise
|
|
* @param {string} email string to check if it is a valid email
|
|
* @example checkEmailIsValid("hello world") => false
|
|
* @example checkEmailIsValid("example@plane.so") => true
|
|
*/
|
|
export const checkEmailValidity = (email: string): boolean => {
|
|
if (!email) return false;
|
|
|
|
const isEmailValid =
|
|
/^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/.test(
|
|
email
|
|
);
|
|
|
|
return isEmailValid;
|
|
};
|
|
|
|
export const isEmptyHtmlString = (htmlString: string, allowedHTMLTags: string[] = []) => {
|
|
// Remove HTML tags using regex
|
|
const cleanText = DOMPurify.sanitize(htmlString, { ALLOWED_TAGS: allowedHTMLTags });
|
|
// Trim the string and check if it's empty
|
|
return cleanText.trim() === "";
|
|
};
|
|
|
|
/**
|
|
* @description this function returns whether a comment is empty or not by checking for the following conditions-
|
|
* 1. If editor content is undefined
|
|
* 2. If editor content is an empty string
|
|
* 3. If editor content is "<p></p>"
|
|
* @param {string | undefined} comment
|
|
* @returns {boolean}
|
|
*/
|
|
export const isEditorContentEmpty = (content: string | undefined): boolean => {
|
|
// return true if editor content is undefined
|
|
if (!content) return true;
|
|
return (
|
|
content?.trim() === "" ||
|
|
content === "<p></p>" ||
|
|
isEmptyHtmlString(content ?? "", ["img", "mention-component", "image-component", "issue-embed-component"])
|
|
);
|
|
};
|
|
|
|
/**
|
|
* @description this function returns whether a comment is empty or not by checking for the following conditions-
|
|
* 1. If comment is undefined
|
|
* 2. If comment is an empty string
|
|
* 3. If comment is "<p></p>"
|
|
* @param {string | undefined} comment
|
|
* @returns {boolean}
|
|
*/
|
|
export const isCommentEmpty = (comment: string | undefined): boolean => {
|
|
// return true if comment is undefined
|
|
if (!comment) return true;
|
|
return (
|
|
comment?.trim() === "" ||
|
|
comment === "<p></p>" ||
|
|
isEmptyHtmlString(comment ?? "", ["img", "mention-component", "image-component", "embed-component"])
|
|
);
|
|
};
|
|
|
|
/**
|
|
* @description
|
|
* This function test whether a URL is valid or not.
|
|
*
|
|
* It accepts URLs with or without the protocol.
|
|
* @param {string} url
|
|
* @returns {boolean}
|
|
* @example
|
|
* checkURLValidity("https://example.com") => true
|
|
* checkURLValidity("example.com") => true
|
|
* checkURLValidity("example") => false
|
|
*/
|
|
export const checkURLValidity = (url: string): boolean => {
|
|
if (!url) return false;
|
|
|
|
// regex to support complex query parameters and fragments
|
|
const urlPattern =
|
|
/^(https?:\/\/)?((([a-z\d-]+\.)*[a-z\d-]+\.[a-z]{2,6})|(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}))(:\d+)?(\/[\w.-]*)*(\?[^#\s]*)?(#[\w-]*)?$/i;
|
|
|
|
return urlPattern.test(url);
|
|
};
|