first commit

This commit is contained in:
vanalmsick 2025-09-27 18:19:06 +01:00
commit e7f627801f
152 changed files with 35352 additions and 0 deletions

View file

@ -0,0 +1,90 @@
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>
)
}