Fixed front ann book and delete err handling

Button no longer pre-updates on err
File uploading fix
This commit is contained in:
Dmitriy Shishkov 2023-09-13 22:26:53 +03:00
parent a60ff39c43
commit 2b001579c5
Signed by: dm1sh
GPG Key ID: 027994B0AA357688
4 changed files with 10 additions and 6 deletions

View File

@ -89,7 +89,7 @@ async def put_in_db(name: Annotated[str, Form()], category: Annotated[str, Form(
if f.tell() > 0:
f.seek(0)
destination = pathlib.Path("./uploads/" + str(hash(f)) + pathlib.Path(src.filename).suffix.lower())
async with destination.open('wb') as buffer:
with destination.open('wb') as buffer:
shutil.copyfileobj(f, buffer)
# изменяем название директории загруженного файла
@ -103,6 +103,8 @@ async def put_in_db(name: Annotated[str, Form()], category: Annotated[str, Form(
db.add(temp_ancmt) # добавляем в бд
await db.commit() # сохраняем изменения
await db.refresh(temp_ancmt) # обновляем состояние объекта
return {"Success": True}
except:
raise HTTPException(status_code=500, detail="problem with adding object to db")
@ -119,6 +121,8 @@ async def delete_from_db(announcement: pydantic_schemas.DelAnnouncement, db: Ann
try:
await db.delete(to_delete) # удаление из БД
await db.commit() # сохраняем изменения
return {"Success": True}
except:
raise HTTPException(status_code=500, detail="Problem with adding to database")

View File

@ -14,8 +14,8 @@ function useAddAnnouncement() {
processPutAnnouncement
)
function handleAdd(formData: FormData) {
void doSend({}, {
async function handleAdd(formData: FormData) {
await doSend({}, {
body: formData,
})
}

View File

@ -15,8 +15,8 @@ function useBook() {
processBook,
)
const handleBook = useCallback((id: number) => {
void doSend({}, {
const handleBook = useCallback(async (id: number) => {
await doSend({}, {
body: JSON.stringify({
id,
}),

View File

@ -12,7 +12,7 @@ function useSendButtonCaption(
const [title, setTitle] = useState(initial)
const update = useCallback(<T extends NonNullable<unknown>>(data: T | null | undefined) => {
if (data !== undefined) { // not loading
if (data !== undefined && data !== null) { // not loading or error
setCaption(result)
setTitle('Отправить ещё раз')