All files / web/src/components/flowchart DeleteToast.tsx

0% Statements 0/165
0% Branches 0/1
0% Functions 0/1
0% Lines 0/165

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166                                                                                                                                                                                                                                                                                                                                           
'use client'

import { useCallback, useEffect, useRef, useState } from 'react'
import { css } from '../../../styled-system/css'

const UNDO_TIMEOUT = 5000 // 5 seconds to undo

export interface PendingDeletion {
  id: string
  title: string
  createdAt: number
}

export interface DeleteToastProps {
  deletion: PendingDeletion
  onUndo: (deletion: PendingDeletion) => void
  onConfirm: (deletion: PendingDeletion) => void
}

export function DeleteToast({ deletion, onUndo, onConfirm }: DeleteToastProps) {
  const [progress, setProgress] = useState(100)
  const [isPaused, setIsPaused] = useState(false)
  const startTimeRef = useRef(Date.now())
  const remainingTimeRef = useRef(UNDO_TIMEOUT)

  useEffect(() => {
    if (isPaused) return

    const tick = () => {
      const elapsed = Date.now() - startTimeRef.current
      const remaining = Math.max(0, remainingTimeRef.current - elapsed)
      const progressPercent = (remaining / UNDO_TIMEOUT) * 100

      setProgress(progressPercent)

      if (remaining <= 0) {
        onConfirm(deletion)
      }
    }

    const interval = setInterval(tick, 50)
    tick()

    return () => clearInterval(interval)
  }, [deletion, isPaused, onConfirm])

  const handleMouseEnter = useCallback(() => {
    remainingTimeRef.current = (progress / 100) * UNDO_TIMEOUT
    setIsPaused(true)
  }, [progress])

  const handleMouseLeave = useCallback(() => {
    startTimeRef.current = Date.now()
    setIsPaused(false)
  }, [])

  const handleUndo = useCallback(() => {
    onUndo(deletion)
  }, [deletion, onUndo])

  return (
    <div
      onMouseEnter={handleMouseEnter}
      onMouseLeave={handleMouseLeave}
      className={css({
        position: 'relative',
        backgroundColor: { base: 'gray.800', _dark: 'gray.800' },
        borderRadius: 'lg',
        padding: '4',
        boxShadow: '0 10px 40px rgba(0,0,0,0.4)',
        border: '1px solid',
        borderColor: { base: 'gray.700', _dark: 'gray.700' },
        minWidth: '280px',
        maxWidth: '360px',
        overflow: 'hidden',
      })}
    >
      {/* Progress bar */}
      <div
        className={css({
          position: 'absolute',
          bottom: 0,
          left: 0,
          right: 0,
          height: '3px',
          backgroundColor: 'gray.700',
        })}
      >
        <div
          className={css({
            height: '100%',
            backgroundColor: 'red.500',
            transition: isPaused ? 'none' : 'width 0.05s linear',
          })}
          style={{ width: `${progress}%` }}
        />
      </div>

      {/* Content */}
      <div className={css({ display: 'flex', alignItems: 'center', gap: '3' })}>
        <div className={css({ fontSize: 'xl' })}>🗑️</div>
        <div className={css({ flex: 1, minWidth: 0 })}>
          <div
            className={css({
              color: 'gray.100',
              fontWeight: 'medium',
              marginBottom: '2',
              overflow: 'hidden',
              textOverflow: 'ellipsis',
              whiteSpace: 'nowrap',
            })}
          >
            Deleted "{deletion.title}"
          </div>
          <button
            type="button"
            onClick={handleUndo}
            className={css({
              paddingX: '3',
              paddingY: '1',
              backgroundColor: 'blue.600',
              color: 'white',
              borderRadius: 'md',
              border: 'none',
              cursor: 'pointer',
              fontSize: 'sm',
              fontWeight: 'medium',
              _hover: { backgroundColor: 'blue.500' },
            })}
          >
            Undo
          </button>
        </div>
      </div>
    </div>
  )
}

export interface DeleteToastContainerProps {
  deletions: PendingDeletion[]
  onUndo: (deletion: PendingDeletion) => void
  onConfirm: (deletion: PendingDeletion) => void
}

export function DeleteToastContainer({ deletions, onUndo, onConfirm }: DeleteToastContainerProps) {
  if (deletions.length === 0) return null

  return (
    <div
      className={css({
        position: 'fixed',
        bottom: '4',
        right: '4',
        zIndex: 10000,
        display: 'flex',
        flexDirection: 'column',
        gap: '2',
      })}
    >
      {deletions.map((deletion) => (
        <DeleteToast key={deletion.id} deletion={deletion} onUndo={onUndo} onConfirm={onConfirm} />
      ))}
    </div>
  )
}