| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274 |
- import { useState, useEffect, useCallback } from 'react';
- import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query';
- import { useTranslation } from 'react-i18next';
- import { MapPin, Plus, Loader2, Pencil, Trash2, X } from 'lucide-react';
- import { api, type StorageLocation } from '../api/client';
- import { Button } from './Button';
- import { ConfirmModal } from './ConfirmModal';
- import { useToast } from '../contexts/ToastContext';
- import { inventoryLocationsQueryKey, invalidateInventoryLocations } from '../utils/inventoryQueries';
- interface LocationsModalProps {
- open: boolean;
- onClose: () => void;
- onPickLocation?: (locationId: number) => void;
- }
- export function LocationsModal({ open, onClose, onPickLocation }: LocationsModalProps) {
- const { t } = useTranslation();
- const queryClient = useQueryClient();
- const { showToast } = useToast();
- const [editorOpen, setEditorOpen] = useState(false);
- const [editing, setEditing] = useState<StorageLocation | null>(null);
- const [name, setName] = useState('');
- const [deleteTarget, setDeleteTarget] = useState<StorageLocation | null>(null);
- const { data: locations = [], isLoading } = useQuery({
- queryKey: inventoryLocationsQueryKey,
- queryFn: api.getLocations,
- enabled: open,
- });
- const invalidate = () => {
- invalidateInventoryLocations(queryClient);
- queryClient.invalidateQueries({ queryKey: ['inventory-spools'] });
- queryClient.invalidateQueries({ queryKey: ['spoolman-inventory-spools'] });
- };
- const saveMutation = useMutation({
- mutationFn: async () => {
- const trimmed = name.trim();
- if (!trimmed) throw new Error(t('locations.nameRequired'));
- if (editing) {
- return api.updateLocation(editing.id, { name: trimmed });
- }
- return api.createLocation({ name: trimmed });
- },
- onSuccess: () => {
- showToast(t(editing ? 'locations.updated' : 'locations.created'), 'success');
- setEditorOpen(false);
- setEditing(null);
- setName('');
- invalidate();
- },
- onError: (err: Error) => {
- showToast(err.message || t('locations.saveFailed'), 'error');
- },
- });
- const deleteMutation = useMutation({
- mutationFn: (id: number) => api.deleteLocation(id),
- onSuccess: () => {
- showToast(t('locations.deleted'), 'success');
- setDeleteTarget(null);
- invalidate();
- },
- onError: (err: Error) => {
- showToast(err.message || t('locations.deleteFailed'), 'error');
- },
- });
- const openCreate = () => {
- setEditing(null);
- setName('');
- setEditorOpen(true);
- };
- const openEdit = (location: StorageLocation) => {
- setEditing(location);
- setName(location.name);
- setEditorOpen(true);
- };
- const closeEditor = useCallback(() => {
- if (saveMutation.isPending) return;
- setEditorOpen(false);
- setEditing(null);
- setName('');
- }, [saveMutation.isPending]);
- // Esc closes the inner editor first; if it's closed, Esc closes the outer
- // modal — but only when neither save nor delete is mid-flight, so a stray
- // keypress during a network round-trip doesn't drop the user back into the
- // inventory page with an orphaned spinner.
- useEffect(() => {
- if (!open) return;
- const handleKeyDown = (e: KeyboardEvent) => {
- if (e.key !== 'Escape') return;
- if (saveMutation.isPending || deleteMutation.isPending) return;
- if (editorOpen) {
- closeEditor();
- } else if (!deleteTarget) {
- onClose();
- }
- };
- document.addEventListener('keydown', handleKeyDown);
- return () => document.removeEventListener('keydown', handleKeyDown);
- }, [open, editorOpen, deleteTarget, saveMutation.isPending, deleteMutation.isPending, closeEditor, onClose]);
- const handleSave = (e: React.FormEvent) => {
- e.preventDefault();
- saveMutation.mutate();
- };
- if (!open) return null;
- const modalTitleId = 'locations-modal-title';
- const editorTitleId = 'location-editor-title';
- return (
- <div className="fixed inset-0 z-50 flex items-center justify-center">
- <div
- className="absolute inset-0 bg-black/60"
- onClick={() => {
- if (saveMutation.isPending || deleteMutation.isPending) return;
- onClose();
- }}
- />
- <div
- className="relative w-full max-w-2xl mx-4 bg-bambu-dark-secondary border border-bambu-dark-tertiary rounded-xl shadow-2xl max-h-[90vh] flex flex-col"
- role="dialog"
- aria-modal="true"
- aria-labelledby={modalTitleId}
- >
- <div className="flex items-center justify-between gap-4 px-6 py-4 border-b border-bambu-dark-tertiary">
- <div>
- <h2 id={modalTitleId} className="text-lg font-semibold text-white flex items-center gap-2">
- <MapPin className="w-5 h-5 text-bambu-green" />
- {t('locations.title')}
- </h2>
- <p className="text-bambu-gray text-sm mt-0.5">{t('locations.subtitle')}</p>
- </div>
- <div className="flex items-center gap-2">
- <Button onClick={openCreate}>
- <Plus className="w-4 h-4" />
- {t('locations.add')}
- </Button>
- <button
- type="button"
- className="p-1.5 text-bambu-gray hover:text-white rounded"
- onClick={onClose}
- aria-label={t('common.close')}
- >
- <X className="w-5 h-5" />
- </button>
- </div>
- </div>
- <div className="overflow-y-auto">
- {isLoading ? (
- <div className="flex items-center justify-center py-16 text-bambu-gray">
- <Loader2 className="w-6 h-6 animate-spin mr-2" />
- {t('common.loading')}
- </div>
- ) : locations.length === 0 ? (
- <div className="py-16 text-center text-bambu-gray">{t('locations.empty')}</div>
- ) : (
- <table className="w-full text-sm">
- <thead>
- <tr className="border-b border-bambu-dark-tertiary text-left text-bambu-gray">
- <th className="px-4 py-3 font-medium">{t('locations.name')}</th>
- <th className="px-4 py-3 font-medium text-right">{t('locations.spools')}</th>
- <th className="px-4 py-3 font-medium text-right w-32">{t('common.actions')}</th>
- </tr>
- </thead>
- <tbody>
- {locations.map((loc) => (
- <tr
- key={loc.id}
- className="border-b border-bambu-dark-tertiary/60 hover:bg-bambu-dark-tertiary/30 cursor-pointer"
- onClick={() => {
- if (onPickLocation) {
- onPickLocation(loc.id);
- onClose();
- }
- }}
- >
- <td className="px-4 py-3 text-white font-medium">{loc.name}</td>
- <td className="px-4 py-3 text-right text-bambu-gray">{loc.spool_count}</td>
- <td className="px-4 py-3 text-right" onClick={(e) => e.stopPropagation()}>
- <div className="flex items-center justify-end gap-1">
- <button
- type="button"
- className="p-1.5 text-bambu-gray hover:text-bambu-green rounded"
- onClick={() => openEdit(loc)}
- title={t('common.edit')}
- aria-label={t('locations.editAria', { name: loc.name, defaultValue: `Edit ${loc.name}` })}
- >
- <Pencil className="w-4 h-4" />
- </button>
- <button
- type="button"
- className="p-1.5 text-bambu-gray hover:text-red-600 dark:hover:text-red-400 rounded disabled:opacity-40"
- disabled={loc.spool_count > 0}
- onClick={() => setDeleteTarget(loc)}
- title={loc.spool_count > 0 ? t('locations.deleteBlocked') : t('common.delete')}
- aria-label={t('locations.deleteAria', { name: loc.name, defaultValue: `Delete ${loc.name}` })}
- >
- <Trash2 className="w-4 h-4" />
- </button>
- </div>
- </td>
- </tr>
- ))}
- </tbody>
- </table>
- )}
- </div>
- </div>
- {editorOpen && (
- <div className="fixed inset-0 z-[60] flex items-center justify-center">
- <div className="absolute inset-0 bg-black/60" onClick={closeEditor} />
- <div
- className="relative w-full max-w-md mx-4 bg-bambu-dark-secondary border border-bambu-dark-tertiary rounded-xl p-6 shadow-2xl"
- role="dialog"
- aria-modal="true"
- aria-labelledby={editorTitleId}
- >
- <h3 id={editorTitleId} className="text-lg font-semibold text-white mb-4">
- {editing ? t('locations.edit') : t('locations.add')}
- </h3>
- <form onSubmit={handleSave}>
- <label className="block text-sm font-medium text-bambu-gray mb-1" htmlFor="location-name">
- {t('locations.name')}
- </label>
- <input
- id="location-name"
- type="text"
- maxLength={255}
- className="w-full px-3 py-2 bg-bambu-dark border border-bambu-dark-tertiary rounded-lg text-white text-sm focus:outline-none focus:border-bambu-green mb-4"
- placeholder={t('locations.createPlaceholder')}
- value={name}
- onChange={(e) => setName(e.target.value)}
- autoFocus
- />
- <div className="flex justify-end gap-2">
- <Button type="button" variant="secondary" onClick={closeEditor}>
- {t('common.cancel')}
- </Button>
- <Button type="submit" disabled={saveMutation.isPending || !name.trim()}>
- {saveMutation.isPending && <Loader2 className="w-4 h-4 animate-spin" />}
- {t('common.save')}
- </Button>
- </div>
- </form>
- </div>
- </div>
- )}
- {deleteTarget && (
- <ConfirmModal
- title={t('locations.confirmDelete', { name: deleteTarget.name })}
- message={t('locations.confirmDeleteMessage')}
- confirmText={t('common.delete')}
- variant="danger"
- isLoading={deleteMutation.isPending}
- onConfirm={() => deleteMutation.mutate(deleteTarget.id)}
- onCancel={() => setDeleteTarget(null)}
- />
- )}
- </div>
- );
- }
|