mirror of
https://github.com/workhardbekind/workout-challenge.git
synced 2026-07-04 09:23:32 -04:00
90 lines
No EOL
3.2 KiB
JavaScript
90 lines
No EOL
3.2 KiB
JavaScript
import React, {useEffect, useState} from "react";
|
|
import {useUpdateUserMutation} from "../utils/reducers/usersSlice";
|
|
import {Modal, SaveButton, SingleForm} from "./basicComponents";
|
|
|
|
const fields = {
|
|
|
|
"goal_active_days": {
|
|
"type": "number",
|
|
"required": false,
|
|
"read_only": false,
|
|
"label": "Active Days (num)",
|
|
"placeholder": "Leave empty for no goal",
|
|
"width": "max-sm:w-full w-1/3",
|
|
},
|
|
|
|
"goal_workout_minutes": {
|
|
"type": "number",
|
|
"required": false,
|
|
"read_only": false,
|
|
"label": "Workout Minutes (min)",
|
|
"placeholder": "Leave empty for no goal",
|
|
"width": "max-sm:w-full w-1/3",
|
|
},
|
|
|
|
"goal_distance": {
|
|
"type": "number",
|
|
"required": false,
|
|
"read_only": false,
|
|
"label": "Distance (km)",
|
|
"placeholder": "Leave empty for no goal",
|
|
"width": "max-sm:w-full w-1/3",
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
export default function PersonalGoalsForm({user, setModalState}) {
|
|
|
|
const [values, setValues] = useState({});
|
|
const [fieldErrors, setFieldErrors] = useState({});
|
|
const [formError, setFormError] = useState('');
|
|
|
|
const [updateEntry, {
|
|
data: updateData,
|
|
error: updateError,
|
|
isLoading: updateIsLoading,
|
|
isSuccess: updateIsSuccess
|
|
}] = useUpdateUserMutation();
|
|
|
|
// Overall form error message
|
|
useEffect(() => {
|
|
if (updateError !== undefined) {
|
|
setFormError('Update Error (' + updateError?.status?.toLocaleString() + ' ' + updateError?.originalStatus?.toLocaleString() + '): ' + updateError?.message);
|
|
}
|
|
}, [updateError])
|
|
|
|
// load current form values
|
|
useEffect(() => {
|
|
if (user !== undefined) {
|
|
setValues({goal_active_days: user.goal_active_days, goal_workout_minutes: user.goal_workout_minutes, goal_distance: user.goal_distance});
|
|
}
|
|
}, [])
|
|
|
|
// form action button right
|
|
async function handleSubmit() {
|
|
// update personal goals
|
|
try {
|
|
const cleanedValues = Object.fromEntries(Object.entries(values).map(([key, value]) => [key, value === "" ? null : value])); // replace empty strings with null
|
|
const result = await updateEntry({id: 'me', ...cleanedValues}).unwrap();
|
|
console.log('Update Personal Goals success:', result);
|
|
setModalState(false);
|
|
document.body.classList.remove('body-no-scroll');
|
|
} catch (err) {
|
|
console.error('Update Personal Goals failed', err);
|
|
setFieldErrors(err.data);
|
|
}
|
|
}
|
|
|
|
return (
|
|
<Modal title="Personal Goals" landscape={true} setShowModal={setModalState} isLoading={updateIsLoading}>
|
|
<SingleForm fields={fields} values={values} setValues={setValues} errors={fieldErrors}/>
|
|
<div className="text-center text-red-500 text-xs italic">{formError}</div>
|
|
<div className="text-xs text-center italic text-gray-500"><b>Note:</b> These personal goals are only visible to you and they do not impact any competition you are taking part of.</div>
|
|
<div className="relative flex justify-end items-end">
|
|
<SaveButton onClick={handleSubmit} label="Update" highlighted={true} larger={true} />
|
|
</div>
|
|
</Modal>
|
|
)
|
|
} |