'use client' import type { FC } from 'react' import React from 'react' import { useTranslation } from 'react-i18next' import cn from '@/utils/classnames' import exploreI18n from '@/i18n/en-US/explore' import type { AppCategory } from '@/models/explore' import { ThumbsUp } from '@/app/components/base/icons/src/vender/line/alertsAndFeedback' const categoryI18n = exploreI18n.category export type ICategoryProps = { className?: string list: AppCategory[] value: string onChange: (value: AppCategory | string) => void /** * default value for searchparam 'category' in en */ allCategoriesEn: string } const Category: FC = ({ className, list, value, onChange, allCategoriesEn, }) => { const { t } = useTranslation() const isAllCategories = !list.includes(value as AppCategory) const itemClassName = (isSelected: boolean) => cn( 'flex items-center px-3 py-[7px] h-[32px] rounded-lg border-[0.5px] border-transparent text-gray-700 font-medium leading-[18px] cursor-pointer hover:bg-gray-200', isSelected && 'bg-white border-gray-200 shadow-xs text-primary-600 hover:bg-white', ) return (
onChange(allCategoriesEn)} > {t('explore.apps.allCategories')}
{list.map(name => (
onChange(name)} > {categoryI18n[name] ? t(`explore.category.${name}`) : name}
))}
) } export default React.memo(Category)