26/11/22 - 23h30
parent
799e85fa5d
commit
1380bb956f
|
@ -73,6 +73,7 @@ function DisplayUserGoals(props) {
|
|||
form.append("token", stored_cookie);
|
||||
|
||||
var myurl = process.env.REACT_APP_API_URL + "myclass/api/get_user_objectif/";
|
||||
|
||||
fetch(myurl,
|
||||
{
|
||||
method: 'POST',
|
||||
|
@ -80,7 +81,7 @@ function DisplayUserGoals(props) {
|
|||
})
|
||||
.then((data) => data.json())
|
||||
.then((data) => {
|
||||
console.log('Getlistgoals : Success:', data['message'], "data['status'] = ", data['status']);
|
||||
//console.log('Getlistgoals : Success:', data['message'], "data['status'] = ", data['status']);
|
||||
|
||||
if (String(data['status']) === 'true') {
|
||||
setlistgoals_api("true");
|
||||
|
|
|
@ -6,6 +6,7 @@ import DisplayUserGoals from "./DisplayUserGoals";
|
|||
import { IoCloseCircleOutline, IoAddCircleOutline } from "react-icons/io5";
|
||||
import { Button, Form, FormGroup, Label } from "reactstrap";
|
||||
import UpdateUserGoals from "./UpdateUserGoals";
|
||||
import UpdateUserProfil from "./UpdateUserProfil";
|
||||
|
||||
function ProfilObjectif() {
|
||||
const history = useHistory();
|
||||
|
@ -20,6 +21,7 @@ function ProfilObjectif() {
|
|||
|
||||
<div className="div_row">
|
||||
<nav className="titre1"> Liste des profils </nav>
|
||||
<UpdateUserProfil />
|
||||
</div>
|
||||
|
||||
<hr />
|
||||
|
|
|
@ -14,7 +14,6 @@ import { AiTwotoneEdit, AiTwotoneSave } from "react-icons/ai";
|
|||
import { useHistory } from "react-router-dom";
|
||||
import { format } from 'date-fns';
|
||||
import DatePicker from "react-datepicker";
|
||||
|
||||
import "react-datepicker/dist/react-datepicker.css";
|
||||
import { Editor } from '@tinymce/tinymce-react';
|
||||
|
||||
|
@ -80,7 +79,7 @@ function UpdateUserGoals(props) {
|
|||
)
|
||||
.then((response) => response.json())
|
||||
.then((result) => {
|
||||
console.log('Success:', result['message'], "result['status'] = ", result['status']);
|
||||
//console.log('Success:', result['message'], "result['status'] = ", result['status']);
|
||||
if (String(result['status']) === String("true")) {
|
||||
setrecorddata_api("true");
|
||||
setrecorddata_api_result(result['message']);
|
||||
|
|
|
@ -0,0 +1,320 @@
|
|||
import React, { useRef, useState, useEffect, } from "react";
|
||||
import { useForm } from "react-hook-form";
|
||||
import { Button, } from "reactstrap";
|
||||
import axios from "axios";
|
||||
import Box from '@mui/material/Box';
|
||||
import InputLabel from '@mui/material/InputLabel';
|
||||
import InputAdornment from '@mui/material/InputAdornment';
|
||||
import FormControl from '@mui/material/FormControl';
|
||||
import TextField from '@mui/material/TextField';
|
||||
import AccountCircle from '@mui/icons-material/AccountCircle';
|
||||
import moment from "moment";
|
||||
import { getCookie } from 'react-use-cookie';
|
||||
import { AiTwotoneEdit, AiTwotoneSave } from "react-icons/ai";
|
||||
import { useHistory } from "react-router-dom";
|
||||
import { format } from 'date-fns';
|
||||
import DatePicker from "react-datepicker";
|
||||
import "react-datepicker/dist/react-datepicker.css";
|
||||
import { Editor } from '@tinymce/tinymce-react';
|
||||
import MenuItem from '@mui/material/MenuItem';
|
||||
|
||||
|
||||
|
||||
function UpdateUserProfil(props) {
|
||||
|
||||
const [myclasslevel, setmyclasslevel] = useState("n/a");
|
||||
const [fiedsupdated, setfiedsupdated] = useState(false);
|
||||
|
||||
const [datamodification, setdatamodification] = useState("0");
|
||||
function DataUpdated() {
|
||||
setdatamodification("1");
|
||||
}
|
||||
|
||||
const handleChangeSupportTraining = (event) => {
|
||||
const name = event.target.name;
|
||||
const value = event.target.value;
|
||||
|
||||
setmyclasslevel(value);
|
||||
|
||||
}
|
||||
|
||||
const support_training_list = [
|
||||
{
|
||||
value: 'avant_bac',
|
||||
label: 'Avant Bac',
|
||||
},
|
||||
{
|
||||
value: 'bac',
|
||||
label: 'BAC',
|
||||
},
|
||||
{
|
||||
value: 'bac_3',
|
||||
label: 'BAC+3',
|
||||
},
|
||||
{
|
||||
value: 'bac_5',
|
||||
label: 'BAC+5',
|
||||
},
|
||||
{
|
||||
value: 'bac_6',
|
||||
label: 'Apres Bac+5',
|
||||
},
|
||||
|
||||
];
|
||||
|
||||
|
||||
const [recorddata_api, setrecorddata_api] = useState();
|
||||
const [recorddata_api_message, setrecorddata_api_message] = useState();
|
||||
const [recorddata_api_result, setrecorddata_api_result] = useState([]);
|
||||
function RecordData() {
|
||||
const formData = new FormData();
|
||||
const url = process.env.REACT_APP_API_URL + "myclass/api/add_update_user_profile/";
|
||||
|
||||
var name = document.getElementsByName("name")[0].value;
|
||||
var class_level = document.getElementsByName("class_level")[0].value;
|
||||
var nb_lang = document.getElementsByName("nb_lang")[0].value;
|
||||
|
||||
const stored_cookie = getCookie('tokenmysych');
|
||||
|
||||
formData.append('token', stored_cookie);
|
||||
formData.append('name', name);
|
||||
formData.append('etude_level', class_level);
|
||||
formData.append('nb_lang', nb_lang);
|
||||
|
||||
|
||||
fetch(
|
||||
url,
|
||||
{
|
||||
method: 'POST',
|
||||
body: formData,
|
||||
}
|
||||
)
|
||||
.then((response) => response.json())
|
||||
.then((result) => {
|
||||
console.log('Success:', result['message'], "result['status'] = ", result['status']);
|
||||
if (String(result['status']) === String("true")) {
|
||||
setrecorddata_api("true");
|
||||
setrecorddata_api_result(result['message']);
|
||||
|
||||
|
||||
|
||||
}
|
||||
else {
|
||||
setrecorddata_api("false");
|
||||
setrecorddata_api_message(result['message']);
|
||||
}
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error('Error:', error);
|
||||
setrecorddata_api("false");
|
||||
});
|
||||
|
||||
|
||||
};
|
||||
|
||||
useEffect(() => {
|
||||
GetUserProfilData();
|
||||
window.scrollTo(0, 0);
|
||||
}, []);
|
||||
|
||||
|
||||
const [GetUserProfilData_api, setGetUserProfilData_api] = useState();
|
||||
const [GetUserProfilData_api_message, setGetUserProfilData_api_message] = useState();
|
||||
const [GetUserProfilData_api_result, setGetUserProfilData_api_result] = useState([]);
|
||||
function GetUserProfilData() {
|
||||
|
||||
|
||||
const formData = new FormData();
|
||||
const url = process.env.REACT_APP_API_URL + "myclass/api/Get_user_profile/";
|
||||
|
||||
const stored_cookie = getCookie('tokenmysych');
|
||||
formData.append('token', stored_cookie);
|
||||
|
||||
var name = props.name_obj;
|
||||
|
||||
|
||||
axios.post(url, formData).then(res => {
|
||||
if (String(res.data.status) === String("true")) {
|
||||
//console.log(" In GetUserProfilData res.data.status = " + res.data.status);
|
||||
console.log(" In GetUserProfilData res.data.message = " + res.data.message);
|
||||
setGetUserProfilData_api("true");
|
||||
|
||||
var mylocalobj = JSON.parse(res.data.message);
|
||||
|
||||
if (mylocalobj) {
|
||||
|
||||
if (mylocalobj.name) {
|
||||
document.getElementsByName("name")[0].value = mylocalobj.name;
|
||||
document.getElementsByName("name")[0].disabled = true;
|
||||
document.getElementsByName("name")[0].style.backgroundColor = "#ECEFF1";
|
||||
}
|
||||
|
||||
|
||||
if (mylocalobj.etude_level) {
|
||||
setmyclasslevel(mylocalobj.etude_level);
|
||||
document.getElementsByName("class_level")[0].disabled = true;
|
||||
document.getElementsByName("class_level")[0].style.backgroundColor = "#ECEFF1";
|
||||
}
|
||||
|
||||
if (mylocalobj.nb_lang) {
|
||||
document.getElementsByName("nb_lang")[0].value = mylocalobj.nb_lang;
|
||||
document.getElementsByName("nb_lang")[0].disabled = true;
|
||||
document.getElementsByName("nb_lang")[0].style.backgroundColor = "#ECEFF1";
|
||||
}
|
||||
|
||||
} else {
|
||||
//console.log(" In test res.data.status = " + res.data.status);
|
||||
//console.log(" In test res.data.message = " + res.data.message);
|
||||
|
||||
}
|
||||
}
|
||||
else {
|
||||
setGetUserProfilData_api("true");
|
||||
setGetUserProfilData_api_message(res.data.message);
|
||||
}
|
||||
|
||||
|
||||
}).catch((error) => {
|
||||
console.warn(' GetUserProfilData : Not good man :( mysearchtext = ', error);
|
||||
setGetUserProfilData_api("false");
|
||||
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
function editefields() {
|
||||
|
||||
document.getElementsByName("name")[0].disabled = false;
|
||||
document.getElementsByName("name")[0].style.backgroundColor = "#ffffff";
|
||||
|
||||
document.getElementsByName("class_level")[0].disabled = false;
|
||||
document.getElementsByName("class_level")[0].style.backgroundColor = "#ffffff";
|
||||
|
||||
|
||||
document.getElementsByName("nb_lang")[0].disabled = false;
|
||||
document.getElementsByName("nb_lang")[0].style.backgroundColor = "#ffffff";
|
||||
|
||||
}
|
||||
|
||||
function updateprofile() {
|
||||
setfiedsupdated(true);
|
||||
editefields();
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="updateuserprofil">
|
||||
|
||||
|
||||
<h3> Votre profils </h3>
|
||||
|
||||
|
||||
{String(recorddata_api) === String("true") && <div className="okUpdateData"> Le profil a été ajouté/mise à jour </div>}
|
||||
|
||||
{String(recorddata_api) === String("false") && <div className="koUpdateData"> {recorddata_api_message} </div>}
|
||||
|
||||
<Box
|
||||
component="form"
|
||||
sx={{
|
||||
'& .MuiTextField-root': { m: 1, width: '25ch' },
|
||||
}}
|
||||
noValidate
|
||||
autoComplete="off"
|
||||
onChange={DataUpdated}
|
||||
>
|
||||
|
||||
|
||||
<div className="training_caract">
|
||||
<TextField
|
||||
required
|
||||
name="name"
|
||||
id="name"
|
||||
label="Description"
|
||||
InputLabelProps={{
|
||||
shrink: true,
|
||||
}}
|
||||
disabled={false}
|
||||
className="disabled_style"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="training_caract">
|
||||
<TextField
|
||||
required
|
||||
name="trainer"
|
||||
label="Formateur"
|
||||
InputLabelProps={{
|
||||
shrink: true,
|
||||
}}
|
||||
disabled={false}
|
||||
className="disabled_style"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="training_caract">
|
||||
<TextField
|
||||
name="class_level"
|
||||
id="class_level"
|
||||
select
|
||||
label="Niveau Etude"
|
||||
value={myclasslevel}
|
||||
InputLabelProps={{
|
||||
shrink: true,
|
||||
}}
|
||||
onChange={handleChangeSupportTraining}
|
||||
disabled={false}
|
||||
className="disabled_style"
|
||||
>
|
||||
{support_training_list.map((option) => (
|
||||
<MenuItem key={option.value} value={option.value}>
|
||||
{option.label} <br />
|
||||
</MenuItem>
|
||||
))}
|
||||
</TextField>
|
||||
</div>
|
||||
|
||||
<div className="training_caract">
|
||||
<TextField
|
||||
name="nb_lang"
|
||||
id="nb_lang"
|
||||
label="Nombre de langues"
|
||||
type="number"
|
||||
InputLabelProps={{
|
||||
shrink: true,
|
||||
}}
|
||||
inputProps={{ min: "1", max: "5", step: "1" }}
|
||||
disabled={false}
|
||||
className="disabled_style"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</Box>
|
||||
<div className="div_row" style={{ "marginTop": "1rem" }}>
|
||||
|
||||
{fiedsupdated && <div className="div_row"><div className="koUpdateData" style={{ "color": "orange", "textAlign": "center" }}> /!\ Pensez à enregistrer les modifications</div></div>}
|
||||
|
||||
{fiedsupdated && <div className="div_row">
|
||||
<div className="div_row_gauche">
|
||||
<Button variant="contained" color="success" className="div_row22 bton_enreg " onClick={RecordData}>Enregister <AiTwotoneSave /> </Button>
|
||||
</div>
|
||||
<div className="div_row_droite" style={{ "textAlign": "right" }}>
|
||||
<Button variant="contained" color="success" className="div_row22 bton_annnule" onClick={"CloseLocalcomp"}>Annuler</Button>
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
|
||||
{!fiedsupdated && <div className="div_row">
|
||||
|
||||
<div className="div_row_droite" style={{ "textAlign": "right" }}>
|
||||
<Button variant="contained" color="success" className="div_row22 bton_annnule" onClick={updateprofile}> Modifier</Button>
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>);
|
||||
}
|
||||
export default UpdateUserProfil;
|
|
@ -0,0 +1,140 @@
|
|||
.updateuserprofil {
|
||||
.h1_transparent {
|
||||
color: transparent;
|
||||
font-size: 0.1rem;
|
||||
}
|
||||
|
||||
.koUpdateData {
|
||||
font-size: small;
|
||||
color: red;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.okUpdateData {
|
||||
font-size: small;
|
||||
color: green;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 600px) {}
|
||||
|
||||
@media only screen and (min-width: 601px) and (max-width: 991px) {}
|
||||
|
||||
@media only screen and (min-width: 992px) and (max-width: 1199px) {}
|
||||
|
||||
@media only screen and (min-width: 1200px) {
|
||||
|
||||
.div_row {
|
||||
float: left;
|
||||
//border:0px solid black;
|
||||
//border-width: 0.01rem;
|
||||
width: 100%;
|
||||
margin-bottom: 1rem;
|
||||
border-radius: 1rem;
|
||||
}
|
||||
|
||||
.div_row_gauche {
|
||||
float: left;
|
||||
//border:0px solid black;
|
||||
border-width: 0.01rem;
|
||||
width: 48%;
|
||||
border-radius: 1rem;
|
||||
}
|
||||
|
||||
.div_row_droite {
|
||||
float: right;
|
||||
//border:0px solid black;
|
||||
border-width: 0.01rem;
|
||||
width: 48%;
|
||||
border-radius: 1rem;
|
||||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
font-style: italic;
|
||||
background-color: gray;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.bton_enreg {
|
||||
border-radius: 7px;
|
||||
font-size: small;
|
||||
padding: 0.3rem;
|
||||
width: 60%;
|
||||
background-color: #81BC3A;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.bton_annnule {
|
||||
border-radius: 7px;
|
||||
font-size: small;
|
||||
padding: 0.3rem;
|
||||
width: 60%;
|
||||
background-color: white;
|
||||
color: red;
|
||||
}
|
||||
|
||||
.training_text {
|
||||
padding: 5px;
|
||||
float: left;
|
||||
height: 220px !important;
|
||||
min-height: 220px !important;
|
||||
max-height: 220px !important;
|
||||
margin-bottom: 10px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.plus_produit_desabled {
|
||||
width: 100% !important;
|
||||
margin-right: 2rem !important;
|
||||
margin-bottom: 1rem !important;
|
||||
max-height: 200px !important;
|
||||
}
|
||||
|
||||
.titre_training_text {
|
||||
font-size: small;
|
||||
padding-left: 5px;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.tox-statusbar__branding {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.training_caract {
|
||||
width: 30%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.disabled_style {
|
||||
//background-color: #ECEFF1;
|
||||
font-size: small !important;
|
||||
color: black;
|
||||
width: 80% !important;
|
||||
height: 2rem !important;
|
||||
margin: 5px !important;
|
||||
}
|
||||
|
||||
.css-1sqnrkk-MuiInputBase-input-MuiOutlinedInput-input,
|
||||
.css-161vxw-MuiOutlinedInput-notchedOutline {
|
||||
font-size: small !important;
|
||||
}
|
||||
|
||||
input {
|
||||
font-size: small !important;
|
||||
padding-top: 0.2rem;
|
||||
padding-bottom: 0.2rem;
|
||||
}
|
||||
|
||||
.css-17nr37i-MuiSelect-select-MuiInputBase-input-MuiOutlinedInput-input.MuiSelect-select {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
|
@ -57,3 +57,4 @@
|
|||
@import "./components/gestionadministrative";
|
||||
@import "./components/toggleswitch";
|
||||
@import "./components/updateusergoals";
|
||||
@import "./components/userprofil"
|
Loading…
Reference in New Issue