import type { FC } from 'react'
import type { IChatItem } from '@/app/components/base/chat/chat/type'
import { useClickAway } from 'ahooks'
import { useEffect, useRef, useState } from 'react'
import { useTranslation } from 'react-i18next'
import { CopyFeedbackNew } from '@/app/components/base/copy-feedback'
import Card from './card'

type PromptLogModalProps = {
  currentLogItem?: IChatItem
  width: number
  onCancel: () => void
}
const PromptLogModal: FC<PromptLogModalProps> = ({
  currentLogItem,
  width,
  onCancel,
}) => {
  const { t } = useTranslation()
  const ref = useRef(null)
  const [mounted, setMounted] = useState(false)

  useClickAway(() => {
    if (mounted)
      onCancel()
  }, ref)

  useEffect(() => {
    setMounted(true)
  }, [])

  if (!currentLogItem || !currentLogItem.log)
    return null

  return (
    <div
      className="relative z-10 flex flex-col rounded-xl border-[0.5px] border-components-panel-border bg-components-panel-bg shadow-xl"
      style={{
        width: 480,
        position: 'fixed',
        top: 56 + 8,
        left: 8 + (width - 480),
        bottom: 16,
      }}
      ref={ref}
    >
      <div className="flex h-14 shrink-0 items-center justify-between border-b border-divider-regular pr-5 pl-6">
        <div className="text-base font-semibold text-text-primary">PROMPT LOG</div>
        <div className="flex items-center">
          {
            currentLogItem.log?.length === 1 && (
              <>
                <CopyFeedbackNew className="size-6" content={currentLogItem.log[0]!.text} />
                <div className="mx-2.5 h-[14px] w-px bg-divider-regular" />
              </>
            )
          }
          <button
            type="button"
            aria-label={t('operation.close', { ns: 'common' })}
            onClick={onCancel}
            className="flex size-6 cursor-pointer items-center justify-center rounded-md border-none bg-transparent p-0 focus:outline-none focus-visible:ring-2 focus-visible:ring-components-button-secondary-accent-border"
          >
            <span className="i-ri-close-line size-4 text-text-tertiary" aria-hidden="true" />
          </button>
        </div>
      </div>
      <div className="grow overflow-y-auto p-2">
        <Card log={currentLogItem.log} />
      </div>
    </div>
  )
}

export default PromptLogModal
