mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-14 00:32:35 +10:00
32 lines
1.0 KiB
TypeScript
32 lines
1.0 KiB
TypeScript
import { ThemeConfig } from '@reactive-resume/schema';
|
|
import get from 'lodash/get';
|
|
import isArray from 'lodash/isArray';
|
|
import isEmpty from 'lodash/isEmpty';
|
|
import { useMemo } from 'react';
|
|
|
|
import { useAppSelector } from '@/store/hooks';
|
|
import { getContrastColor } from '@/utils/styles';
|
|
|
|
type Props = {
|
|
items: string[];
|
|
};
|
|
|
|
const BadgeDisplay: React.FC<Props> = ({ items }) => {
|
|
const theme: ThemeConfig = useAppSelector((state) => get(state.resume.present, 'metadata.theme', {} as ThemeConfig));
|
|
const contrast = useMemo(() => getContrastColor(theme.primary), [theme.primary]);
|
|
|
|
if (!isArray(items) || isEmpty(items)) return null;
|
|
|
|
return (
|
|
<ul className="my-1 flex flex-wrap items-start justify-center gap-1.5">
|
|
{items.map((item) => (
|
|
<li key={item} className="rounded-lg px-2 py-0.5 text-xs" style={{ backgroundColor: theme.primary }}>
|
|
<span style={{ color: contrast === 'dark' ? theme.text : theme.background }}>{item}</span>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
);
|
|
};
|
|
|
|
export default BadgeDisplay;
|