mirror of
https://github.com/gabehf/Koito.git
synced 2026-03-07 13:38:15 -08:00
* wip * chore: update counts to allow unix timeframe * feat: add db functions for counting new items * wip: endpoint working * wip * wip: initial ui done * add header, adjust ui * add time listened toggle * fix layout, year param * param fixes
41 lines
1,010 B
TypeScript
41 lines
1,010 B
TypeScript
import { deleteItem } from "api/api";
|
|
import { AsyncButton } from "../AsyncButton";
|
|
import { Modal } from "./Modal";
|
|
import { useNavigate } from "react-router";
|
|
import { useState } from "react";
|
|
|
|
interface Props {
|
|
open: boolean;
|
|
setOpen: Function;
|
|
title: string;
|
|
id: number;
|
|
type: string;
|
|
}
|
|
|
|
export default function DeleteModal({ open, setOpen, title, id, type }: Props) {
|
|
const [loading, setLoading] = useState(false);
|
|
const navigate = useNavigate();
|
|
|
|
const doDelete = () => {
|
|
setLoading(true);
|
|
deleteItem(type.toLowerCase(), id).then((r) => {
|
|
if (r.ok) {
|
|
navigate("/");
|
|
} else {
|
|
console.log(r);
|
|
}
|
|
});
|
|
};
|
|
|
|
return (
|
|
<Modal isOpen={open} onClose={() => setOpen(false)}>
|
|
<h3>Delete "{title}"?</h3>
|
|
<p>This action is irreversible!</p>
|
|
<div className="flex flex-col mt-3 items-center">
|
|
<AsyncButton loading={loading} onClick={doDelete}>
|
|
Yes, Delete It
|
|
</AsyncButton>
|
|
</div>
|
|
</Modal>
|
|
);
|
|
}
|