feat(mui): migrate Warehouse Receipts (Příjmy) onto MUI kit

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
BOHA
2026-06-06 23:33:20 +02:00
parent 91686f5999
commit 06c6e242e7

View File

@@ -1,12 +1,10 @@
import { useState } from "react"; import { useState } from "react";
import { useNavigate } from "react-router-dom"; import { useNavigate } from "react-router-dom";
import { useQuery } from "@tanstack/react-query"; import { useQuery } from "@tanstack/react-query";
import { useAlert } from "../context/AlertContext";
import { useAuth } from "../context/AuthContext"; import { useAuth } from "../context/AuthContext";
import Forbidden from "../components/Forbidden"; import Forbidden from "../components/Forbidden";
import AdminDatePicker from "../components/AdminDatePicker"; import { motion } from "framer-motion";
import { motion, AnimatePresence } from "framer-motion"; import Box from "@mui/material/Box";
import Pagination from "../components/Pagination";
import useDebounce from "../hooks/useDebounce"; import useDebounce from "../hooks/useDebounce";
import { usePaginatedQuery } from "../hooks/usePaginatedQuery"; import { usePaginatedQuery } from "../hooks/usePaginatedQuery";
@@ -16,13 +14,31 @@ import {
warehouseSupplierListOptions, warehouseSupplierListOptions,
type WarehouseReceipt, type WarehouseReceipt,
} from "../lib/queries/warehouse"; } from "../lib/queries/warehouse";
import {
Button,
Card,
DataTable,
Pagination,
TextField,
Select,
DateField,
StatusChip,
PageHeader,
FilterBar,
EmptyState,
LoadingState,
type DataColumn,
} from "../ui";
const PER_PAGE = 20; const PER_PAGE = 20;
const STATUS_BADGE: Record<string, string> = { const STATUS_COLOR: Record<
DRAFT: "admin-badge-warning", string,
CONFIRMED: "admin-badge-active", "warning" | "success" | "error" | "info" | "default"
CANCELLED: "admin-badge-danger", > = {
DRAFT: "warning",
CONFIRMED: "success",
CANCELLED: "error",
}; };
const STATUS_LABEL: Record<string, string> = { const STATUS_LABEL: Record<string, string> = {
@@ -31,8 +47,23 @@ const STATUS_LABEL: Record<string, string> = {
CANCELLED: "Zrušeno", CANCELLED: "Zrušeno",
}; };
const PlusIcon = (
<svg
width="20"
height="20"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
>
<line x1="12" y1="5" x2="12" y2="19" />
<line x1="5" y1="12" x2="19" y2="12" />
</svg>
);
export default function WarehouseReceipts() { export default function WarehouseReceipts() {
const { hasPermission } = useAuth(); const { hasPermission } = useAuth();
const navigate = useNavigate();
const [page, setPage] = useState(1); const [page, setPage] = useState(1);
const [search, setSearch] = useState(""); const [search, setSearch] = useState("");
@@ -60,16 +91,10 @@ export default function WarehouseReceipts() {
}), }),
); );
const navigate = useNavigate();
if (!hasPermission("warehouse.view")) return <Forbidden />; if (!hasPermission("warehouse.view")) return <Forbidden />;
const canOperate = hasPermission("warehouse.operate"); const canOperate = hasPermission("warehouse.operate");
const handleRowClick = (receipt: WarehouseReceipt) => {
navigate(`/warehouse/receipts/${receipt.id}`);
};
const resetFilters = () => { const resetFilters = () => {
setSearch(""); setSearch("");
setStatusFilter(""); setStatusFilter("");
@@ -79,252 +104,193 @@ export default function WarehouseReceipts() {
setPage(1); setPage(1);
}; };
const hasActiveFilters = statusFilter || supplierId || dateFrom || dateTo; const hasActiveFilters = !!(statusFilter || supplierId || dateFrom || dateTo);
if (isPending) { if (isPending) {
return ( return <LoadingState />;
<div className="admin-loading">
<div className="admin-spinner" />
</div>
);
} }
const total = pagination?.total ?? items.length;
const subtitle = `${total} ${
total === 1 ? "doklad" : total >= 2 && total <= 4 ? "doklady" : "dokladů"
}`;
const columns: DataColumn<WarehouseReceipt>[] = [
{
key: "receipt_number",
header: "Číslo dokladu",
width: "15%",
mono: true,
bold: true,
render: (r) => r.receipt_number || "—",
},
{
key: "supplier",
header: "Dodavatel",
width: "22%",
render: (r) => r.supplier?.name || "—",
},
{
key: "status",
header: "Stav",
width: "13%",
render: (r) => (
<StatusChip
label={STATUS_LABEL[r.status] ?? r.status}
color={STATUS_COLOR[r.status] ?? "default"}
/>
),
},
{
key: "delivery_note_number",
header: "Dodací list",
width: "18%",
mono: true,
render: (r) => r.delivery_note_number || "—",
},
{
key: "created_at",
header: "Vytvořeno",
width: "18%",
mono: true,
render: (r) => formatDate(r.created_at),
},
{
key: "items_count",
header: "Položek",
width: "14%",
mono: true,
render: (r) => String(r._count?.items ?? 0),
},
];
return ( return (
<div> <Box>
<motion.div <motion.div
className="admin-page-header"
initial={{ opacity: 0, y: 12 }} initial={{ opacity: 0, y: 12 }}
animate={{ opacity: 1, y: 0 }} animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.25 }} transition={{ duration: 0.25 }}
> >
<div> <PageHeader
<h1 className="admin-page-title">Příjmové doklady</h1> title="Příjmové doklady"
<p className="admin-page-subtitle"> subtitle={subtitle}
{pagination?.total ?? items.length}{" "} actions={
{pagination?.total === 1 canOperate ? (
? "doklad" <Button
: pagination?.total !== undefined && startIcon={PlusIcon}
pagination.total >= 2 && onClick={() => navigate("/warehouse/receipts/new")}
pagination.total <= 4
? "doklady"
: "dokladů"}
</p>
</div>
<div className="admin-page-actions">
{canOperate && (
<button
onClick={() => navigate("/warehouse/receipts/new")}
className="admin-btn admin-btn-primary"
>
<svg
width="20"
height="20"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
> >
<line x1="12" y1="5" x2="12" y2="19" /> Nový doklad
<line x1="5" y1="12" x2="19" y2="12" /> </Button>
</svg> ) : undefined
Nový doklad }
</button> />
)}
</div>
</motion.div> </motion.div>
<motion.div <FilterBar>
className="admin-card" <Box sx={{ flex: "1 1 220px" }}>
initial={{ opacity: 0, y: 12 }} <TextField
animate={{ opacity: 1, y: 0 }} value={search}
transition={{ duration: 0.25, delay: 0.06 }} onChange={(e) => {
style={{ opacity: isFetching ? 0.6 : 1, transition: "opacity 0.2s" }} setSearch(e.target.value);
> setPage(1);
<div className="admin-card-body"> }}
<div className="admin-search-bar mb-4"> placeholder="Hledat podle čísla dokladu..."
<div className="admin-search"> fullWidth
<svg />
width="16" </Box>
height="16" <Box sx={{ flex: "0 0 160px" }}>
viewBox="0 0 24 24" <Select
fill="none" value={statusFilter}
stroke="currentColor" onChange={(val) => {
strokeWidth="2" setStatusFilter(val);
strokeLinecap="round" setPage(1);
strokeLinejoin="round" }}
> options={[
<circle cx="11" cy="11" r="8" /> { value: "", label: "Všechny stavy" },
<line x1="21" y1="21" x2="16.65" y2="16.65" /> { value: "DRAFT", label: "Návrh" },
</svg> { value: "CONFIRMED", label: "Potvrzeno" },
<input { value: "CANCELLED", label: "Zrušeno" },
type="text" ]}
value={search} />
onChange={(e) => { </Box>
setSearch(e.target.value); {suppliers.length > 0 && (
setPage(1); <Box sx={{ flex: "0 0 200px" }}>
}} <Select
placeholder="Hledat podle čísla dokladu..." value={supplierId === "" ? "" : String(supplierId)}
className="admin-form-input"
/>
</div>
<select
value={statusFilter}
onChange={(e) => {
setStatusFilter(e.target.value);
setPage(1);
}}
className="admin-form-select"
>
<option value="">Všechny stavy</option>
<option value="DRAFT">Návrh</option>
<option value="CONFIRMED">Potvrzeno</option>
<option value="CANCELLED">Zrušeno</option>
</select>
{suppliers.length > 0 && (
<select
value={supplierId}
onChange={(e) => {
setSupplierId(
e.target.value === "" ? "" : Number(e.target.value),
);
setPage(1);
}}
className="admin-form-select"
>
<option value="">Všichni dodavatelé</option>
{suppliers.map((s) => (
<option key={s.id} value={s.id}>
{s.name}
</option>
))}
</select>
)}
<AdminDatePicker
mode="date"
value={dateFrom}
onChange={(val) => { onChange={(val) => {
setDateFrom(val); setSupplierId(val === "" ? "" : Number(val));
setPage(1); setPage(1);
}} }}
placeholder="Od" options={[
{ value: "", label: "Všichni dodavatelé" },
...suppliers.map((s) => ({
value: String(s.id),
label: s.name,
})),
]}
/> />
<AdminDatePicker </Box>
mode="date" )}
value={dateTo} <Box sx={{ flex: "0 0 150px" }}>
onChange={(val) => { <DateField
setDateTo(val); value={dateFrom}
setPage(1); onChange={(val) => {
}} setDateFrom(val);
placeholder="Do" setPage(1);
/> }}
{hasActiveFilters && ( label="Od"
<button />
type="button" </Box>
className="admin-btn admin-btn-secondary" <Box sx={{ flex: "0 0 150px" }}>
onClick={resetFilters} <DateField
style={{ whiteSpace: "nowrap" }} value={dateTo}
> onChange={(val) => {
Zrušit filtry setDateTo(val);
</button> setPage(1);
)} }}
</div> label="Do"
/>
</Box>
{hasActiveFilters && (
<Button variant="outlined" onClick={resetFilters}>
Zrušit filtry
</Button>
)}
</FilterBar>
<AnimatePresence mode="wait"> <Card sx={{ opacity: isFetching ? 0.6 : 1, transition: "opacity .2s" }}>
<motion.div <DataTable<WarehouseReceipt>
key={`${debouncedSearch}-${statusFilter}-${supplierId}-${dateFrom}-${dateTo}-${page}-${items.length}`} columns={columns}
initial={{ opacity: 0, y: 6 }} rows={items}
animate={{ opacity: 1, y: 0 }} rowKey={(r) => r.id}
exit={{ opacity: 0 }} onRowClick={(r) => navigate(`/warehouse/receipts/${r.id}`)}
transition={{ duration: 0.15 }} empty={
> search || hasActiveFilters ? (
{items.length === 0 && ( <EmptyState title="Žádné doklady pro zadaný filtr." />
<div className="admin-empty-state"> ) : (
<div className="admin-empty-icon"> <EmptyState
<svg title="Zatím nejsou žádné příjmové doklady."
width="28" action={
height="28" canOperate ? (
viewBox="0 0 24 24" <Button
fill="none" startIcon={PlusIcon}
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" />
<polyline points="14 2 14 8 20 8" />
<line x1="16" y1="13" x2="8" y2="13" />
<line x1="16" y1="17" x2="8" y2="17" />
</svg>
</div>
<p>
{search || hasActiveFilters
? "Žádné doklady pro zadaný filtr."
: "Zatím nejsou žádné příjmové doklady."}
</p>
{canOperate && !search && !hasActiveFilters && (
<button
onClick={() => navigate("/warehouse/receipts/new")} onClick={() => navigate("/warehouse/receipts/new")}
className="admin-btn admin-btn-primary"
> >
Vytvořit první doklad Vytvořit první doklad
</button> </Button>
)} ) : undefined
</div> }
)} />
{items.length > 0 && ( )
<div className="admin-table-responsive"> }
<table className="admin-table"> />
<thead> <Pagination
<tr> page={page}
<th>Číslo dokladu</th> pageCount={pagination?.total_pages ?? 1}
<th >Dodavatel</th> onChange={setPage}
<th>Stav</th> />
<th>Dodací list</th> </Card>
<th>Vytvořeno</th> </Box>
<th>Položek</th>
</tr>
</thead>
<tbody>
{items.map((receipt) => (
<tr
key={receipt.id}
onClick={() => handleRowClick(receipt)}
style={{ cursor: "pointer" }}
>
<td className="admin-mono fw-500">
{receipt.receipt_number || "—"}
</td>
<td >
{receipt.supplier?.name || "—"}
</td>
<td>
<span
className={`admin-badge ${STATUS_BADGE[receipt.status] ?? ""}`}
>
{STATUS_LABEL[receipt.status] ?? receipt.status}
</span>
</td>
<td className="admin-mono">
{receipt.delivery_note_number || "—"}
</td>
<td className="admin-mono">
{formatDate(receipt.created_at)}
</td>
<td className="admin-mono">
{receipt._count?.items ?? 0}
</td>
</tr>
))}
</tbody>
</table>
</div>
)}
</motion.div>
</AnimatePresence>
<Pagination pagination={pagination} onPageChange={setPage} />
</div>
</motion.div>
</div>
); );
} }