|
|
|
@ -13,13 +13,17 @@ import {
|
|
|
|
|
Accommodation,
|
|
|
|
|
AccommodationListApi,
|
|
|
|
|
} from "../../../api/accommodations/AccommodationListApi";
|
|
|
|
|
import { AccommodationsCalendarURLApi } from "../../../api/accommodations/AccommodationsCalendarURLApi";
|
|
|
|
|
import {
|
|
|
|
|
AccommodationCalendarURL,
|
|
|
|
|
AccommodationsCalendarURLApi,
|
|
|
|
|
} from "../../../api/accommodations/AccommodationsCalendarURLApi";
|
|
|
|
|
import { useConfirm } from "../../../hooks/context_providers/ConfirmDialogProvider";
|
|
|
|
|
import { useLoadingMessage } from "../../../hooks/context_providers/LoadingMessageProvider";
|
|
|
|
|
import { useSnackbar } from "../../../hooks/context_providers/SnackbarProvider";
|
|
|
|
|
import { useCreateAccommodationCalendarURL } from "../../../hooks/context_providers/accommodations/CreateAccommodationCalendarURLDialogProvider";
|
|
|
|
|
import { useInstallCalendarDialog } from "../../../hooks/context_providers/accommodations/InstallCalendarDialogProvider";
|
|
|
|
|
import { useUpdateAccommodation } from "../../../hooks/context_providers/accommodations/UpdateAccommodationDialogProvider";
|
|
|
|
|
import { AsyncWidget } from "../../../widgets/AsyncWidget";
|
|
|
|
|
import { useFamily } from "../../../widgets/BaseFamilyRoute";
|
|
|
|
|
import { FamilyCard } from "../../../widgets/FamilyCard";
|
|
|
|
|
import { TimeWidget } from "../../../widgets/TimeWidget";
|
|
|
|
@ -216,23 +220,65 @@ function BoolIcon(p: { checked?: boolean }): React.ReactElement {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function AccommodationsCalURLsCard(): React.ReactElement {
|
|
|
|
|
const key = React.useRef(0);
|
|
|
|
|
|
|
|
|
|
const snackbar = useSnackbar();
|
|
|
|
|
const confirm = useConfirm();
|
|
|
|
|
const loading = useLoadingMessage();
|
|
|
|
|
|
|
|
|
|
const [error, setError] = React.useState<string>();
|
|
|
|
|
const [success, setSuccess] = React.useState<string>();
|
|
|
|
|
|
|
|
|
|
const [list, setList] = React.useState<
|
|
|
|
|
AccommodationCalendarURL[] | undefined
|
|
|
|
|
>();
|
|
|
|
|
|
|
|
|
|
const family = useFamily();
|
|
|
|
|
|
|
|
|
|
const createCalendarURLDialog = useCreateAccommodationCalendarURL();
|
|
|
|
|
const calendarURLDialog = useInstallCalendarDialog();
|
|
|
|
|
|
|
|
|
|
const load = async () => {
|
|
|
|
|
setList(await AccommodationsCalendarURLApi.GetList(family.family));
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const reload = () => {
|
|
|
|
|
key.current += 1;
|
|
|
|
|
setList(undefined);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const onRequestDelete = async (c: AccommodationCalendarURL) => {
|
|
|
|
|
setError(undefined);
|
|
|
|
|
setSuccess(undefined);
|
|
|
|
|
try {
|
|
|
|
|
if (
|
|
|
|
|
!(await confirm(
|
|
|
|
|
`Voulez-vous vraiment supprimer le calendrier '${c.name}' ? Cette opération est définitive !`
|
|
|
|
|
))
|
|
|
|
|
)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
loading.show("Suppression du calendrier en cours...");
|
|
|
|
|
|
|
|
|
|
await AccommodationsCalendarURLApi.Delete(c);
|
|
|
|
|
|
|
|
|
|
snackbar("Le calendrier a été supprimé avec succès !");
|
|
|
|
|
reload();
|
|
|
|
|
} catch (e) {
|
|
|
|
|
console.error("Failed to delete accommodation!", e);
|
|
|
|
|
setError(`Échec de la suppression du logement! ${e}`);
|
|
|
|
|
} finally {
|
|
|
|
|
loading.hide();
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const createCalendarURL = async () => {
|
|
|
|
|
try {
|
|
|
|
|
const newCal = await createCalendarURLDialog();
|
|
|
|
|
|
|
|
|
|
if (!newCal) return;
|
|
|
|
|
|
|
|
|
|
loading.show("Création du logement en cours...");
|
|
|
|
|
loading.show("Création du calendrier en cours...");
|
|
|
|
|
|
|
|
|
|
const cal = await AccommodationsCalendarURLApi.Create(
|
|
|
|
|
family.family,
|
|
|
|
@ -241,7 +287,7 @@ function AccommodationsCalURLsCard(): React.ReactElement {
|
|
|
|
|
|
|
|
|
|
setSuccess("Le calendrier a été créé avec succès !");
|
|
|
|
|
|
|
|
|
|
// TODO : reload URLS list
|
|
|
|
|
reload();
|
|
|
|
|
|
|
|
|
|
calendarURLDialog(cal);
|
|
|
|
|
} catch (e) {
|
|
|
|
@ -274,7 +320,80 @@ function AccommodationsCalURLsCard(): React.ReactElement {
|
|
|
|
|
>
|
|
|
|
|
Créer un calendrier
|
|
|
|
|
</Button>
|
|
|
|
|
|
|
|
|
|
<br />
|
|
|
|
|
<br />
|
|
|
|
|
|
|
|
|
|
<AsyncWidget
|
|
|
|
|
ready={list !== undefined}
|
|
|
|
|
loadKey={key.current}
|
|
|
|
|
load={load}
|
|
|
|
|
errMsg="Echec du chargement de la liste des calendriers !"
|
|
|
|
|
build={() =>
|
|
|
|
|
list?.length === 0 ? (
|
|
|
|
|
<>
|
|
|
|
|
<p style={{ textAlign: "center" }}>
|
|
|
|
|
Vous n'avez créé aucun calendrier pour le moment !
|
|
|
|
|
</p>
|
|
|
|
|
</>
|
|
|
|
|
) : (
|
|
|
|
|
<>
|
|
|
|
|
{list?.map((c) => (
|
|
|
|
|
<CalendarItem c={c} onRequestDelete={onRequestDelete} />
|
|
|
|
|
))}
|
|
|
|
|
</>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
</CardContent>
|
|
|
|
|
</FamilyCard>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function CalendarItem(p: {
|
|
|
|
|
c: AccommodationCalendarURL;
|
|
|
|
|
onRequestDelete: (c: AccommodationCalendarURL) => void;
|
|
|
|
|
}): React.ReactElement {
|
|
|
|
|
const accommodations = useAccommodations();
|
|
|
|
|
|
|
|
|
|
const installCal = useInstallCalendarDialog();
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<Card sx={{ minWidth: 275, margin: "10px 0px" }} variant="outlined">
|
|
|
|
|
<CardContent>
|
|
|
|
|
<Typography
|
|
|
|
|
sx={{ fontSize: 14 }}
|
|
|
|
|
color="text.secondary"
|
|
|
|
|
gutterBottom
|
|
|
|
|
></Typography>
|
|
|
|
|
<Typography variant="h5" component="div">
|
|
|
|
|
{p.c.name}
|
|
|
|
|
</Typography>
|
|
|
|
|
<Typography sx={{ mb: 1.5 }} color="text.secondary">
|
|
|
|
|
{p.c.accommodation_id
|
|
|
|
|
? accommodations.accommodations.get(p.c.accommodation_id)?.name
|
|
|
|
|
: "Tous les logements"}
|
|
|
|
|
</Typography>
|
|
|
|
|
<Typography variant="body2">
|
|
|
|
|
Créé il y a <TimeWidget time={p.c.time_create} />
|
|
|
|
|
<br />
|
|
|
|
|
Utilisé il y a <TimeWidget time={p.c.time_used} />
|
|
|
|
|
</Typography>
|
|
|
|
|
</CardContent>
|
|
|
|
|
|
|
|
|
|
<CardActions>
|
|
|
|
|
<span style={{ flex: 1 }}></span>
|
|
|
|
|
<Button size="small" onClick={() => installCal(p.c)}>
|
|
|
|
|
Installer
|
|
|
|
|
</Button>
|
|
|
|
|
<Button
|
|
|
|
|
size="small"
|
|
|
|
|
color="error"
|
|
|
|
|
onClick={() => p.onRequestDelete(p.c)}
|
|
|
|
|
>
|
|
|
|
|
Supprimer
|
|
|
|
|
</Button>
|
|
|
|
|
</CardActions>
|
|
|
|
|
</Card>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|