import React from 'react'; import { cloneDeepWith, set, get } from 'lodash'; import warning from '@douyinfe/semi-foundation/utils/warning'; import { findAll } from '@douyinfe/semi-foundation/utils/getHighlight'; import { isHTMLElement } from '@douyinfe/semi-foundation/utils/dom'; /** * stop propagation * * @param {React.MouseEvent} e React mouse event object * @param {boolean} noImmediate Skip stopping immediate propagation */ export function stopPropagation(e: React.MouseEvent | React.FocusEvent, noImmediate?: boolean) { if (e && typeof e.stopPropagation === 'function') { e.stopPropagation(); } if (!noImmediate && e.nativeEvent && typeof e.nativeEvent.stopImmediatePropagation === 'function') { e.nativeEvent.stopImmediatePropagation(); } } /** * use in Table, Form, Navigation * * skip clone function and react element */ export function cloneDeep(value: T): T; export function cloneDeep(value: T, customizer: (value: any) => any): any; export function cloneDeep(value: any, customizer?: (value: any) => any) { return cloneDeepWith(value, v => { if (typeof customizer === 'function') { return customizer(v); } if (typeof v === 'function' || React.isValidElement(v)) { return v; } if (Object.prototype.toString.call(v) === '[object Error]') { return v; } // it is tricky // when array length beyond max length, array.length will be 0 if (Array.isArray(v) && v.length === 0) { const keys: string[] = Object.keys(v); if (keys.length) { const newArray: any[] = []; keys.forEach(key => { set(newArray, key, v[key]); }); // internal-issues:887 try { warning( get(process, 'env.NODE_ENV') !== 'production', `[Semi] You may use an out-of-bounds array. In some cases, your program may not behave as expected. The maximum length of an array is 4294967295. Please check whether the array subscript in your data exceeds the maximum value of the JS array subscript` ); } catch (e) { } return newArray; } else { return undefined; } } return undefined; }); } /** * [getHighLightTextHTML description] * * @param {string} sourceString [source content text] * @param {Array} searchWords [keywords to be highlighted] * @param {object} option * @param {true} option.highlightTag [The tag wrapped by the highlighted content, mark is used by default] * @param {true} option.highlightClassName * @param {true} option.highlightStyle * @param {boolean} option.caseSensitive * * @return {Array} */ export const getHighLightTextHTML = ({ sourceString = '', searchWords = [], option = { autoEscape: true, caseSensitive: false } }: GetHighLightTextHTMLProps) => { const chunks: HighLightTextHTMLChunk[] = findAll({ sourceString, searchWords, ...option }); const markEle = option.highlightTag || 'mark'; const highlightClassName = option.highlightClassName || ''; const highlightStyle = option.highlightStyle || {}; return chunks.map((chunk: HighLightTextHTMLChunk, index: number) => { const { end, start, highlight } = chunk; const text = sourceString.substr(start, end - start); if (highlight) { return React.createElement( markEle, { style: highlightStyle, className: highlightClassName, key: text + index }, text ); } else { return text; } }); }; export interface RegisterMediaQueryOption { match?: (e: MediaQueryList | MediaQueryListEvent) => void; unmatch?: (e: MediaQueryList | MediaQueryListEvent) => void; callInInit?: boolean } /** * register matchFn and unMatchFn callback while media query * @param {string} media media string * @param {object} param param object * @returns function */ export const registerMediaQuery = (media: string, { match, unmatch, callInInit = true }: RegisterMediaQueryOption): () => void => { if (typeof window !== 'undefined') { const mediaQueryList = window.matchMedia(media); function handlerMediaChange(e: MediaQueryList | MediaQueryListEvent): void { if (e.matches) { match && match(e); } else { unmatch && unmatch(e); } } callInInit && handlerMediaChange(mediaQueryList); if (Object.prototype.hasOwnProperty.call(mediaQueryList, 'addEventListener')) { mediaQueryList.addEventListener('change', handlerMediaChange); return (): void => mediaQueryList.removeEventListener('change', handlerMediaChange); } mediaQueryList.addListener(handlerMediaChange); return (): void => mediaQueryList.removeListener(handlerMediaChange); } return () => undefined; }; export interface GetHighLightTextHTMLProps { sourceString?: string; searchWords?: string[]; option: HighLightTextHTMLOption } export interface HighLightTextHTMLOption { highlightTag?: string; highlightClassName?: string; highlightStyle?: React.CSSProperties; caseSensitive: boolean; autoEscape: boolean } export interface HighLightTextHTMLChunk { start?: number; end?: number; highlight?: any } /** * Determine whether the incoming element is a built-in icon * @param icon 元素 * @returns boolean */ export const isSemiIcon = (icon: any): boolean => React.isValidElement(icon) && get(icon.type, 'elementType') === 'Icon'; export function getActiveElement(): HTMLElement | null { return document ? document.activeElement as HTMLElement : null; } export function isNodeContainsFocus(node: HTMLElement) { const activeElement = getActiveElement(); return activeElement === node || node.contains(activeElement); } export function getFocusableElements(node: HTMLElement) { if (!isHTMLElement(node)) { return []; } const focusableSelectorsList = [ "input:not([disabled]):not([tabindex='-1'])", "textarea:not([disabled]):not([tabindex='-1'])", "button:not([disabled]):not([tabindex='-1'])", "a[href]:not([tabindex='-1'])", "select:not([disabled]):not([tabindex='-1'])", "area[href]:not([tabindex='-1'])", "iframe:not([tabindex='-1'])", "object:not([tabindex='-1'])", "*[tabindex]:not([tabindex='-1'])", "*[contenteditable]:not([tabindex='-1'])", ]; const focusableSelectorsStr = focusableSelectorsList.join(','); // we are not filtered elements which are invisible const focusableElements = Array.from(node.querySelectorAll(focusableSelectorsStr)); return focusableElements; } export function getScrollbarWidth() { if (globalThis && Object.prototype.toString.call(globalThis) === '[object Window]') { return window.innerWidth - document.documentElement.clientWidth; } return 0; }