Skip to content

Commit ba2ffe6

Browse files
committed
added snackbar for saving
1 parent a7f570a commit ba2ffe6

File tree

2 files changed

+33
-2
lines changed

2 files changed

+33
-2
lines changed

components/book/BookEditForm.tsx

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import Box from "@mui/material/Box";
33
import { Dispatch, useState } from "react";
44

5+
import { AlertColor } from "@mui/material";
56
import Button from "@mui/material/Button";
67
import Typography from "@mui/material/Typography";
78

@@ -57,6 +58,8 @@ export default function BookEditForm({
5758

5859
const [editButtonLabel, setEditButtonLabel] = useState("Editieren");
5960

61+
useState<AlertColor>("success");
62+
6063
const toggleEditButton = () => {
6164
editable
6265
? setEditButtonLabel("Editieren")
@@ -136,6 +139,7 @@ export default function BookEditForm({
136139
<Button
137140
onClick={(e) => {
138141
saveBook(e);
142+
139143
//toggleEditButton();
140144
}}
141145
startIcon={<SaveAltIcon />}

pages/book/[bookid].tsx

+29-2
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ export default function BookDetail({ user, book, topics }: BookDetailProps) {
4343
const [bookData, setBookData] = useState<BookType>(book);
4444
const [antolinResults, setAntolinResults] = useState(null);
4545
const [returnBookSnackbar, setReturnBookSnackbar] = useState(false);
46+
const [saveBookSnackbar, setSaveBookSnackbar] = useState(false);
4647

4748
useEffect(() => {
4849
setBookData(book);
@@ -84,6 +85,17 @@ export default function BookDetail({ user, book, topics }: BookDetailProps) {
8485
setReturnBookSnackbar(false);
8586
};
8687

88+
const handleCloseSaveBookSnackbar = (
89+
event?: React.SyntheticEvent | Event,
90+
reason?: string
91+
) => {
92+
if (reason === "clickaway") {
93+
return;
94+
}
95+
96+
setSaveBookSnackbar(false);
97+
};
98+
8799
const handleSaveButton = () => {
88100
console.log("Saving book ", bookData);
89101

@@ -101,7 +113,9 @@ export default function BookDetail({ user, book, topics }: BookDetailProps) {
101113
body: JSON.stringify({ ...savingBook, rentedDate, dueDate }),
102114
})
103115
.then((res) => res.json())
104-
.then((data) => {});
116+
.then((data) => {
117+
setSaveBookSnackbar(true);
118+
});
105119
};
106120

107121
const handleReturnBookButton = (userid: number) => {
@@ -149,7 +163,7 @@ export default function BookDetail({ user, book, topics }: BookDetailProps) {
149163
/>
150164
<Snackbar
151165
open={returnBookSnackbar}
152-
autoHideDuration={8000}
166+
autoHideDuration={4000}
153167
onClose={handleCloseReturnBookSnackbar}
154168
>
155169
<Alert
@@ -160,6 +174,19 @@ export default function BookDetail({ user, book, topics }: BookDetailProps) {
160174
Buch zurückgegeben, super!
161175
</Alert>
162176
</Snackbar>
177+
<Snackbar
178+
open={saveBookSnackbar}
179+
autoHideDuration={4000}
180+
onClose={handleCloseSaveBookSnackbar}
181+
>
182+
<Alert
183+
onClose={handleCloseSaveBookSnackbar}
184+
severity="success"
185+
sx={{ width: "100%" }}
186+
>
187+
Buch gespeichert, gut gemacht!
188+
</Alert>
189+
</Snackbar>
163190
</ThemeProvider>
164191
</Layout>
165192
);

0 commit comments

Comments
 (0)