Spaces:
Sleeping
Sleeping
File size: 7,392 Bytes
d97b8f9 | 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 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 | import React, { useState, useEffect } from 'react';
import { Button } from '@/components/ui/button';
import { Textarea } from '@/components/ui/textarea';
import { CheckCircle, XCircle, Loader2, AlertCircle } from 'lucide-react';
import { ASSET_REQUEST_CONFIG } from '@/types/asset-request';
interface ActionDialogProps {
isOpen: boolean;
onClose: () => void;
onConfirm: (comments: string) => Promise<void>;
title: string;
description: string;
actionType: 'approve' | 'reject';
requestId: number;
employeeName: string;
}
const ActionDialog: React.FC<ActionDialogProps> = ({
isOpen,
onClose,
onConfirm,
title,
description,
actionType,
requestId,
employeeName,
}) => {
const [comments, setComments] = useState('');
const [isSubmitting, setIsSubmitting] = useState(false);
const [error, setError] = useState('');
// Reset state when dialog opens
useEffect(() => {
if (isOpen) {
setComments('');
setError('');
setIsSubmitting(false);
}
}, [isOpen]);
// Handle escape key and body scroll
useEffect(() => {
if (!isOpen) return;
const handleEscape = (e: KeyboardEvent) => {
if (e.key === 'Escape' && !isSubmitting) {
onClose();
}
};
document.addEventListener('keydown', handleEscape);
document.body.style.overflow = 'hidden';
return () => {
document.removeEventListener('keydown', handleEscape);
document.body.style.overflow = 'unset';
};
}, [isOpen, isSubmitting, onClose]);
const handleSubmit = async () => {
setError('');
if (!comments.trim() || comments.trim().length < 5) {
setError('Please provide at least 5 characters of comments');
return;
}
setIsSubmitting(true);
try {
await onConfirm(comments.trim());
onClose();
} catch (err) {
setError(err instanceof Error ? err.message : 'An error occurred');
} finally {
setIsSubmitting(false);
}
};
const handleOverlayClick = (e: React.MouseEvent) => {
if (!isSubmitting && e.target === e.currentTarget) {
onClose();
}
};
if (!isOpen) return null;
return (
<div
className="fixed inset-0 z-[999] flex items-center justify-center p-4 overflow-y-auto"
role="dialog"
aria-modal="true"
aria-labelledby="dialog-title"
>
{/* Overlay */}
<div
className="fixed inset-0 bg-black/80 backdrop-blur-sm transition-opacity"
onClick={handleOverlayClick}
aria-hidden="true"
/>
{/* Modal Content */}
<div
className="relative z-[1000] w-full max-w-md rounded-lg border bg-background shadow-lg animate-in fade-in-0 zoom-in-95 duration-200"
onClick={(e) => e.stopPropagation()}
>
{/* Header */}
<div className="flex items-start gap-3 p-6 border-b">
<div className={`p-2 rounded-full flex-shrink-0 ${
actionType === 'approve'
? 'bg-green-100'
: 'bg-red-100'
}`}>
{actionType === 'approve' ? (
<CheckCircle className="h-5 w-5 text-green-600" />
) : (
<XCircle className="h-5 w-5 text-red-600" />
)}
</div>
<div className="flex-1 min-w-0">
<h2
id="dialog-title"
className="text-lg font-semibold text-foreground"
>
{title}
</h2>
<p className="text-sm text-muted-foreground mt-1">
{description}
</p>
</div>
</div>
{/* Content */}
<div className="p-6 space-y-4">
{/* Request Info */}
<div className="bg-muted rounded-md p-3 text-sm space-y-1">
<div className="flex justify-between">
<span className="text-muted-foreground">Request ID:</span>
<span className="font-medium">#{requestId}</span>
</div>
<div className="flex justify-between">
<span className="text-muted-foreground">Employee:</span>
<span className="font-medium">{employeeName}</span>
</div>
</div>
{/* Comments Input */}
<div>
<label htmlFor="comments" className="text-sm font-medium mb-2 block">
{actionType === 'approve' ? 'Approval Comments' : 'Reason for Rejection'}
<span className="text-destructive ml-1">*</span>
</label>
<Textarea
id="comments"
placeholder={
actionType === 'approve'
? 'Provide comments for your approval decision (minimum 5 characters)...'
: 'Provide a clear reason for rejection (minimum 5 characters)...'
}
value={comments}
onChange={(e) => {
setComments(e.target.value);
setError('');
}}
maxLength={ASSET_REQUEST_CONFIG.MAX_ADMIN_COMMENTS_LENGTH}
rows={4}
className="resize-none w-full"
disabled={isSubmitting}
autoFocus
/>
<div className="flex justify-between items-center mt-1">
<div className="text-xs text-muted-foreground">
{comments.length}/{ASSET_REQUEST_CONFIG.MAX_ADMIN_COMMENTS_LENGTH} characters
</div>
{error && (
<div className="flex items-center gap-1 text-xs text-destructive">
<AlertCircle className="h-3 w-3" />
{error}
</div>
)}
</div>
</div>
{/* Action Buttons */}
<div className="flex justify-end gap-3 pt-2">
<Button
type="button"
variant="outline"
onClick={onClose}
disabled={isSubmitting}
>
Cancel
</Button>
<Button
type="button"
onClick={handleSubmit}
disabled={
isSubmitting ||
!comments.trim() ||
comments.trim().length < 5
}
className={
actionType === 'approve'
? 'bg-green-600 hover:bg-green-700 text-white'
: 'bg-red-600 hover:bg-red-700 text-white'
}
>
{isSubmitting ? (
<>
<Loader2 className="h-4 w-4 mr-2 animate-spin" />
{actionType === 'approve' ? 'Approving...' : 'Rejecting...'}
</>
) : (
<>
{actionType === 'approve' ? (
<CheckCircle className="h-4 w-4 mr-2" />
) : (
<XCircle className="h-4 w-4 mr-2" />
)}
{actionType === 'approve' ? 'Approve Request' : 'Reject Request'}
</>
)}
</Button>
</div>
</div>
</div>
</div>
);
};
export default ActionDialog;
|