feat(mui): migrate Projects (Projekty) page onto MUI kit

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
BOHA
2026-06-06 22:27:20 +02:00
parent c0e1b718e6
commit ea6c943a51

View File

@@ -1,17 +1,14 @@
import { useState } from "react"; import { useState } from "react";
import { useQuery } from "@tanstack/react-query"; import { useQuery } from "@tanstack/react-query";
import { useNavigate } from "react-router-dom";
import { motion } from "framer-motion";
import Box from "@mui/material/Box";
import Typography from "@mui/material/Typography";
import IconButton from "@mui/material/IconButton";
import { useAlert } from "../context/AlertContext"; import { useAlert } from "../context/AlertContext";
import { useAuth } from "../context/AuthContext"; import { useAuth } from "../context/AuthContext";
import { Link } from "react-router-dom";
import Forbidden from "../components/Forbidden"; import Forbidden from "../components/Forbidden";
import { motion } from "framer-motion"; import { formatDate } from "../utils/formatters";
import ConfirmModal from "../components/ConfirmModal";
import FormModal from "../components/FormModal";
import FormField from "../components/FormField";
import AdminDatePicker from "../components/AdminDatePicker";
import { formatDate, czechPlural } from "../utils/formatters";
import SortIcon from "../components/SortIcon";
import useTableSort from "../hooks/useTableSort"; import useTableSort from "../hooks/useTableSort";
import { usePaginatedQuery } from "../hooks/usePaginatedQuery"; import { usePaginatedQuery } from "../hooks/usePaginatedQuery";
import { import {
@@ -21,7 +18,21 @@ import {
import { offerCustomersOptions } from "../lib/queries/offers"; import { offerCustomersOptions } from "../lib/queries/offers";
import { userListOptions } from "../lib/queries/users"; import { userListOptions } from "../lib/queries/users";
import { useApiMutation } from "../lib/queries/mutations"; import { useApiMutation } from "../lib/queries/mutations";
import Pagination from "../components/Pagination"; import {
Button,
Card,
DataTable,
Pagination,
Modal,
ConfirmDialog,
Field,
TextField,
Select,
DateField,
StatusChip,
CheckboxField,
type DataColumn,
} from "../ui";
const API_BASE = "/api/admin"; const API_BASE = "/api/admin";
@@ -31,10 +42,13 @@ const STATUS_LABELS: Record<string, string> = {
zruseny: "Zrušený", zruseny: "Zrušený",
}; };
const STATUS_CLASSES: Record<string, string> = { const STATUS_COLORS: Record<
aktivni: "admin-badge-project-aktivni", string,
dokonceny: "admin-badge-project-dokonceny", "default" | "success" | "error" | "warning" | "info"
zruseny: "admin-badge-project-zruseny", > = {
aktivni: "success",
dokonceny: "info",
zruseny: "default",
}; };
interface Project { interface Project {
@@ -50,12 +64,56 @@ interface Project {
order_number?: string; order_number?: string;
} }
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>
);
const EditIcon = (
<svg
width="18"
height="18"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7" />
<path d="M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z" />
</svg>
);
const DeleteIcon = (
<svg
width="18"
height="18"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
>
<polyline points="3 6 5 6 21 6" />
<path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" />
</svg>
);
export default function Projects() { export default function Projects() {
const alert = useAlert(); const alert = useAlert();
const navigate = useNavigate();
const { hasPermission } = useAuth(); const { hasPermission } = useAuth();
const { sort, order, handleSort, activeSort } = const { sort, order, handleSort } = useTableSort("project_number");
useTableSort("project_number");
const [search, setSearch] = useState(""); const [search, setSearch] = useState("");
const [page, setPage] = useState(1); const [page, setPage] = useState(1);
const [deleteTarget, setDeleteTarget] = useState<Project | null>(null); const [deleteTarget, setDeleteTarget] = useState<Project | null>(null);
@@ -183,260 +241,175 @@ export default function Projects() {
); );
} }
const columns: DataColumn<Project>[] = [
{
key: "project_number",
header: "Číslo",
sortKey: "project_number",
mono: true,
render: (p) => p.project_number,
},
{
key: "name",
header: "Název",
sortKey: "name",
bold: true,
render: (p) => p.name || "—",
},
{
key: "customer",
header: "Zákazník",
render: (p) => p.customer_name || "—",
},
{
key: "responsible",
header: "Zodpovědná osoba",
render: (p) => p.responsible_user_name || "—",
},
{
key: "status",
header: "Stav",
sortKey: "status",
render: (p) => (
<StatusChip
label={STATUS_LABELS[p.status] || p.status}
color={STATUS_COLORS[p.status] || "default"}
/>
),
},
{
key: "order",
header: "Objednávka",
render: (p) =>
p.order_id ? (
<Box
component="a"
onClick={(e) => {
e.preventDefault();
navigate(`/orders/${p.order_id}`);
}}
sx={{ cursor: "pointer", color: "text.secondary" }}
>
{p.order_number}
</Box>
) : (
"—"
),
},
{
key: "start_date",
header: "Začátek",
mono: true,
render: (p) => formatDate(p.start_date),
},
{
key: "end_date",
header: "Konec",
mono: true,
render: (p) => formatDate(p.end_date),
},
{
key: "actions",
header: "Akce",
align: "right",
render: (p) => (
<Box sx={{ display: "flex", gap: 0.5, justifyContent: "flex-end" }}>
<IconButton
size="small"
onClick={() => navigate(`/projects/${p.id}`)}
aria-label="Upravit"
title="Upravit"
>
{EditIcon}
</IconButton>
{hasPermission("projects.delete") && !p.order_id && (
<IconButton
size="small"
color="error"
onClick={() => setDeleteTarget(p)}
aria-label="Smazat"
title="Smazat projekt"
>
{DeleteIcon}
</IconButton>
)}
</Box>
),
},
];
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> <Box
<h1 className="admin-page-title">Projekty</h1> sx={{
<p className="admin-page-subtitle"> display: "flex",
{pagination?.total ?? projects.length}{" "} alignItems: "center",
{czechPlural( justifyContent: "space-between",
pagination?.total ?? projects.length, mb: 3,
"projekt", flexWrap: "wrap",
"projekty", gap: 2,
"projektů", }}
)} >
</p> <Typography variant="h4">Projekty</Typography>
</div> {hasPermission("projects.create") && (
{hasPermission("projects.create") && ( <Button startIcon={PlusIcon} onClick={openCreate}>
<div className="admin-page-actions">
<button
onClick={openCreate}
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" />
<line x1="5" y1="12" x2="19" y2="12" />
</svg>
Přidat projekt Přidat projekt
</button> </Button>
</div> )}
)} </Box>
</motion.div> </motion.div>
<Box sx={{ mb: 3 }}>
<TextField
value={search}
onChange={(e) => {
setSearch(e.target.value);
setPage(1);
}}
placeholder="Hledat podle čísla, názvu nebo zákazníka..."
fullWidth
/>
</Box>
<motion.div <motion.div
className="admin-card"
initial={{ opacity: 0, y: 12 }} initial={{ opacity: 0, y: 12 }}
animate={{ opacity: 1, y: 0 }} animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.25, delay: 0.06 }} transition={{ duration: 0.25, delay: 0.06 }}
style={{ opacity: isFetching ? 0.6 : 1, transition: "opacity 0.2s" }}
> >
<div className="admin-card-body"> <Card sx={{ opacity: isFetching ? 0.6 : 1, transition: "opacity .2s" }}>
<div className="admin-search-bar mb-4"> <DataTable<Project>
<input columns={columns}
type="text" rows={projects}
value={search} rowKey={(p) => p.id}
onChange={(e) => { sortBy={sort}
setSearch(e.target.value); sortDir={order}
setPage(1); onSort={handleSort}
}} empty={
className="admin-form-input" <Box sx={{ textAlign: "center", py: 6 }}>
placeholder="Hledat podle čísla, názvu nebo zákazníka..." <Typography color="text.secondary" gutterBottom>
/> Zatím nejsou žádné projekty.
</div> </Typography>
<Typography variant="body2" color="text.secondary">
{projects.length === 0 ? ( Projekty vznikají z objednávek nebo je můžete vytvořit ručně
<div className="admin-empty-state"> tlačítkem Přidat projekt".
<div className="admin-empty-icon"> </Typography>
<svg </Box>
width="28" }
height="28" />
viewBox="0 0 24 24" <Pagination
fill="none" page={page}
stroke="currentColor" pageCount={pagination?.total_pages ?? 1}
strokeWidth="1.5" onChange={setPage}
strokeLinecap="round" />
strokeLinejoin="round" </Card>
>
<path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z" />
</svg>
</div>
<p>Zatím nejsou žádné projekty.</p>
<p
style={{
color: "var(--text-tertiary)",
fontSize: "0.875rem",
}}
>
Projekty vznikají z objednávek nebo je můžete vytvořit ručně
tlačítkem Přidat projekt".
</p>
</div>
) : (
<div className="admin-table-responsive">
<table className="admin-table">
<thead>
<tr>
<th
style={{ cursor: "pointer" }}
onClick={() => handleSort("project_number")}
>
Číslo{" "}
<SortIcon
column="project_number"
sort={activeSort}
order={order}
/>
</th>
<th
style={{ cursor: "pointer" }}
onClick={() => handleSort("name")}
>
Název{" "}
<SortIcon column="name" sort={activeSort} order={order} />
</th>
<th>Zákazník</th>
<th>Zodpovědná osoba</th>
<th
style={{ cursor: "pointer" }}
onClick={() => handleSort("status")}
>
Stav{" "}
<SortIcon
column="status"
sort={activeSort}
order={order}
/>
</th>
<th
style={{ cursor: "pointer" }}
onClick={() => handleSort("start_date")}
>
Začátek{" "}
<SortIcon
column="start_date"
sort={activeSort}
order={order}
/>
</th>
<th
style={{ cursor: "pointer" }}
onClick={() => handleSort("end_date")}
>
Konec{" "}
<SortIcon
column="end_date"
sort={activeSort}
order={order}
/>
</th>
<th>Typ</th>
<th>Objednávka</th>
<th>Akce</th>
</tr>
</thead>
<tbody>
{(projects as Project[]).map((p) => (
<tr key={p.id}>
<td className="admin-mono">
<Link to={`/projects/${p.id}`} className="link-accent">
{p.project_number}
</Link>
</td>
<td className="fw-500">{p.name || ""}</td>
<td>{p.customer_name || ""}</td>
<td>{p.responsible_user_name || ""}</td>
<td>
<span
className={`admin-badge ${STATUS_CLASSES[p.status] || ""}`}
>
{STATUS_LABELS[p.status] || p.status}
</span>
</td>
<td className="admin-mono">{formatDate(p.start_date)}</td>
<td className="admin-mono">{formatDate(p.end_date)}</td>
<td>
<span className="admin-badge">
{p.order_id ? "Z objednávky" : "Samostatný"}
</span>
</td>
<td>
{p.order_id ? (
<Link
to={`/orders/${p.order_id}`}
className="text-secondary"
style={{ textDecoration: "none" }}
>
{p.order_number}
</Link>
) : (
""
)}
</td>
<td>
<div className="admin-table-actions">
<Link
to={`/projects/${p.id}`}
className="admin-btn-icon"
title="Upravit"
aria-label="Upravit"
>
<svg
width="18"
height="18"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
>
<path d="M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7" />
<path d="M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z" />
</svg>
</Link>
{!p.order_id && hasPermission("projects.delete") && (
<button
onClick={() => setDeleteTarget(p)}
className="admin-btn-icon danger"
title="Smazat projekt"
disabled={
deleteMutation.isPending &&
deleteTarget?.id === p.id
}
>
{deleteMutation.isPending &&
deleteTarget?.id === p.id ? (
<div className="admin-spinner admin-spinner-sm" />
) : (
<svg
width="18"
height="18"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
>
<polyline points="3 6 5 6 21 6" />
<path d="M19 6l-1 14a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2L5 6" />
<path d="M10 11v6M14 11v6" />
</svg>
)}
</button>
)}
</div>
</td>
</tr>
))}
</tbody>
</table>
</div>
)}
<Pagination pagination={pagination} onPageChange={setPage} />
</div>
</motion.div> </motion.div>
<ConfirmModal <ConfirmDialog
isOpen={!!deleteTarget} isOpen={!!deleteTarget}
onClose={() => { onClose={() => {
setDeleteTarget(null); setDeleteTarget(null);
@@ -445,133 +418,132 @@ export default function Projects() {
onConfirm={handleDelete} onConfirm={handleDelete}
title="Smazat projekt" title="Smazat projekt"
message={ message={
<> deleteTarget
Opravdu chcete smazat projekt {deleteTarget?.project_number}? ? `Opravdu chcete smazat projekt ${deleteTarget.project_number}?`
<label : ""
className="admin-form-checkbox"
style={{ marginTop: "1rem", display: "flex" }}
>
<input
type="checkbox"
checked={deleteFiles}
onChange={(e) => setDeleteFiles(e.target.checked)}
/>
<span>Smazat i soubory na disku</span>
</label>
</>
} }
confirmText="Smazat" confirmText="Smazat"
type="danger" confirmVariant="danger"
loading={deleteMutation.isPending} loading={deleteMutation.isPending}
/> >
<CheckboxField
label="Smazat i soubory z disku"
checked={deleteFiles}
onChange={setDeleteFiles}
/>
</ConfirmDialog>
<FormModal <Modal
isOpen={showCreate} isOpen={showCreate}
onClose={() => setShowCreate(false)} onClose={() => setShowCreate(false)}
onSubmit={handleCreate} onSubmit={handleCreate}
title="Přidat projekt" title="Nový projekt"
submitLabel="Vytvořit" subtitle={`Číslo projektu: ${
nextNumberQuery.data?.number ??
nextNumberQuery.data?.next_number ??
""
}`}
submitText="Vytvořit"
loading={creating} loading={creating}
> >
<div className="admin-form"> <Field label="Název" required error={createErrors.name}>
<FormField label="Název" error={createErrors.name} required> <TextField
<input value={createForm.name}
type="text" placeholder="Název projektu"
value={createForm.name} error={!!createErrors.name}
onChange={(e) => { onChange={(e) => {
setCreateForm({ ...createForm, name: e.target.value }); setCreateForm({ ...createForm, name: e.target.value });
setCreateErrors((p) => ({ ...p, name: "" })); setCreateErrors((p) => ({ ...p, name: "" }));
}} }}
className="admin-form-input" />
placeholder="Název projektu" </Field>
aria-invalid={!!createErrors.name}
/>
</FormField>
<div className="admin-form-row"> <Box sx={{ display: "flex", gap: 2, flexWrap: "wrap" }}>
<FormField label="Zákazník"> <Box sx={{ flex: "1 1 200px" }}>
<select <Field label="Zákazník">
<Select
value={createForm.customer_id} value={createForm.customer_id}
onChange={(e) => onChange={(value) =>
setCreateForm({ ...createForm, customer_id: e.target.value }) setCreateForm({ ...createForm, customer_id: value })
} }
className="admin-form-input" options={[
> { value: "", label: " bez zákazníka " },
<option value="">— bez zákazníka —</option> ...(customersQuery.data ?? []).map((c) => ({
{(customersQuery.data ?? []).map((c) => ( value: String(c.id),
<option key={c.id} value={c.id}> label: c.name,
{c.name} })),
</option> ]}
))} />
</select> </Field>
</FormField> </Box>
<Box sx={{ flex: "1 1 200px" }}>
<FormField label="Zodpovědná osoba"> <Field label="Zodpovědná osoba">
<select <Select
value={createForm.responsible_user_id} value={createForm.responsible_user_id}
onChange={(e) => onChange={(value) =>
setCreateForm({ setCreateForm({ ...createForm, responsible_user_id: value })
...createForm,
responsible_user_id: e.target.value,
})
} }
className="admin-form-input" options={[
> { value: "", label: " nepřiřazeno " },
<option value="">— nepřiřazeno —</option> ...(usersQuery.data ?? [])
{(usersQuery.data ?? []) .filter((u) => u.is_active)
.filter((u) => u.is_active) .map((u) => ({
.map((u) => ( value: String(u.id),
<option key={u.id} value={u.id}> label: `${u.first_name} ${u.last_name}`,
{u.first_name} {u.last_name} })),
</option> ]}
))} />
</select> </Field>
</FormField> </Box>
</div> </Box>
<div className="admin-form-row"> <Field label="Stav">
<FormField label="Začátek"> <Select
<AdminDatePicker value={createForm.status}
mode="date" onChange={(value) =>
setCreateForm({ ...createForm, status: value })
}
options={Object.entries(STATUS_LABELS).map(([value, label]) => ({
value,
label,
}))}
/>
</Field>
<Box sx={{ display: "flex", gap: 2, flexWrap: "wrap" }}>
<Box sx={{ flex: "1 1 200px" }}>
<Field label="Začátek">
<DateField
value={createForm.start_date} value={createForm.start_date}
onChange={(val) => onChange={(val) =>
setCreateForm({ ...createForm, start_date: val }) setCreateForm({ ...createForm, start_date: val })
} }
/> />
</FormField> </Field>
<FormField label="Konec"> </Box>
<AdminDatePicker <Box sx={{ flex: "1 1 200px" }}>
mode="date" <Field label="Konec">
<DateField
value={createForm.end_date} value={createForm.end_date}
onChange={(val) => onChange={(val) =>
setCreateForm({ ...createForm, end_date: val }) setCreateForm({ ...createForm, end_date: val })
} }
/> />
</FormField> </Field>
</div> </Box>
</Box>
<FormField label="Poznámka"> <Field label="Poznámka">
<textarea <TextField
value={createForm.notes} multiline
onChange={(e) => minRows={3}
setCreateForm({ ...createForm, notes: e.target.value }) value={createForm.notes}
} onChange={(e) =>
className="admin-form-input" setCreateForm({ ...createForm, notes: e.target.value })
rows={3} }
/> />
</FormField> </Field>
</Modal>
<p className="admin-form-hint"> </Box>
Číslo projektu:{" "}
<strong>
{nextNumberQuery.data?.number ??
nextNumberQuery.data?.next_number ??
""}
</strong>{" "}
(přiděleno automaticky)
</p>
</div>
</FormModal>
</div>
); );
} }