/* ============================================================================ * Copyright (c) Palo Alto Networks * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * ========================================================================== */ export type Children = string | undefined | (string | string[] | undefined)[]; export type Props = Record & { children?: Children }; export function create(tag: string, props: Props): string { const { children, ...rest } = props; let propString = ""; for (const [key, value] of Object.entries(rest)) { propString += ` ${key}={${JSON.stringify(value)}}`; } return `<${tag}${propString}>${render(children)}`; } export function guard( value: T | undefined, cb: (value: T) => Children ): string { if (!!value || value === 0) { const children = cb(value); return render(children); } return ""; } export function render(children: Children): string { if (Array.isArray(children)) { const filteredChildren = children.filter((c) => c !== undefined); return filteredChildren .map((i: any) => (Array.isArray(i) ? i.join("") : i)) .join(""); } return children ?? ""; } // Regex to selectively URL-encode '>' and '<' chars export const lessThan = /<(?!(=|button|\s?\/button|code|\s?\/code|details|\s?\/details|summary|\s?\/summary|hr|\s?\/hr|br|\s?\/br|span|\s?\/span|strong|\s?\/strong|small|\s?\/small|table|\s?\/table|thead|\s?\/thead|tbody|\s?\/tbody|td|\s?\/td|tr|\s?\/tr|th|\s?\/th|h1|\s?\/h1|h2|\s?\/h2|h3|\s?\/h3|h4|\s?\/h4|h5|\s?\/h5|h6|\s?\/h6|title|\s?\/title|p|\s?\/p|em|\s?\/em|b|\s?\/b|i|\s?\/i|u|\s?\/u|strike|\s?\/strike|bold|\s?\/bold|a|\s?\/a|table|\s?\/table|li|\s?\/li|ol|\s?\/ol|ul|\s?\/ul|img|\s?\/img|svg|\s?\/svg|div|\s?\/div|center|\s?\/center))/gu; export const greaterThan = /(?/gu; export const codeFence = /`{1,3}[\s\S]*?`{1,3}/g;