import type { FC } from 'react'
import type { ImageFile } from '@/types/app'
import { Button } from '@langgenius/dify-ui/button'
import { useState } from 'react'
import { useTranslation } from 'react-i18next'
import { TransferMethod } from '@/types/app'

type ImageLinkInputProps = {
  onUpload: (imageFile: ImageFile) => void
  disabled?: boolean
}
const regex = /^(https?|ftp):\/\//
const ImageLinkInput: FC<ImageLinkInputProps> = ({
  onUpload,
  disabled,
}) => {
  const { t } = useTranslation()
  const [imageLink, setImageLink] = useState('')

  const placeholder = t('imageUploader.pasteImageLinkInputPlaceholder', { ns: 'common' })
  /* v8 ignore next -- defensive i18n fallback; translation key resolves to non-empty text in normal runtime/test setup, so empty-placeholder branch is not exercised without forcing i18n internals. @preserve */
  const safeText = placeholder || ''

  const handleClick = () => {
    /* v8 ignore next 2 -- same condition drives Button.disabled; when true, click does not invoke onClick in user-level flow. @preserve */
    if (disabled)
      return

    const imageFile = {
      type: TransferMethod.remote_url,
      _id: `${Date.now()}`,
      fileId: '',
      progress: regex.test(imageLink) ? 0 : -1,
      url: imageLink,
    }

    onUpload(imageFile)
  }

  return (
    <div className="flex h-8 items-center rounded-lg border border-components-panel-border bg-components-panel-bg pr-1 pl-1.5 shadow-xs">
      <input
        type="text"
        className="mr-0.5 h-[18px] grow appearance-none bg-transparent px-1 text-[13px] text-text-primary outline-hidden"
        value={imageLink}
        onChange={e => setImageLink(e.target.value)}
        placeholder={safeText}
        data-testid="image-link-input"
      />
      <Button
        variant="primary"
        size="small"
        disabled={!imageLink || disabled}
        onClick={handleClick}
      >
        {t('operation.ok', { ns: 'common' })}
      </Button>
    </div>
  )
}

export default ImageLinkInput
