import React, { useMemo } from 'react' import Image from 'next/image' import HelpIcon from '@/assets/images/help.svg' import { SuggestedResponse } from '@/lib/bots/bing/types' import { useBing } from '@/lib/hooks/use-bing' import { atom, useAtom } from 'jotai' type Suggestions = SuggestedResponse[] const helpSuggestions = ['为什么不回应某些主题', '告诉我更多关于必应的资迅', '必应如何使用 AI?'].map((text) => ({ text })) const suggestionsAtom = atom([]) type ChatSuggestionsProps = React.ComponentProps<'div'> & Pick, 'setInput'> & { suggestions?: Suggestions } export function ChatSuggestions({ setInput, suggestions = [] }: ChatSuggestionsProps) { const [currentSuggestions, setSuggestions] = useAtom(suggestionsAtom) const toggleSuggestions = (() => { if (currentSuggestions === helpSuggestions) { setSuggestions(suggestions) } else { setSuggestions(helpSuggestions) } }) useMemo(() => { setSuggestions(suggestions) window.scrollBy(0, 2000) }, [suggestions.length]) return currentSuggestions?.length ? (
{ currentSuggestions.map(suggestion => ( )) }
) : null }