1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-06 00:07:44 +01:00
unleash.unleash/frontend/src/component/common/Highlighter/Highlighter.tsx
2023-01-05 16:23:40 +02:00

40 lines
837 B
TypeScript

import { VFC } from 'react';
import { safeRegExp } from '@server/util/escape-regex';
import { styled } from '@mui/material';
interface IHighlighterProps {
search?: string;
children?: string;
caseSensitive?: boolean;
}
export const StyledSpan = styled('span')(({ theme }) => ({
'&>mark': {
backgroundColor: theme.palette.highlight,
},
}));
export const Highlighter: VFC<IHighlighterProps> = ({
search,
children,
caseSensitive,
}) => {
if (!children) {
return null;
}
if (!search) {
return <>{children}</>;
}
const regex = safeRegExp(search, caseSensitive ? 'g' : 'gi');
return (
<StyledSpan
dangerouslySetInnerHTML={{
__html: children?.replaceAll(regex, '<mark>$&</mark>') || '',
}}
/>
);
};