File size: 1,465 Bytes
f0743f4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | import { useMemo } from 'react';
import { useRecoilCallback } from 'recoil';
import { useRecoilValue } from 'recoil';
import { MessageCircleDashed, Box } from 'lucide-react';
import type { BadgeItem } from '~/common';
import { useLocalize, TranslationKeys } from '~/hooks';
import store from '~/store';
interface ChatBadgeConfig {
id: string;
icon: typeof Box;
label: string;
atom?: any;
}
const badgeConfig: ReadonlyArray<ChatBadgeConfig> = [
// {
// id: '1',
// icon: Box,
// label: 'com_ui_artifacts',
// atom: store.codeArtifacts,
// },
// TODO: add more badges here (missing store atoms)
];
export default function useChatBadges(): BadgeItem[] {
const localize = useLocalize();
const activeBadges = useRecoilValue(store.chatBadges) as Array<{ id: string }>;
const activeBadgeIds = useMemo(
() => new Set(activeBadges.map((badge) => badge.id)),
[activeBadges],
);
const allBadges = useMemo(() => {
return (
badgeConfig.map((cfg) => ({
id: cfg.id,
label: localize(cfg.label as TranslationKeys),
icon: cfg.icon,
atom: cfg.atom,
isAvailable: activeBadgeIds.has(cfg.id),
})) || []
);
}, [activeBadgeIds, localize]);
return allBadges;
}
export function useResetChatBadges() {
return useRecoilCallback(
({ reset }) =>
() => {
badgeConfig.forEach(({ atom }) => reset(atom));
reset(store.chatBadges);
},
[],
);
}
|