| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 | import type { FC } from 'react'import { useTranslation } from 'react-i18next'import { RiArrowDownSLine } from '@remixicon/react'import type {  Model,  ModelItem,  ModelProvider,} from '../declarations'import { MODEL_STATUS_TEXT } from '../declarations'import { useLanguage } from '../hooks'import ModelIcon from '../model-icon'import ModelName from '../model-name'import cn from '@/utils/classnames'import { useProviderContext } from '@/context/provider-context'import { SlidersH } from '@/app/components/base/icons/src/vender/line/mediaAndDevices'import { AlertTriangle } from '@/app/components/base/icons/src/vender/line/alertsAndFeedback'import Tooltip from '@/app/components/base/tooltip'export type TriggerProps = {  open?: boolean  disabled?: boolean  currentProvider?: ModelProvider | Model  currentModel?: ModelItem  providerName?: string  modelId?: string  hasDeprecated?: boolean  modelDisabled?: boolean  isInWorkflow?: boolean}const Trigger: FC<TriggerProps> = ({  disabled,  currentProvider,  currentModel,  providerName,  modelId,  hasDeprecated,  modelDisabled,  isInWorkflow,}) => {  const { t } = useTranslation()  const language = useLanguage()  const { modelProviders } = useProviderContext()  return (    <div      className={cn(        'relative flex items-center px-2 h-8 rounded-lg  cursor-pointer',        !isInWorkflow && 'border hover:border-[1.5px]',        !isInWorkflow && (disabled ? 'border-[#F79009] bg-[#FFFAEB]' : 'border-[#444CE7] bg-primary-50'),        isInWorkflow && 'pr-[30px] bg-gray-100 border border-gray-100  hover:border-gray-200',      )}    >      {        currentProvider && (          <ModelIcon            className='mr-1.5 !w-5 !h-5'            provider={currentProvider}            modelName={currentModel?.model}          />        )      }      {        !currentProvider && (          <ModelIcon            className='mr-1.5 !w-5 !h-5'            provider={modelProviders.find(item => item.provider === providerName)}            modelName={modelId}          />        )      }      {        currentModel && (          <ModelName            className='mr-1.5 text-gray-900'            modelItem={currentModel}            showMode            modeClassName={cn(!isInWorkflow ? '!text-[#444CE7] !border-[#A4BCFD]' : '!text-gray-500 !border-black/8')}            showFeatures            featuresClassName={cn(!isInWorkflow ? '!text-[#444CE7] !border-[#A4BCFD]' : '!text-gray-500 !border-black/8')}          />        )      }      {        !currentModel && (          <div className='mr-1 text-[13px] font-medium text-gray-900 truncate'>            {modelId}          </div>        )      }      {        disabled          ? (            <Tooltip              popupContent={                hasDeprecated                  ? t('common.modelProvider.deprecated')                  : (modelDisabled && currentModel)                    ? MODEL_STATUS_TEXT[currentModel.status as string][language]                    : ''              }            >              <AlertTriangle className='w-4 h-4 text-[#F79009]' />            </Tooltip>          )          : (            <SlidersH className={cn(!isInWorkflow ? 'text-indigo-600' : 'text-gray-500', 'shrink-0 w-4 h-4')} />          )      }      {isInWorkflow && (<RiArrowDownSLine className='absolute top-[9px] right-2 w-3.5 h-3.5 text-gray-500' />)}    </div>  )}export default Trigger
 |