mirror of
https://github.com/Paris-est-Ludique/intranet.git
synced 2025-06-08 08:34:20 +02:00
41 lines
1.5 KiB
TypeScript
41 lines
1.5 KiB
TypeScript
import { get } from "lodash"
|
|
import { useCallback } from "react"
|
|
import { fetchVolunteerAsksSet } from "../../store/volunteerAsksSet"
|
|
import { useAskTools, addAsk, answerLaterOnProfile } from "./utils"
|
|
import { useUserDayWishes } from "../VolunteerBoard/daysWishes.utils"
|
|
import DayWishesForm, {
|
|
fetchFor as fetchForDayWishesForm,
|
|
} from "../VolunteerBoard/DayWishesForm/DayWishesForm"
|
|
|
|
export function AskDayWishes(asks: JSX.Element[], id: number): void {
|
|
const { dispatch, jwtToken, volunteerAsks } = useAskTools()
|
|
|
|
const onSubmit = useCallback((): void => {
|
|
dispatch(
|
|
fetchVolunteerAsksSet(jwtToken, 0, {
|
|
hiddenAsks: [...(volunteerAsks?.hiddenAsks || []), id],
|
|
})
|
|
)
|
|
}, [dispatch, id, jwtToken, volunteerAsks?.hiddenAsks])
|
|
|
|
const [userWishes] = useUserDayWishes()
|
|
const charter = get(userWishes, "charter", false) as boolean
|
|
const participation = get(userWishes, "active", "inconnu") as string
|
|
const newSelection = get(userWishes, "dayWishes", []) as string[]
|
|
const comment = get(userWishes, "dayWishesComment", "") as string
|
|
const needToShow =
|
|
charter === false || participation === "inconnu" || (newSelection.length === 0 && !comment)
|
|
|
|
addAsk(
|
|
asks,
|
|
id,
|
|
volunteerAsks,
|
|
false,
|
|
needToShow,
|
|
<DayWishesForm afterSubmit={onSubmit}>{answerLaterOnProfile}</DayWishesForm>
|
|
)
|
|
}
|
|
|
|
// Fetch server-side data here
|
|
export const fetchFor = [...fetchForDayWishesForm]
|