3745 lines
153 KiB
JavaScript
3745 lines
153 KiB
JavaScript
import React, { useState, useEffect } from 'react';
|
|
import TrainingForm from "./AddClassManual"
|
|
import TextField from '@mui/material/TextField';
|
|
import Button from '@mui/material/Button';
|
|
import Autocomplete from '@mui/material/Autocomplete';
|
|
import { getCookie } from 'react-use-cookie';
|
|
import { DataGrid, GridToolbar, frFR } from '@mui/x-data-grid';
|
|
import Popup from 'reactjs-popup';
|
|
import fileDownload from 'js-file-download';
|
|
import 'reactjs-popup/dist/index.css';
|
|
import { AiFillCloseCircle, } from "react-icons/ai";
|
|
import parse from 'html-react-parser'
|
|
import { BsEye } from "react-icons/bs";
|
|
import { useHistory } from "react-router-dom";
|
|
import axios from "axios";
|
|
import img_loading_spin from "./../mysy_img/mysy_spin_loading.gif";
|
|
import { MdAddCircleOutline, MdRemoveCircleOutline } from "react-icons/md";
|
|
import MenuItem from '@mui/material/MenuItem';
|
|
import InputAdornment from '@mui/material/InputAdornment';
|
|
import Box from '@mui/material/Box';
|
|
import 'react-tooltip/dist/react-tooltip.css'
|
|
import { Tooltip } from 'react-tooltip'
|
|
import { FcAcceptDatabase, } from "react-icons/fc";
|
|
import Dialog from '@mui/material/Dialog';
|
|
import DialogActions from '@mui/material/DialogActions';
|
|
import DialogContent from '@mui/material/DialogContent';
|
|
import DialogTitle from '@mui/material/DialogTitle';
|
|
import ToggleSwitch from "./ToggleSwitch";
|
|
import SendIcon from '@mui/icons-material/Send';
|
|
import { GrDocumentCsv } from "react-icons/gr";
|
|
import { DataGridPro } from '@mui/x-data-grid-pro';
|
|
import { gridClasses } from '@mui/x-data-grid';
|
|
import Link from '@mui/material/Link';
|
|
import { PiDotsThree } from "react-icons/pi";
|
|
import { IoAddCircleOutline, IoCloseCircleOutline } from "react-icons/io5";
|
|
import {
|
|
GridToolbarContainer, GridToolbarExport, GridToolbarColumnsButton,
|
|
GridToolbarFilterButton, GridToolbarDensitySelector, GridToolbarExportContainer, useGridApiContext,
|
|
gridFilteredSortedRowIdsSelector,
|
|
gridVisibleColumnFieldsSelector,
|
|
GridValueGetterParams,
|
|
GridPreferencePanelsValue,
|
|
|
|
} from '@mui/x-data-grid';
|
|
import * as XLSX from 'xlsx';
|
|
import { useCookies } from "react-cookie";
|
|
import { makeStyles } from "@material-ui/core/styles";
|
|
import Paper from '@material-ui/core/Paper';
|
|
import Draggable from 'react-draggable';
|
|
|
|
import CancelPresentationIcon from '@mui/icons-material/CancelPresentation';
|
|
import { IconButton } from '@material-ui/core';
|
|
|
|
//import IconButton from '@mui/material/IconButton';
|
|
import Menu from '@mui/material/Menu';
|
|
//import MenuItem from '@mui/material/MenuItem';
|
|
import MoreVertIcon from '@mui/icons-material/MoreVert';
|
|
|
|
import Module_Alert_Confirmation from "./Module_Alert_Confirmation";
|
|
|
|
function PaperComponent(props) {
|
|
return (
|
|
<Draggable
|
|
handle="#draggable-dialog-title"
|
|
cancel={'[class*="MuiDialogContent-root"]'}
|
|
>
|
|
<Paper {...props} />
|
|
</Draggable>
|
|
);
|
|
}
|
|
|
|
|
|
const useStyles = makeStyles((theme) => ({
|
|
|
|
dialog: {
|
|
position: 'absolute',
|
|
// left: 10,
|
|
top: 400
|
|
},
|
|
|
|
paper: {
|
|
overflowY: 'unset',
|
|
},
|
|
customizedButton: {
|
|
position: 'absolute',
|
|
left: '98%',
|
|
top: '-3%',
|
|
backgroundColor: 'lightgray',
|
|
color: 'gray',
|
|
},
|
|
}));
|
|
|
|
|
|
|
|
const DistplayPartnerTraningsPage = (props) => {
|
|
|
|
const stored_cookie_catalog_data_row_grouped_by = getCookie('mysy_catalog_data_row_grouped_by');
|
|
|
|
const history = useHistory();
|
|
const [myApiResponse, setmyApiResponse] = useState("false");
|
|
const filters = [
|
|
{ value: 'external_code', label: 'Code Formation' },
|
|
{ value: 'title', label: 'Titre' },
|
|
{ value: 'certif', label: 'Certification' }
|
|
]
|
|
const [selectedfilt1, setselectedfilt1] = useState("");
|
|
const [selectedfilt2, setselectedfilt2] = useState("");
|
|
const [selectedfilt3, setselectedfilt3] = useState("");
|
|
const [reftrainingtoupdate, setreftrainingtoupdate] = useState();
|
|
|
|
const [classidtrainingtoupdate, setclassidtrainingtoupdate] = useState();
|
|
|
|
|
|
const [externalcodetraining_toupdate, setexternalcodetraining_toupdate] = useState();
|
|
const [updatetraining, setupdatetraining] = useState(false);
|
|
const [createtraining, setcreatetraining] = useState(false);
|
|
|
|
|
|
const changeHandler2 = (event) => {
|
|
|
|
|
|
setformation_file_name();
|
|
Closecreatetraining();
|
|
setapiexcelimportmessage();
|
|
setformation_file_name();
|
|
sethandleSubmission_api();
|
|
hiddenFileInput_formation.current.click();
|
|
};
|
|
|
|
const [formation_file_name, setformation_file_name] = useState();
|
|
|
|
const hiddenFileInput_formation = React.useRef(null);
|
|
|
|
const [excelimportmessage, setexcelimportmessage] = useState("");
|
|
const [apiexcelimportmessage, setapiexcelimportmessage] = useState("");
|
|
|
|
const [handleSubmission_api, sethandleSubmission_api] = useState();
|
|
const [handleSubmission_result, sethandleSubmission_result] = useState();
|
|
const [handleSubmission_message, sethandleSubmission_message] = useState();
|
|
|
|
const handleSubmission = event => {
|
|
|
|
const formData = new FormData();
|
|
|
|
const fileUploaded = event.target.files[0];
|
|
let file_size = event.target.files[0].size;
|
|
let file_type = event.target.files[0].type;
|
|
|
|
//console.log("file_size = ",file_size," file_type = ",file_type);
|
|
if (file_size > 1000000) {
|
|
//alert("Le fichier ne doit pas dépasser un 1 Méga octets");
|
|
|
|
setdisplay_alert_mysy("1");
|
|
setalert_message("Le fichier ne doit pas dépasser un 1 Méga octets");
|
|
setalert_type("error");
|
|
|
|
return;
|
|
}
|
|
|
|
setformation_file_name(event.target.files[0].name);
|
|
|
|
//console.log(" import du ficier ", event.target.files[0].name);
|
|
|
|
|
|
formData.append('File', fileUploaded);
|
|
//formData.append('token', 'K3cw63eKokKSbV4spjQ48SUNnfy80yrXfA');
|
|
const stored_cookie = getCookie('tokenmysypart');
|
|
|
|
|
|
formData.append("token", stored_cookie);
|
|
|
|
//console.log("token = " + stored_cookie); theme_name
|
|
setLoading(true);
|
|
fetch(
|
|
process.env.REACT_APP_API_URL + "myclass/api/add_class_mass/",
|
|
{
|
|
method: 'POST',
|
|
body: formData,
|
|
}
|
|
)
|
|
.then((response) => response.json())
|
|
.then((result) => {
|
|
//console.log('Success:', result['message']);
|
|
setexcelimportmessage(result['message']);
|
|
setmyApiResponse("true");
|
|
setapiexcelimportmessage(result['status']);
|
|
setLoading(false);
|
|
if (String(result['status']) === String("true")) {
|
|
|
|
sethandleSubmission_api("true");
|
|
GetAllClass_new();
|
|
var local_message = result['message']; // + " Vous allez être redirigé vers la liste des formations"
|
|
window.scrollTo({
|
|
top: 0,
|
|
behavior: "smooth",
|
|
});
|
|
|
|
alert(local_message);
|
|
|
|
setdisplay_alert_mysy("1");
|
|
setalert_message(local_message);
|
|
setalert_type("success");
|
|
|
|
//history.push("/Partner/affichage");
|
|
//window.location.reload();
|
|
//return;
|
|
|
|
} else if (String(result['status']) === String("Err_Connexion")) {
|
|
alert('Erreur: ' + result['message']);
|
|
history.push("/Connexion");
|
|
}
|
|
|
|
else {
|
|
sethandleSubmission_api("false");
|
|
sethandleSubmission_message(result['message']);
|
|
window.scrollTo({
|
|
top: 0,
|
|
behavior: "smooth",
|
|
});
|
|
// alert(result['message']);
|
|
setdisplay_alert_mysy("1");
|
|
setalert_message(result['message']);
|
|
setalert_type("error");
|
|
|
|
setformation_file_name("");
|
|
|
|
|
|
|
|
|
|
}
|
|
//alert("result['status'] " + result['status']);
|
|
})
|
|
.catch((error) => {
|
|
setLoading(false);
|
|
setmyApiResponse("false");
|
|
setapiexcelimportmessage("-1");
|
|
sethandleSubmission_api("false");
|
|
// alert(" Impossible d'importer/mettre à jour les formations");
|
|
|
|
// alert(result['message']);
|
|
setdisplay_alert_mysy("1");
|
|
setalert_message("Impossible d'importer/mettre à jour les formations");
|
|
setalert_type("error");
|
|
|
|
});
|
|
};
|
|
|
|
|
|
function handleClick(event, cellValues) {
|
|
|
|
var url = process.env.REACT_APP_API_URL + "myclass/api/check_partner_token_validity_v2/";
|
|
|
|
var formData = new FormData();
|
|
const stored_cookie = getCookie('tokenmysypart');
|
|
formData.append("token", stored_cookie);
|
|
fetch(
|
|
url,
|
|
{
|
|
method: 'POST',
|
|
body: formData,
|
|
}
|
|
)
|
|
.then((response) => response.json())
|
|
.then((result) => {
|
|
console.log(' isValidToken ==> Success:', result['message'], "result['status'] = ", result['status']);
|
|
|
|
if (String(result['status']) !== String("true")) {
|
|
alert("La session de connexion n'est pas valide");
|
|
history.push("/Connexion");
|
|
}
|
|
|
|
if (String(result['status']) === String("true")) {
|
|
Edittraining(event, cellValues);
|
|
//console.log(cellValues);
|
|
}
|
|
|
|
|
|
})
|
|
.catch((error) => {
|
|
console.error('Error:', error);
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
const [selectionModel, setSelectionModel] = React.useState([]);
|
|
const [rowss, setRows] = useState([]);
|
|
const [tableData, setTableData] = useState([])
|
|
|
|
const [refreshgrid, setrefreshgrid] = useState("")
|
|
function GetAllClass_WOfilter(event) {
|
|
var form = new FormData();
|
|
|
|
//form.append("token","K3cw63eKokKSbV4spjQ48SUNnfy80yrXfA");
|
|
const stored_cookie = getCookie('tokenmysypart');
|
|
form.append("token", stored_cookie);
|
|
|
|
var myurl = process.env.REACT_APP_API_URL + "myclass/api/get_partner_class/";
|
|
|
|
//alert(" laaa");
|
|
fetch(myurl,
|
|
{
|
|
method: 'POST',
|
|
body: form,
|
|
})
|
|
.then((data) => data.json())
|
|
.then((data) => {
|
|
console.log('GetAllClass_WOfilter : Success:', data['message'], "data['status'] = ", data['status']);
|
|
setTableData(data['message']);
|
|
setRows(data['message']);
|
|
|
|
//alert(" GetAllClass_WOfilter OKK "+refreshgrid);
|
|
setrefreshgrid("1");
|
|
|
|
|
|
}).catch((error) => {
|
|
console.error('GetAllClass_WOfilter Error:', error);
|
|
setmyApiResponse("false");
|
|
});
|
|
|
|
}
|
|
|
|
|
|
function GetAllClass_new(event) {
|
|
|
|
var form = new FormData();
|
|
|
|
// Recuperation des parametres
|
|
var filtre1 = p_filtre1;
|
|
var filtre2 = p_filtre2;
|
|
var filtre3 = p_filtre3;
|
|
|
|
var filtre1_value = "";
|
|
var filtre2_value = "";
|
|
var filtre3_value = "";
|
|
|
|
// Recuperation des valeurs de filtres
|
|
|
|
if (p_filtre1_value) {
|
|
filtre1_value = p_filtre1_value;
|
|
form.append(filtre1, filtre1_value);
|
|
}
|
|
|
|
if (p_filtre2_value) {
|
|
filtre2_value = p_filtre2_value;
|
|
form.append(filtre2, filtre2_value);
|
|
}
|
|
|
|
if (p_filtre3_value) {
|
|
filtre3_value = p_filtre3_value;
|
|
form.append(filtre3, filtre3_value);
|
|
}
|
|
|
|
|
|
const stored_cookie = getCookie('tokenmysypart');
|
|
form.append("token", stored_cookie);
|
|
|
|
var myurl = process.env.REACT_APP_API_URL + "myclass/api/find_partner_class_like/";
|
|
|
|
fetch(myurl,
|
|
{
|
|
method: 'POST',
|
|
body: form,
|
|
})
|
|
.then((data) => data.json())
|
|
.then((data) => {
|
|
// console.log('GetAllClass_new ==> Success:', data['message'], "data['status'] = ", data['status']);
|
|
// console.log(" String(data['status'] = ", String(data['status']));
|
|
setTableData(data['message']);
|
|
setRows(data['message']);
|
|
if (String(data['status']) === String("false")) {
|
|
//console.log("erreur rrrr:" + data['status'])
|
|
setmyApiResponse("False");
|
|
|
|
}
|
|
else {
|
|
setmyApiResponse("True");
|
|
}
|
|
|
|
}).catch((error) => {
|
|
console.error('Error:', error);
|
|
setmyApiResponse("false");
|
|
});
|
|
|
|
}
|
|
|
|
function GetAllClass_new_no_filter(event) {
|
|
|
|
var form = new FormData();
|
|
|
|
|
|
//form.append("token","K3cw63eKokKSbV4spjQ48SUNnfy80yrXfA");
|
|
const stored_cookie = getCookie('tokenmysypart');
|
|
form.append("token", stored_cookie);
|
|
|
|
var myurl = process.env.REACT_APP_API_URL + "myclass/api/find_partner_class_like/";
|
|
fetch(myurl,
|
|
{
|
|
method: 'POST',
|
|
body: form,
|
|
})
|
|
.then((data) => data.json())
|
|
.then((data) => {
|
|
//console.log('Success:', data['message'], "data['status'] = ", data['status']);
|
|
setTableData(data['message']);
|
|
setRows(data['message']);
|
|
if (String(data['status']) === String("false")) {
|
|
//console.log("erreur rrrr:" + data['status'])
|
|
setmyApiResponse("False");
|
|
|
|
}
|
|
else {
|
|
setmyApiResponse("True");
|
|
|
|
}
|
|
|
|
}).catch((error) => {
|
|
console.error('Error:', error);
|
|
setmyApiResponse("false");
|
|
});
|
|
|
|
}
|
|
|
|
|
|
function Display_Colunm_text({ value }) {
|
|
|
|
return (
|
|
<div style={{ paddingLeft: "5px", paddingRight: "10px", "display": "block", wordBreak: "break-all" }}>
|
|
{value}
|
|
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function ExpandableCell_50({ value }) {
|
|
const [expanded, setExpanded] = React.useState(false);
|
|
|
|
return (
|
|
<nav>
|
|
{value && <div style={{ paddingLeft: "5px", paddingRight: "15px", "display": "block", wordBreak: "break-all" }}>
|
|
|
|
{expanded ? value : value.slice(0, 50)}
|
|
{value.length > 50 && (
|
|
// eslint-disable-next-line jsx-a11y/anchor-is-valid
|
|
<Link
|
|
type="button"
|
|
component="button"
|
|
sx={{ fontSize: 'inherit' }}
|
|
onClick={() => setExpanded(!expanded)}
|
|
>
|
|
{expanded ? <nav> <PiDotsThree />Réduire</nav> : <nav> <PiDotsThree />Voir</nav>}
|
|
</Link>
|
|
)}
|
|
</div>}
|
|
|
|
{value && <div style={{ paddingLeft: "5px", paddingRight: "15px", "display": "block", wordBreak: "break-all" }}>
|
|
|
|
</div>
|
|
}
|
|
</nav>
|
|
);
|
|
}
|
|
|
|
const [ismobilephone_columns_hide, setismobilephone_columns_hide] = useState(false);
|
|
|
|
const [datagrid_columns_size_model1, setdatagrid_columns_size_model1] = useState(200);
|
|
const [datagrid_columns_size_model2, setdatagrid_columns_size_model2] = useState(120);
|
|
|
|
|
|
const options_menu_vertical = [
|
|
'',
|
|
'Visualiser',
|
|
'Editer',
|
|
'Pubier E-Learning',
|
|
'Supprimer',
|
|
];
|
|
|
|
const options_menu_vertical_With_E_Learning = [
|
|
'',
|
|
'Visualiser',
|
|
'Editer',
|
|
'Ouvrir E-Learning',
|
|
'Supprimer',
|
|
];
|
|
|
|
const ITEM_HEIGHT = 48;
|
|
|
|
|
|
const [anchorEl, setAnchorEl] = React.useState(null);
|
|
const open = Boolean(anchorEl);
|
|
const handleClick_option_button_vertical = (event) => {
|
|
setAnchorEl(event.currentTarget);
|
|
};
|
|
const handleClose_option_button_vertical = (event, value) => {
|
|
|
|
|
|
console.log("Option traitement = ", value);
|
|
|
|
if (value && String(value) === "Supprimer") {
|
|
|
|
}
|
|
|
|
else if (value && String(value) === "Editer") {
|
|
|
|
}
|
|
|
|
else if (value && String(value) === "Pub. E-Learning") {
|
|
|
|
}
|
|
|
|
|
|
else if (value && String(value) === "Supprimer") {
|
|
|
|
console.log("Option traitement 22 = ", value);
|
|
|
|
|
|
}
|
|
|
|
|
|
setAnchorEl(null);
|
|
|
|
};
|
|
|
|
|
|
const [anchorEl_A, setanchorEl_A] = React.useState(null);
|
|
const open_a = Boolean(anchorEl_A);
|
|
const handleClick_option_button_vertical_A = (event) => {
|
|
setanchorEl_A(event.currentTarget);
|
|
};
|
|
const handleClose_option_button_vertical_A = (event, value) => {
|
|
|
|
if (value && String(value) === "Supprimer") {
|
|
|
|
}
|
|
|
|
else if (value && String(value) === "Editer") {
|
|
|
|
}
|
|
|
|
else if (value && String(value) === "Accès E-Learning") {
|
|
|
|
}
|
|
|
|
|
|
else if (value && String(value) === "Supprimer") {
|
|
|
|
|
|
}
|
|
|
|
|
|
setanchorEl_A(null);
|
|
|
|
};
|
|
|
|
|
|
const columns = [
|
|
{ field: "id", hide: true, filterable: false, disableExport: true },
|
|
{ field: '_id', headerName: '_id', hide: true, disableExport: true, Width: 0, },
|
|
{ field: 'lms_class_code', headerName: 'lms_class_code', hide: true, Width: 0, },
|
|
{ field: 'duration', headerName: 'duration', hide: true, Width: 0, },
|
|
{ field: 'presentiel', headerName: 'Présentiel', hide: true, Width: 0, },
|
|
{ field: 'distanciel', headerName: 'Distanciel', hide: true, Width: 0, },
|
|
{ field: 'cible', headerName: 'Cible', hide: true, Width: 0, },
|
|
{ field: 'duration_unit', headerName: 'duration_unit', hide: true, Width: 0, editable: false, },
|
|
{ field: 'duration_in_hour', headerName: 'duration_in_hour', hide: true, Width: 0, editable: false, },
|
|
{ field: 'currency', headerName: 'Devise', hide: true, Width: 0, editable: false, },
|
|
{
|
|
field: 'archive', headerName: 'Archivé', hide: true, Width: 50, editable: false, renderCell: (cellValues) => {
|
|
return (
|
|
<div style={{ paddingLeft: "5px", paddingRight: "10px", "display": "block", wordBreak: "break-all" }}>
|
|
{String(cellValues.row.archive) === "1" && "Oui"}
|
|
{String(cellValues.row.archive) !== "1" && "Non"}
|
|
|
|
</div>
|
|
|
|
);
|
|
},
|
|
},
|
|
|
|
{ field: 'zone_diffusion', headerName: 'zone_diffusion', hide: true, maxWidth: 1, editable: false, },
|
|
{ field: 'internal_url', headerName: 'internal_url', hide: true, editable: false, },
|
|
{ field: 'external_code', headerName: 'Code Formation', minWidth: 150, flex: 1, maxWidth: 250, editable: false, renderCell: (params) => <ExpandableCell_50 {...params} />, },
|
|
{ field: 'title', headerName: 'Titre', minWidth: 300, flex: 1, editable: false, renderCell: (params) => <Display_Colunm_text {...params} />, },
|
|
{ field: 'referentiel_padagogique', headerName: 'Réferentiel Ped.', minWidth: 100, flex: 1, maxWidth: 200, hideable: true, hide: false, editable: false, renderCell: (params) => <Display_Colunm_text {...params} />, },
|
|
|
|
|
|
{ field: 'domain', headerName: 'Domaine', minWidth: 100, flex: 1, maxWidth: 200, hideable: true, editable: false, renderCell: (params) => <Display_Colunm_text {...params} />, },
|
|
{ field: 'metier', headerName: 'Métier', minWidth: 100, flex: 1, maxWidth: 200, hideable: true, hide: true, editable: false, renderCell: (params) => <Display_Colunm_text {...params} />, },
|
|
|
|
|
|
{ field: 'categorie', headerName: 'Catégorie', minWidth: 100, flex: 1, maxWidth: 200, hideable: true, hide: false, editable: false, renderCell: (params) => <Display_Colunm_text {...params} />, },
|
|
|
|
|
|
{
|
|
field: 'nb_session_formation', headerName: 'Nb Session', minWidth: 50, flex: 1, maxWidth: 100, hideable: true, hide: false, editable: false, align: "center",
|
|
renderCell: (cellValues) => {
|
|
return (
|
|
|
|
<nav style={{ width: '100%', 'textAlign': 'center' }}>
|
|
{String(cellValues.row.nb_session_formation).length > 0 && parseInt(String(cellValues.row.nb_session_formation)) <= 0 && <div>
|
|
|
|
{cellValues.row.nb_session_formation}
|
|
|
|
</div>}
|
|
|
|
{String(cellValues.row.nb_session_formation).length > 0 && parseInt(String(cellValues.row.nb_session_formation)) > 0 &&
|
|
|
|
<nav>
|
|
|
|
<Button
|
|
|
|
onClick={(event) => {
|
|
window.open(
|
|
process.env.REACT_APP_FRONT_URL + "Partner/mes_sessions/class/" + String(cellValues.row.internal_url),
|
|
'_blank'
|
|
);
|
|
}}
|
|
|
|
variant="outlined"
|
|
|
|
|
|
>
|
|
{cellValues.row.nb_session_formation}
|
|
|
|
</Button>
|
|
</nav>}
|
|
</nav>
|
|
|
|
);
|
|
},
|
|
},
|
|
|
|
|
|
{ field: 'url', headerName: 'lien', minWidth: 20, hideable: true, hide: true, editable: false, },
|
|
|
|
|
|
{ field: 'description', headerName: 'Description', hide: true, resizable: true, minWidth: 250, maxWidth: 300, flex: 1, renderCell: (params) => <ExpandableCell_50 {...params} />, },
|
|
|
|
{ field: 'version', headerName: 'Version Catalogue', hide: true, minWidth: 100, maxWidth: 200, flex: 1, renderCell: (params) => <ExpandableCell_50 {...params} />, },
|
|
|
|
{
|
|
field: 'price', headerName: 'Prix', minWidth: 50, flex: 1, maxWidth: 100, align: "center", resizable: true, hide: ismobilephone_columns_hide, editable: false,
|
|
renderCell: (params) => <Display_Colunm_text {...params} />,
|
|
},
|
|
{
|
|
field: 'published', headerName: 'Publié', minWidth: 50, flex: 1, maxWidth: 100, align: "center", resizable: true, editable: false,
|
|
|
|
renderCell: (cellValues) => {
|
|
return (
|
|
<div style={{ paddingLeft: "5px", paddingRight: "10px", "display": "block", wordBreak: "break-all" }}>
|
|
{String(cellValues.row.published) === "1" && "Oui"}
|
|
{String(cellValues.row.published) !== "1" && "Non"}
|
|
|
|
</div>
|
|
|
|
);
|
|
},
|
|
},
|
|
|
|
{
|
|
field: "visual", headerName: 'Visualiser', minWidth: 50, flex: 1, maxWidth: 100, disableExport: true,
|
|
renderCell: (cellValues) => {
|
|
return (
|
|
|
|
<Button style={{ "marginLeft": "auto", "marginRight": "auto", "cursor": "pointer" }}
|
|
|
|
onClick={(event) => {
|
|
Visualiser(event, cellValues);
|
|
}}
|
|
>
|
|
<BsEye />
|
|
|
|
</Button>
|
|
|
|
);
|
|
}
|
|
},
|
|
|
|
|
|
{
|
|
field: 'bton_vertif', headerName: 'Gestion', minWidth: 50, flex: 1, maxWidth: 100, hideable: true, hide: false, editable: false, align: "center",
|
|
renderCell: (cellValues) => {
|
|
return (
|
|
<div>
|
|
|
|
{(!cellValues.row.lms_class_code || String(cellValues.row.lms_class_code).length <= 2) &&
|
|
<nav style={{ width: '100%', 'textAlign': 'center' }}>
|
|
<IconButton
|
|
aria-label="more"
|
|
id="long-button"
|
|
aria-controls={open ? 'long-menu_p' : undefined}
|
|
aria-expanded={open ? 'true' : undefined}
|
|
aria-haspopup="true"
|
|
// onClick={handleClick_option_button_vertical}
|
|
onClick={(e) => {
|
|
handleClick_option_button_vertical(e);
|
|
setworking_cellValues(cellValues);
|
|
|
|
}}
|
|
|
|
>
|
|
<MoreVertIcon />
|
|
</IconButton>
|
|
<Menu
|
|
id="long-menu_p"
|
|
MenuListProps={{
|
|
'aria-labelledby': 'long-button',
|
|
}}
|
|
anchorEl={anchorEl}
|
|
open={open}
|
|
onClose={handleClose_option_button_vertical}
|
|
slotProps={{
|
|
paper: {
|
|
style: {
|
|
maxHeight: ITEM_HEIGHT * 4.5,
|
|
width: '20ch',
|
|
boxShadow: "-3px 4px 0px -30px #000000",
|
|
borderRadius: '0px !important',
|
|
lineHeight: '3rem'
|
|
},
|
|
},
|
|
}}
|
|
>
|
|
{options_menu_vertical.map((option) => (
|
|
<MenuItem key={option}
|
|
|
|
onClick={(e) => {
|
|
//handleClose_option_button_vertical(e, option);
|
|
setAnchorEl(null);
|
|
|
|
if (option && String(option) === "Supprimer") {
|
|
setdialogOpen_supp(true);
|
|
}
|
|
|
|
else if (option && String(option) === "Editer") {
|
|
handleClick(e, working_cellValues);
|
|
}
|
|
|
|
else if (option && String(option) === "Pubier E-Learning") {
|
|
setdialogOpen_push_lms(true);
|
|
}
|
|
|
|
else if (option && String(option) === "Visualiser") {
|
|
Visualiser(e, working_cellValues);
|
|
}
|
|
|
|
}}
|
|
>
|
|
{option}
|
|
</MenuItem>
|
|
))}
|
|
</Menu>
|
|
|
|
{/*** GESTION Dialog menu item pour suppression */}
|
|
{dialogOpen_supp && <Dialog
|
|
open={dialogOpen_supp}
|
|
className="displaypartnersession"
|
|
static
|
|
onClose={() => null}
|
|
|
|
PaperProps={{
|
|
className: classes.paper, // Apply the paper style
|
|
style: {
|
|
overflowY: 'unset',
|
|
// position: 'absolute',
|
|
top: '7rem',
|
|
margin: "2px",
|
|
boxShadow: "-3px 4px 0px -30px #000000",
|
|
},
|
|
}}
|
|
hideBackdrop={true}
|
|
disableScrollLock
|
|
classes={{
|
|
paper: classes.dialog
|
|
}}
|
|
|
|
PaperComponent={PaperComponent}
|
|
aria-labelledby="draggable-dialog-title"
|
|
>
|
|
|
|
<DialogContent className="DialogContent_width">
|
|
|
|
<div>
|
|
<button className="gest_close" onClick={Dialog_menuitem_close_supp}>
|
|
×
|
|
</button>
|
|
<div className="gest_header"> MySy Information </div>
|
|
<div className="gest_content">
|
|
{' '}
|
|
|
|
En confirmant cette opération, la formation sera <i><font color="red"> définitivement supprimée</font></i>. <br />
|
|
Avant, assurez-vous de n'avoir aucune session rattachée à la formation.
|
|
|
|
</div>
|
|
<div className="gest_actions">
|
|
<div style={{ "width": "45%", "float": "left" }}>
|
|
<button className="gest_bton_popup" onClick={(event) => {
|
|
handleClick_delete(event, working_cellValues);
|
|
Dialog_menuitem_close_supp();
|
|
}}> Valider </button>
|
|
|
|
</div>
|
|
<div style={{ "width": "45%", "float": "right" }}>
|
|
<button
|
|
className="gest_bton_popup"
|
|
onClick={() => {
|
|
console.log('modal closed ');
|
|
Dialog_menuitem_close_supp();
|
|
}}
|
|
>
|
|
Annuler
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</DialogContent>
|
|
|
|
<DialogActions>
|
|
</DialogActions>
|
|
|
|
|
|
</Dialog>}
|
|
{/*** FIN GESTION Dialog menu item pour suppression*/}
|
|
|
|
|
|
{/*** GESTION Dialog menu item pour push lms */}
|
|
{dialogOpen_push_lms && <Dialog
|
|
open={dialogOpen_push_lms}
|
|
className="displaypartnersession"
|
|
static
|
|
onClose={() => null}
|
|
|
|
PaperProps={{
|
|
className: classes.paper, // Apply the paper style
|
|
style: {
|
|
overflowY: 'unset',
|
|
// position: 'absolute',
|
|
top: '7rem',
|
|
margin: "2px",
|
|
boxShadow: "-3px 4px 0px -30px #000000",
|
|
},
|
|
}}
|
|
hideBackdrop={true}
|
|
disableScrollLock
|
|
classes={{
|
|
paper: classes.dialog
|
|
}}
|
|
|
|
PaperComponent={PaperComponent}
|
|
aria-labelledby="draggable-dialog-title"
|
|
>
|
|
|
|
<DialogContent className="DialogContent_width">
|
|
|
|
<div>
|
|
<button className="gest_close" onClick={Dialog_menuitem_close_push_lms}>
|
|
×
|
|
</button>
|
|
<div className="gest_header"> MySy Information </div>
|
|
<div className="gest_content">
|
|
{' '}
|
|
|
|
/!\ Important : Confirmer la publication de la formation dans l'eapce E-Learning.
|
|
Vous allez écraser d'eventuelles informations déjà présente dans le e-Learning, pour cette formation.
|
|
|
|
</div>
|
|
<div className="gest_actions">
|
|
<div style={{ "width": "45%", "float": "left" }}>
|
|
<button className="gest_bton_popup" onClick={(event) => {
|
|
handlepush_to_lms(event, working_cellValues);
|
|
Dialog_menuitem_close_push_lms();
|
|
}}> Valider </button>
|
|
|
|
</div>
|
|
<div style={{ "width": "45%", "float": "right" }}>
|
|
<button
|
|
className="gest_bton_popup"
|
|
onClick={() => {
|
|
console.log('modal closed ');
|
|
Dialog_menuitem_close_push_lms();
|
|
}}
|
|
>
|
|
Annuler
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</DialogContent>
|
|
|
|
<DialogActions>
|
|
</DialogActions>
|
|
|
|
|
|
</Dialog>}
|
|
{/*** FIN GESTION Dialog menu item pour push lms*/}
|
|
|
|
|
|
</nav>}
|
|
{cellValues.row.lms_class_code && String(cellValues.row.lms_class_code).length > 2 && <nav style={{ width: '100%', 'textAlign': 'center' }}>
|
|
<IconButton
|
|
aria-label="more"
|
|
id="long-button"
|
|
aria-controls={open ? 'long-menu_a' : undefined}
|
|
aria-expanded={open ? 'true' : undefined}
|
|
aria-haspopup="true"
|
|
// onClick={handleClick_option_button_vertical}
|
|
onClick={(e) => {
|
|
handleClick_option_button_vertical_A(e);
|
|
setworking_cellValues(cellValues);
|
|
|
|
}}
|
|
|
|
>
|
|
<MoreVertIcon />
|
|
</IconButton>
|
|
<Menu
|
|
id="long-menu_a"
|
|
MenuListProps={{
|
|
'aria-labelledby': 'long-button',
|
|
}}
|
|
anchorEl={anchorEl_A}
|
|
open={open_a}
|
|
onClose={handleClose_option_button_vertical_A}
|
|
slotProps={{
|
|
paper: {
|
|
style: {
|
|
maxHeight: ITEM_HEIGHT * 4.5,
|
|
width: '20ch',
|
|
boxShadow: "-3px 4px 0px -30px #000000",
|
|
borderRadius: '0px !important',
|
|
lineHeight: '3rem'
|
|
},
|
|
},
|
|
}}
|
|
>
|
|
{options_menu_vertical_With_E_Learning.map((option) => (
|
|
<MenuItem key={option}
|
|
|
|
onClick={(e) => {
|
|
//handleClose_option_button_vertical(e, option);
|
|
setanchorEl_A(null);
|
|
|
|
if (option && String(option) === "Supprimer") {
|
|
setdialogOpen_supp(true);
|
|
}
|
|
|
|
else if (option && String(option) === "Editer") {
|
|
handleClick(e, working_cellValues);
|
|
}
|
|
|
|
else if (option && String(option) === "Ouvrir E-Learning") {
|
|
// setdialogOpen_push_lms(true);
|
|
|
|
// console.log(" ### acces e-learning url partner_lms_virtualhost_url = = ", props.partner_lms_virtualhost_url);
|
|
// console.log(" ###working_cellValues = = ", working_cellValues);
|
|
|
|
if (props.partner_lms_virtualhost_url) {
|
|
|
|
var class_url = props.partner_lms_virtualhost_url + "courses/" + String(working_cellValues.row.lms_class_code + "/index.php?id_session=0")
|
|
// console.log(" ### class_url = ", class_url);
|
|
|
|
window.open(
|
|
class_url,
|
|
'_blank'
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
else if (option && String(option) === "Visualiser") {
|
|
Visualiser(e, working_cellValues);
|
|
}
|
|
|
|
}}
|
|
>
|
|
{option}
|
|
</MenuItem>
|
|
))}
|
|
</Menu>
|
|
|
|
{/*** GESTION Dialog menu item pour suppression */}
|
|
{dialogOpen_supp && <Dialog
|
|
open={dialogOpen_supp}
|
|
className="displaypartnersession"
|
|
static
|
|
onClose={() => null}
|
|
|
|
PaperProps={{
|
|
className: classes.paper, // Apply the paper style
|
|
style: {
|
|
overflowY: 'unset',
|
|
// position: 'absolute',
|
|
top: '7rem',
|
|
margin: "2px",
|
|
boxShadow: "-3px 4px 0px -30px #000000",
|
|
},
|
|
}}
|
|
hideBackdrop={true}
|
|
disableScrollLock
|
|
classes={{
|
|
paper: classes.dialog
|
|
}}
|
|
|
|
PaperComponent={PaperComponent}
|
|
aria-labelledby="draggable-dialog-title"
|
|
>
|
|
|
|
<DialogContent className="DialogContent_width">
|
|
|
|
<div>
|
|
<button className="gest_close" onClick={Dialog_menuitem_close_supp}>
|
|
×
|
|
</button>
|
|
<div className="gest_header"> MySy Information </div>
|
|
<div className="gest_content">
|
|
{' '}
|
|
|
|
En confirmant cette opération, la formation sera <i><font color="red"> définitivement supprimée</font></i>. <br />
|
|
Avant, assurez-vous de n'avoir aucune session rattachée à la formation.
|
|
|
|
</div>
|
|
<div className="gest_actions">
|
|
<div style={{ "width": "45%", "float": "left" }}>
|
|
<button className="gest_bton_popup" onClick={(event) => {
|
|
handleClick_delete(event, working_cellValues);
|
|
Dialog_menuitem_close_supp();
|
|
}}> Valider </button>
|
|
|
|
</div>
|
|
<div style={{ "width": "45%", "float": "right" }}>
|
|
<button
|
|
className="gest_bton_popup"
|
|
onClick={() => {
|
|
console.log('modal closed ');
|
|
Dialog_menuitem_close_supp();
|
|
}}
|
|
>
|
|
Annuler
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</DialogContent>
|
|
|
|
<DialogActions>
|
|
</DialogActions>
|
|
|
|
|
|
</Dialog>}
|
|
{/*** FIN GESTION Dialog menu item pour suppression*/}
|
|
|
|
|
|
{/*** GESTION Dialog menu item pour push lms */}
|
|
{dialogOpen_push_lms && <Dialog
|
|
open={dialogOpen_push_lms}
|
|
className="displaypartnersession"
|
|
static
|
|
onClose={() => null}
|
|
|
|
PaperProps={{
|
|
className: classes.paper, // Apply the paper style
|
|
style: {
|
|
overflowY: 'unset',
|
|
// position: 'absolute',
|
|
top: '7rem',
|
|
margin: "2px",
|
|
boxShadow: "-3px 4px 0px -30px #000000",
|
|
},
|
|
}}
|
|
hideBackdrop={true}
|
|
disableScrollLock
|
|
classes={{
|
|
paper: classes.dialog
|
|
}}
|
|
|
|
PaperComponent={PaperComponent}
|
|
aria-labelledby="draggable-dialog-title"
|
|
>
|
|
|
|
<DialogContent className="DialogContent_width">
|
|
|
|
<div>
|
|
<button className="gest_close" onClick={Dialog_menuitem_close_push_lms}>
|
|
×
|
|
</button>
|
|
<div className="gest_header"> MySy Information </div>
|
|
<div className="gest_content">
|
|
{' '}
|
|
|
|
/!\ Important : Confirmer la publication de la formation dans l'eapce E-Learning.
|
|
Vous allez écraser d'eventuelles informations déjà présente dans le e-Learning, pour cette formation.
|
|
|
|
</div>
|
|
<div className="gest_actions">
|
|
<div style={{ "width": "45%", "float": "left" }}>
|
|
<button className="gest_bton_popup" onClick={(event) => {
|
|
handlepush_to_lms(event, working_cellValues);
|
|
Dialog_menuitem_close_push_lms();
|
|
}}> Valider </button>
|
|
|
|
</div>
|
|
<div style={{ "width": "45%", "float": "right" }}>
|
|
<button
|
|
className="gest_bton_popup"
|
|
onClick={() => {
|
|
// console.log('modal closed ');
|
|
Dialog_menuitem_close_push_lms();
|
|
}}
|
|
>
|
|
Annuler
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</DialogContent>
|
|
|
|
<DialogActions>
|
|
</DialogActions>
|
|
|
|
|
|
</Dialog>}
|
|
{/*** FIN GESTION Dialog menu item pour push lms*/}
|
|
|
|
|
|
</nav>}
|
|
</div>
|
|
);
|
|
},
|
|
},
|
|
]
|
|
|
|
|
|
|
|
const [working_cellValues, setworking_cellValues] = useState(false);
|
|
|
|
const [dialogOpen_supp, setdialogOpen_supp] = useState(false);
|
|
const Dialog_menuitem_close_supp = () => {
|
|
setdialogOpen_supp(false)
|
|
};
|
|
|
|
|
|
|
|
const [dialogOpen_push_lms, setdialogOpen_push_lms] = useState(false);
|
|
const Dialog_menuitem_close_push_lms = () => {
|
|
setdialogOpen_push_lms(false)
|
|
};
|
|
|
|
|
|
function Visualiser(event, cellValues) {
|
|
|
|
|
|
var url = process.env.REACT_APP_API_URL + "myclass/api/check_partner_token_validity_v2/";
|
|
|
|
var formData = new FormData();
|
|
const stored_cookie = getCookie('tokenmysypart');
|
|
formData.append("token", stored_cookie);
|
|
fetch(
|
|
url,
|
|
{
|
|
method: 'POST',
|
|
body: formData,
|
|
}
|
|
)
|
|
.then((response) => response.json())
|
|
.then((result) => {
|
|
console.log(' isValidToken ==> Success:', result['message'], "result['status'] = ", result['status']);
|
|
|
|
if (String(result['status']) !== String("true")) {
|
|
alert("La session de connexion n'est pas valide");
|
|
history.push("/Connexion");
|
|
}
|
|
if (String(result['status']) === String("true")) {
|
|
// On ne visualise que les formations publiées
|
|
if (cellValues.row.published !== "1") {
|
|
alert(" Vous devez publier la formation pour la visualiser ");
|
|
return;
|
|
}
|
|
window.open(
|
|
"/Display-Detail-formation/" + cellValues.row.internal_url,
|
|
'_blank'
|
|
);
|
|
}
|
|
|
|
|
|
})
|
|
.catch((error) => {
|
|
console.error('Error:', error);
|
|
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function handleClickManagement(event, cellValues) {
|
|
|
|
// Verification de la validité du token avant action.
|
|
var url = process.env.REACT_APP_API_URL + "myclass/api/check_partner_token_validity_v2/";
|
|
|
|
var formData = new FormData();
|
|
const stored_cookie = getCookie('tokenmysypart');
|
|
formData.append("token", stored_cookie);
|
|
fetch(
|
|
url,
|
|
{
|
|
method: 'POST',
|
|
body: formData,
|
|
}
|
|
)
|
|
.then((response) => response.json())
|
|
.then((result) => {
|
|
console.log(' isValidToken ==> Success:', result['message'], "result['status'] = ", result['status']);
|
|
|
|
if (String(result['status']) !== String("true")) {
|
|
alert("La session de connexion n'est pas valide");
|
|
history.push("/Connexion");
|
|
}
|
|
else if (String(result['status']) === String("true")) {
|
|
window.open(
|
|
"/GestionAdministrative/" + cellValues.row.internal_url,
|
|
'_blank'
|
|
);
|
|
}
|
|
|
|
|
|
})
|
|
.catch((error) => {
|
|
console.error('Error:', error);
|
|
|
|
|
|
});
|
|
|
|
// Fin verification
|
|
|
|
|
|
}
|
|
|
|
|
|
function Edittraining(event, cellValues) {
|
|
|
|
setclassidtrainingtoupdate(cellValues.row._id);
|
|
|
|
setreftrainingtoupdate(cellValues.row.internal_url);
|
|
setexternalcodetraining_toupdate(cellValues.row.external_code);
|
|
setupdatetraining(true);
|
|
}
|
|
|
|
|
|
|
|
|
|
function selectedFilter1(event) {
|
|
setselectedfilt1(event.value);
|
|
}
|
|
|
|
function selectedFilter2(event) {
|
|
setselectedfilt2(event.value);
|
|
}
|
|
|
|
function selectedFilter3(event) {
|
|
setselectedfilt3(event.value);
|
|
}
|
|
|
|
function CancelFiltre2(event) {
|
|
setselectedfilt2("");
|
|
}
|
|
|
|
function CancelFiltre3(event) {
|
|
setselectedfilt3("");
|
|
}
|
|
|
|
function closeTrainingForm() {
|
|
GetAllClass_new();
|
|
setupdatetraining(false);
|
|
}
|
|
|
|
function Closecreatetraining() {
|
|
setcreatetraining(false);
|
|
}
|
|
|
|
function Createtraining() {
|
|
setcreatetraining(true);
|
|
}
|
|
|
|
const [selectedtraining, setselectedtraining] = useState([])
|
|
|
|
function GetSelectedRowsTraining() {
|
|
///alert(" les lignes slected sont : " + selectionModel + " nb item = " + selectionModel.length);
|
|
//const selectedRowsData = selectionModel.map((id) => rowss.find((row) => row.id === id));
|
|
//console.log(rowss[0]);
|
|
var tab_tmp = []
|
|
for (var i = 0; i < selectionModel.length; i++) {
|
|
var myid = parseInt(String(selectionModel[i]));
|
|
var line = JSON.parse(rowss[myid]);
|
|
tab_tmp.push(line.internal_url);
|
|
//console.log(rowss[myid]['external_code']);
|
|
}
|
|
setselectedtraining(tab_tmp);
|
|
return tab_tmp;
|
|
|
|
}
|
|
|
|
function GetSelectedRowsTraining_id_values() {
|
|
///alert(" les lignes slected sont : " + selectionModel + " nb item = " + selectionModel.length);
|
|
//const selectedRowsData = selectionModel.map((id) => rowss.find((row) => row.id === id));
|
|
//console.log(rowss[0]);
|
|
var tab_tmp = []
|
|
for (var i = 0; i < selectionModel.length; i++) {
|
|
var myid = parseInt(String(selectionModel[i]));
|
|
var line = JSON.parse(rowss[myid]);
|
|
tab_tmp.push(line._id);
|
|
//console.log(rowss[myid]['external_code']);
|
|
}
|
|
setselectedtraining(tab_tmp);
|
|
return tab_tmp;
|
|
|
|
}
|
|
|
|
|
|
// Fonction de verification de la validité d'un token.
|
|
function isValidToken() {
|
|
|
|
var url = process.env.REACT_APP_API_URL + "myclass/api/check_partner_token_validity_v2/";
|
|
|
|
var formData = new FormData();
|
|
const stored_cookie = getCookie('tokenmysypart');
|
|
formData.append("token", stored_cookie);
|
|
fetch(
|
|
url,
|
|
{
|
|
method: 'POST',
|
|
body: formData,
|
|
}
|
|
)
|
|
.then((response) => response.json())
|
|
.then((result) => {
|
|
console.log(' isValidToken ==> Success:', result['message'], "result['status'] = ", result['status']);
|
|
|
|
if (String(result['status']) !== String("true")) {
|
|
alert("La session de connexion n'est pas valide");
|
|
history.push("/Connexion");
|
|
}
|
|
|
|
|
|
})
|
|
.catch((error) => {
|
|
console.error('Error:', error);
|
|
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function Unpublish_class(tab_class) {
|
|
|
|
var url = process.env.REACT_APP_API_URL + "myclass/api/unpublish_class/";
|
|
|
|
|
|
for (var i = 0; i < tab_class.length; i++) {
|
|
//console.log(" position = "+i+" val = "+tab_class[i]);
|
|
//alert(" début desactivation de la formation " + tab_class[i]);
|
|
var formData = new FormData();
|
|
const stored_cookie = getCookie('tokenmysypart');
|
|
formData.append("token", stored_cookie);
|
|
formData.append("internal_url", tab_class[i]);
|
|
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")) {
|
|
//alert(" OK pour la formation :" + tab_class[i]);
|
|
}
|
|
|
|
})
|
|
.catch((error) => {
|
|
console.error('Error:', error);
|
|
//alert(" KOO pour la formation :" + tab_class[i]);
|
|
|
|
});
|
|
|
|
}
|
|
}
|
|
|
|
function Publish_class(tab_class) {
|
|
|
|
var url = process.env.REACT_APP_API_URL + "myclass/api/pusblish_class/";
|
|
|
|
for (var i = 0; i < tab_class.length; i++) {
|
|
|
|
//alert(" début desactivation de la formation " + tab_class[i]);
|
|
//console.log(" NB = "+i+" id = "+tab_class[i]);
|
|
var formData = new FormData();
|
|
const stored_cookie = getCookie('tokenmysypart');
|
|
formData.append("token", stored_cookie);
|
|
formData.append("internal_url", tab_class[i]);
|
|
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")) {
|
|
//alert(" OK pour la formation :" + tab_class[i]);
|
|
}
|
|
|
|
})
|
|
.catch((error) => {
|
|
console.error('Error:', error);
|
|
//alert(" KOO pour la formation :" + tab_class[i]);
|
|
|
|
});
|
|
|
|
}
|
|
}
|
|
|
|
function Disable_class(tab_class) {
|
|
|
|
var url = process.env.REACT_APP_API_URL + "myclass/api/disable_class/";
|
|
|
|
for (var i = 0; i < tab_class.length; i++) {
|
|
|
|
//alert(" début desactivation de la formation " + tab_class[i]);
|
|
var formData = new FormData();
|
|
const stored_cookie = getCookie('tokenmysypart');
|
|
formData.append("token", stored_cookie);
|
|
formData.append("internal_url", tab_class[i]);
|
|
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")) {
|
|
//alert(" OK pour la formation :" + tab_class[i]);
|
|
}
|
|
|
|
})
|
|
.catch((error) => {
|
|
console.error('Error:', error);
|
|
//alert(" KOO pour la formation :" + tab_class[i]);
|
|
|
|
});
|
|
|
|
}
|
|
}
|
|
|
|
|
|
function Duplicate_class(tab_class) {
|
|
|
|
var url = process.env.REACT_APP_API_URL + "myclass/api/Duplicate_Class_from_internal_url/";
|
|
|
|
setLoading(true);
|
|
for (var i = 0; i < tab_class.length; i++) {
|
|
|
|
//alert(" début desactivation de la formation " + tab_class[i]);
|
|
var formData = new FormData();
|
|
const stored_cookie = getCookie('tokenmysypart');
|
|
formData.append("token", stored_cookie);
|
|
formData.append("internal_url", tab_class[i]);
|
|
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")) {
|
|
alert(String(result['message']))
|
|
}
|
|
|
|
})
|
|
.catch((error) => {
|
|
setLoading(false);
|
|
console.error('Error:', error);
|
|
//alert(" KOO pour la formation :" + tab_class[i]);
|
|
|
|
});
|
|
|
|
}
|
|
setLoading(false);
|
|
}
|
|
|
|
|
|
|
|
function Export_class(tab_class) {
|
|
const stored_cookie = getCookie('tokenmysypart');
|
|
|
|
var nom_fichier_cmd = "export_formation.xlsx";
|
|
|
|
var url = process.env.REACT_APP_API_URL + "myclass/api/Export_Class_To_Excel_From_from_List_Id/" + stored_cookie + "/" + tab_class;
|
|
|
|
|
|
setLoading(true);
|
|
axios.get(url, { responseType: 'blob', },)
|
|
.then((res) => {
|
|
setLoading(false);
|
|
//console.log(" In Export_Dashbord_to_CSV res.data = " + res.data);
|
|
if (String(res.data) === String("false")) {
|
|
alert("Impossible d'exporter les formations (2) ");
|
|
} else {
|
|
fileDownload(res.data, nom_fichier_cmd)
|
|
|
|
}
|
|
}).catch((error) => {
|
|
setLoading(false);
|
|
console.error('Error:', error);
|
|
alert(" Impossible d'exporter les formations ")
|
|
|
|
});
|
|
|
|
|
|
setLoading(false);
|
|
}
|
|
|
|
|
|
function ActionMass(e) {
|
|
|
|
// On vide le datagrid pour faire un refresj
|
|
setRows([]);
|
|
//return;
|
|
|
|
var actionenmasse = ""
|
|
if (document.getElementById("actionmass")) {
|
|
actionenmasse = document.getElementById("actionmass").value;
|
|
}
|
|
|
|
var liste_formation = GetSelectedRowsTraining();
|
|
var liste_formation_ids_values = GetSelectedRowsTraining_id_values();
|
|
|
|
|
|
|
|
if (String(actionenmasse) === String("depublier")) {
|
|
|
|
Unpublish_class(liste_formation);
|
|
GetAllClass_WOfilter();
|
|
}
|
|
|
|
else if (String(actionenmasse) === String("publier")) {
|
|
Publish_class(liste_formation);
|
|
GetAllClass_WOfilter();
|
|
}
|
|
|
|
else if (String(actionenmasse) === String("supprimer")) {
|
|
Disable_class(liste_formation_ids_values);
|
|
GetAllClass_WOfilter();
|
|
}
|
|
|
|
else if (String(actionenmasse) === String("dupliquer")) {
|
|
Duplicate_class(liste_formation_ids_values);
|
|
GetAllClass_WOfilter();
|
|
}
|
|
|
|
else if (String(actionenmasse) === String("exporter")) {
|
|
Export_class(liste_formation_ids_values);
|
|
GetAllClass_WOfilter();
|
|
}
|
|
|
|
}
|
|
|
|
const [rows_champs_specifics, setrows_champs_specifics] = useState([]);
|
|
|
|
const [Get_Partner_Object_Specific_Fields_api, setGet_Partner_Object_Specific_Fields_api] = useState();
|
|
const [Get_Partner_Object_Specific_Fields_message, setGet_Partner_Object_Specific_Fields_message] = useState();
|
|
const [Get_Partner_Object_Specific_Fields_result, setGet_Partner_Object_Specific_Fields_result] = useState();
|
|
function Get_Partner_Object_Specific_Fields(local_collection_obj_metier) {
|
|
|
|
var form = new FormData();
|
|
const stored_cookie = getCookie('tokenmysypart');
|
|
form.append("token", stored_cookie);
|
|
form.append("object_name", local_collection_obj_metier);
|
|
|
|
var myurl = process.env.REACT_APP_API_URL + "myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/";
|
|
|
|
axios.post(myurl, form).then(res => {
|
|
|
|
if (String(res.data.status) === String("true")) {
|
|
//console.log(" In Get_Partner_Object_Specific_Fields res.data.status = " + res.data.status);
|
|
//console.log(" In Get_Partner_Object_Specific_Fields res.data.message r_class = " + res.data.message);
|
|
|
|
setGet_Partner_Object_Specific_Fields_api("true");
|
|
setGet_Partner_Object_Specific_Fields_result(res.data.message);
|
|
|
|
|
|
setrows_champs_specifics(res.data.message);
|
|
|
|
|
|
}
|
|
else {
|
|
setGet_Partner_Object_Specific_Fields_api("false");
|
|
setGet_Partner_Object_Specific_Fields_message(res.data.message);
|
|
// alert(res.data.message);
|
|
setdisplay_alert_mysy("1");
|
|
setalert_message(res.data.message);
|
|
setalert_type("error");
|
|
}
|
|
|
|
}).catch((error) => {
|
|
console.warn('Not good man :( Get_Partner_Object_Specific_Fields = ', error);
|
|
setGet_Partner_Object_Specific_Fields_api("false");
|
|
|
|
// alert(res.data.message);
|
|
setdisplay_alert_mysy("1");
|
|
setalert_message("Impossible de recuperer la liste des collection et champs personnalisables");
|
|
setalert_type("error");
|
|
|
|
// alert(" Impossible de recuperer la liste des collection et champs personnalisables");
|
|
//setmyApimyApiMessage("")
|
|
})
|
|
}
|
|
|
|
|
|
const [New_Get_List_Domaines_result, setNew_Get_List_Domaines_result] = useState([]);
|
|
|
|
const [Get_List_Domaines_api, setGet_List_Domaines_api] = useState();
|
|
const [Get_List_Domaines_message, setGet_List_Domaines_message] = useState();
|
|
const [Get_List_Domaines_result, setGet_List_Domaines_result] = useState();
|
|
function Get_List_Domaines() {
|
|
var form = new FormData();
|
|
|
|
const stored_cookie = getCookie('tokenmysypart');
|
|
form.append("token", stored_cookie);
|
|
|
|
var myurl = process.env.REACT_APP_API_URL + "myclass/api/Get_List_Class_domaine/";
|
|
|
|
fetch(myurl,
|
|
{
|
|
method: 'POST',
|
|
body: form,
|
|
})
|
|
.then((data) => data.json())
|
|
.then((data) => {
|
|
//console.log(' IN Get_List_Domaines Success:', data['message'], "data['status'] = ", data['status']);
|
|
|
|
if (String(data['status']) === String("true")) {
|
|
setGet_List_Domaines_api("true");
|
|
setGet_List_Domaines_result(data['message']);
|
|
|
|
var new_data2 = [];
|
|
const new_data = data['message'].map((x) => {
|
|
|
|
//---
|
|
var localid = JSON.parse(x).id;
|
|
var local_id = JSON.parse(x)._id;
|
|
var local_code = JSON.parse(x).code;
|
|
var local_nom = JSON.parse(x).nom;
|
|
|
|
|
|
//---
|
|
var node = {
|
|
"id": localid,
|
|
"_id": local_id,
|
|
"nom": local_nom,
|
|
"code": local_code,
|
|
"label": local_nom,
|
|
|
|
|
|
};
|
|
new_data2.push(node);
|
|
});
|
|
|
|
var node = {
|
|
"id": "",
|
|
"_id": "",
|
|
"nom": "",
|
|
"code": "",
|
|
"label": "",
|
|
|
|
|
|
};
|
|
new_data2.push(node);
|
|
|
|
if (new_data2.length > 0) {
|
|
setNew_Get_List_Domaines_result(new_data2);
|
|
|
|
// console.log(" ## new_data2 = ", new_data2);
|
|
// console.log(" ## New_Get_List_Domaines_result = ", New_Get_List_Domaines_result);
|
|
} else {
|
|
setNew_Get_List_Domaines_result([])
|
|
}
|
|
}
|
|
else {
|
|
setGet_List_Domaines_api("false");
|
|
setGet_List_Domaines_message(data['message']);
|
|
}
|
|
|
|
}).catch((error) => {
|
|
console.error('Error Get_List_Domaines :', error);
|
|
setGet_List_Domaines_api("false");
|
|
});
|
|
}
|
|
|
|
const [New_Get_List_Metiers_result, setNew_Get_List_Metiers_result] = useState([]);
|
|
|
|
const [Get_List_Metiers_api, setGet_List_Metiers_api] = useState();
|
|
const [Get_List_Metiers_message, setGet_List_Metiers_message] = useState();
|
|
const [Get_List_Metiers_result, setGet_List_Metiers_result] = useState();
|
|
function Get_List_Metiers() {
|
|
var form = new FormData();
|
|
|
|
const stored_cookie = getCookie('tokenmysypart');
|
|
form.append("token", stored_cookie);
|
|
var myurl = process.env.REACT_APP_API_URL + "myclass/api/Get_List_class_metier/";
|
|
setLoading(true);
|
|
fetch(myurl,
|
|
{
|
|
method: 'POST',
|
|
body: form,
|
|
})
|
|
.then((data) => data.json())
|
|
.then((data) => {
|
|
setLoading(false);
|
|
// console.log(' IN Get_List_Metiers Success:', data['message'], "data['status'] = ", data['status']);
|
|
|
|
if (String(data['status']) === String("true")) {
|
|
setGet_List_Metiers_api("true");
|
|
setGet_List_Metiers_result(data['message']);
|
|
|
|
var new_data2 = [];
|
|
const new_data = data['message'].map((x) => {
|
|
|
|
|
|
//---
|
|
var localid = JSON.parse(x).id;
|
|
var local_id = JSON.parse(x)._id;
|
|
var local_nom = JSON.parse(x).nom;
|
|
var local_code = JSON.parse(x).code;
|
|
var local_class_domaine_id = JSON.parse(x).class_domaine_id;
|
|
var local_class_domaine_nom = JSON.parse(x).class_domaine_nom;
|
|
|
|
|
|
//---
|
|
var node = {
|
|
"id": localid,
|
|
"_id": local_id,
|
|
"label": local_nom,
|
|
"nom": local_nom,
|
|
"code": local_code,
|
|
"class_domaine_id": local_class_domaine_id,
|
|
"class_domaine_nom": local_class_domaine_nom,
|
|
|
|
};
|
|
new_data2.push(node);
|
|
});
|
|
|
|
//---
|
|
var node = {
|
|
"id": "",
|
|
"_id": "",
|
|
"label": "",
|
|
"nom": "",
|
|
"code": "",
|
|
"class_domaine_id": "",
|
|
"class_domaine_nom": "",
|
|
|
|
};
|
|
new_data2.push(node);
|
|
|
|
if (new_data2.length > 0) {
|
|
setNew_Get_List_Metiers_result(new_data2);
|
|
//console.log(" ### new_data2 ", new_data2);
|
|
//console.log(" ### setNew_Get_List_Metiers_result ", New_Get_List_Metiers_result);
|
|
} else {
|
|
setNew_Get_List_Metiers_result([]);
|
|
}
|
|
|
|
|
|
}
|
|
else {
|
|
setGet_List_Metiers_api("false");
|
|
setGet_List_Metiers_message(data['message']);
|
|
}
|
|
|
|
}).catch((error) => {
|
|
setLoading(false);
|
|
console.error('Error Get_List_Metiers :', error);
|
|
setGet_List_Metiers_api("false");
|
|
});
|
|
|
|
}
|
|
|
|
const [New_Get_List_Categorie_result, setNew_Get_List_Categorie_result] = useState([]);
|
|
|
|
const [Get_List_Categorie_api, setGet_List_Categorie_api] = useState();
|
|
const [Get_List_Categorie_message, setGet_List_Categorie_message] = useState();
|
|
const [Get_List_Categorie_result, setGet_List_Categorie_result] = useState();
|
|
function Get_List_Categorie() {
|
|
var form = new FormData();
|
|
|
|
const stored_cookie = getCookie('tokenmysypart');
|
|
form.append("token", stored_cookie);
|
|
var myurl = process.env.REACT_APP_API_URL + "myclass/api/Get_List_Class_Categorie/";
|
|
setLoading(true);
|
|
fetch(myurl,
|
|
{
|
|
method: 'POST',
|
|
body: form,
|
|
})
|
|
.then((data) => data.json())
|
|
.then((data) => {
|
|
setLoading(false);
|
|
// console.log(' IN Get_List_Categorie Success:', data['message'], "data['status'] = ", data['status']);
|
|
|
|
if (String(data['status']) === String("true")) {
|
|
setGet_List_Categorie_api("true");
|
|
setGet_List_Categorie_result(data['message']);
|
|
|
|
var new_data2 = [];
|
|
const new_data = data['message'].map((x) => {
|
|
|
|
|
|
//---
|
|
var localid = JSON.parse(x).id;
|
|
var local_id = JSON.parse(x)._id;
|
|
var local_nom = JSON.parse(x).nom;
|
|
var local_code = JSON.parse(x).code;
|
|
var local_class_domaine_id = JSON.parse(x).class_domaine_id;
|
|
var local_class_domaine_nom = JSON.parse(x).class_domaine_nom;
|
|
|
|
|
|
//---
|
|
var node = {
|
|
"id": localid,
|
|
"_id": local_id,
|
|
"label": local_nom,
|
|
"nom": local_nom,
|
|
"code": local_code,
|
|
"class_domaine_id": local_class_domaine_id,
|
|
"class_domaine_nom": local_class_domaine_nom,
|
|
|
|
};
|
|
new_data2.push(node);
|
|
});
|
|
|
|
//---
|
|
var node = {
|
|
"id": "",
|
|
"_id": "",
|
|
"label": "",
|
|
"nom": "",
|
|
"code": "",
|
|
"class_domaine_id": "",
|
|
"class_domaine_nom": "",
|
|
|
|
};
|
|
new_data2.push(node);
|
|
|
|
if (new_data2.length > 0) {
|
|
setNew_Get_List_Categorie_result(new_data2);
|
|
//console.log(" ### new_data2 ", new_data2);
|
|
//console.log(" ### setNew_Get_List_Categorie_result ", New_Get_List_Categorie_result);
|
|
} else {
|
|
setNew_Get_List_Categorie_result([]);
|
|
}
|
|
|
|
|
|
}
|
|
else {
|
|
setGet_List_Categorie_api("false");
|
|
setGet_List_Categorie_message(data['message']);
|
|
}
|
|
|
|
}).catch((error) => {
|
|
setLoading(false);
|
|
console.error('Error Get_List_Categorie :', error);
|
|
setGet_List_Categorie_api("false");
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
const [ismobilephone, setismobilephone] = useState();
|
|
useEffect(() => {
|
|
|
|
Get_List_Domaines();
|
|
Get_List_Metiers();
|
|
Get_List_Categorie();
|
|
Getall_Parter_referentiel_padagogique();
|
|
|
|
Get_Partner_Object_Specific_Fields("myclass");
|
|
|
|
//GetAllClass();
|
|
GetAllClass_new();
|
|
|
|
|
|
if (props.class_internal_url && props.class_external_code &&
|
|
String(props.class_internal_url).length > 3 && String(props.class_external_code).length > 3) {
|
|
|
|
|
|
//console.log(" ## props.class_internal_url = ", props.class_internal_url);
|
|
//console.log(" ## props.class_external_code = ", props.class_external_code);
|
|
setLoading(true);
|
|
setreftrainingtoupdate(props.class_internal_url);
|
|
setexternalcodetraining_toupdate(props.class_external_code);
|
|
setupdatetraining(true);
|
|
|
|
setLoading(false);
|
|
} else {
|
|
|
|
window.scrollTo({
|
|
top: 0,
|
|
behavior: "smooth",
|
|
});
|
|
|
|
let windowWidth = window.innerWidth;
|
|
if (windowWidth < 1001) {
|
|
setismobilephone_columns_hide(true);
|
|
setdatagrid_columns_size_model2(10);
|
|
}
|
|
}
|
|
|
|
// Recuperation de mode de regroupement des données de session
|
|
if (stored_cookie_catalog_data_row_grouped_by) {
|
|
setdata_row_grouped_by(stored_cookie_catalog_data_row_grouped_by);
|
|
setdata_row_grouped_field(stored_cookie_catalog_data_row_grouped_by);
|
|
datagrid_grouped_by(stored_cookie_catalog_data_row_grouped_by);
|
|
}
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
const [New_Getall_Parter_referentiel_padagogique_result, setNew_Getall_Parter_referentiel_padagogique_result] = useState([]);
|
|
|
|
const [Getall_Parter_referentiel_padagogique_api, setGetall_Parter_referentiel_padagogique_api] = useState();
|
|
const [Getall_Parter_referentiel_padagogique_message, setGetall_Parter_referentiel_padagogique_message] = useState();
|
|
const [Getall_Parter_referentiel_padagogique_result, setGetall_Parter_referentiel_padagogique_result] = useState([]);
|
|
function Getall_Parter_referentiel_padagogique(event) {
|
|
|
|
var form = new FormData();
|
|
|
|
|
|
const stored_cookie = getCookie('tokenmysypart');
|
|
form.append("token", stored_cookie);
|
|
|
|
var myurl = process.env.REACT_APP_API_URL + "myclass/api/Get_Ref_Pedagogique_no_filter/";
|
|
|
|
setLoading(true);
|
|
axios.post(myurl, form).then(res => {
|
|
setLoading(false);
|
|
|
|
if (String(res.data.status) === String("true")) {
|
|
//console.log(" In Getall_Parter_referentiel_padagogique res.data.status = " + res.data.status);
|
|
//console.log(" In Getall_Parter_referentiel_padagogique res.data.message r_class = " + res.data.message);
|
|
setGetall_Parter_referentiel_padagogique_api("true");
|
|
setGetall_Parter_referentiel_padagogique_result(res.data.message);
|
|
//setRows(res.data.message);
|
|
|
|
var new_data2 = [];
|
|
const new_data = res.data.message.map((x) => {
|
|
|
|
//---
|
|
var localid = JSON.parse(x).id;
|
|
var local_id = JSON.parse(x)._id;
|
|
var local_commentaire = JSON.parse(x).commentaire;
|
|
var local_code = JSON.parse(x).code;
|
|
var local_description = JSON.parse(x).description;
|
|
|
|
|
|
//---
|
|
var node = {
|
|
"_id": local_id,
|
|
"id": localid,
|
|
"label": local_code,
|
|
"commentaire": local_commentaire,
|
|
"code": local_code,
|
|
"description": local_description,
|
|
|
|
};
|
|
new_data2.push(node);
|
|
});
|
|
|
|
//---
|
|
var node = {
|
|
"_id": "",
|
|
"id": "",
|
|
"label": "",
|
|
"commentaire": "",
|
|
"code": "",
|
|
"description": "",
|
|
|
|
};
|
|
new_data2.push(node);
|
|
|
|
if (new_data2.length > 0)
|
|
setNew_Getall_Parter_referentiel_padagogique_result(new_data2);
|
|
|
|
}
|
|
else {
|
|
setGetall_Parter_referentiel_padagogique_api("false");
|
|
setGetall_Parter_referentiel_padagogique_message(res.data.message);
|
|
// alert(res.data.message)
|
|
setdisplay_alert_mysy("1");
|
|
setalert_message(res.data.message);
|
|
setalert_type("error");
|
|
}
|
|
|
|
}).catch((error) => {
|
|
setLoading(false);
|
|
console.warn('Not good man :( Getall_Parter_referentiel_padagogique = ', error);
|
|
setGetall_Parter_referentiel_padagogique_api("false");
|
|
alert(" Impossible de recuperer la liste des référentiels pédagogiques");
|
|
//setmyApimyApiMessage("")
|
|
})
|
|
}
|
|
|
|
|
|
function Clearselectedfilt1() {
|
|
setselectedfilt1("");
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function handleClick_delete(event, cellValues) {
|
|
var local_class_id = cellValues.row._id;
|
|
Delete_Class(local_class_id);
|
|
}
|
|
|
|
|
|
const [Delete_Class_api, setDelete_Class_api] = useState();
|
|
const [Delete_Class_message, setDelete_Class_message] = useState();
|
|
const [Delete_Class_result, setDelete_Class_result] = useState();
|
|
function Delete_Class(local_class_id) {
|
|
|
|
var form = new FormData();
|
|
|
|
const stored_cookie = getCookie('tokenmysypart');
|
|
form.append("token", stored_cookie);
|
|
form.append("class_id", local_class_id);
|
|
|
|
|
|
|
|
|
|
var myurl = process.env.REACT_APP_API_URL + "myclass/api/delete_Class/";
|
|
|
|
axios.post(myurl, form).then(res => {
|
|
//console.log(" In Delete_Class res.data.status = " + res.data.status);
|
|
//console.log(" In Delete_Class res.data.message r_class = " + res.data.message);
|
|
|
|
if (String(res.data.status) === String("true")) {
|
|
setDelete_Class_api("true");
|
|
setDelete_Class_result(res.data.message);
|
|
|
|
GetAllClass_new();
|
|
// alert(res.data.message)
|
|
setdisplay_alert_mysy("1");
|
|
setalert_message(res.data.message);
|
|
setalert_type("success");
|
|
}
|
|
else {
|
|
setDelete_Class_api("false");
|
|
setDelete_Class_message(res.data.message);
|
|
// alert(res.data.message);
|
|
setdisplay_alert_mysy("1");
|
|
setalert_message(res.data.message);
|
|
setalert_type("error");
|
|
|
|
}
|
|
|
|
}).catch((error) => {
|
|
|
|
console.log('Delete_Class : Not good man :( Delete_Class = ' + error);
|
|
setDelete_Class_api("false");
|
|
|
|
// alert(res.data.message);
|
|
setdisplay_alert_mysy("1");
|
|
setalert_message("Impossible de supprimer la formation");
|
|
setalert_type("error");
|
|
|
|
//alert(" Impossible de supprimer la formation");
|
|
})
|
|
}
|
|
|
|
|
|
|
|
const [isLoading, setLoading] = useState();
|
|
|
|
|
|
const [handlepush_to_lms_api, sethandlepush_to_lms_api] = useState("");
|
|
const [handlepush_to_lms_result, sethandlepush_to_lms_result] = useState("");
|
|
const [handlepush_to_lms_message, sethandlepush_to_lms_message] = useState("");
|
|
|
|
function handlepush_to_lms(event, cellValues) {
|
|
|
|
if (cellValues.row.lms_class_code && String(cellValues.row.lms_class_code).length > 2) {
|
|
// alert(" Cette formation est déjà publiée sur la plateforme de E-Learning");
|
|
|
|
setdisplay_alert_mysy("1");
|
|
setalert_message(" Cette formation est déjà publiée sur la plateforme de E-Learning");
|
|
setalert_type("error");
|
|
|
|
return;
|
|
}
|
|
|
|
setLoading(true);
|
|
|
|
//console.log(" ### event.target.value = ", event.target.value);
|
|
const formData = new FormData();
|
|
const url = process.env.REACT_APP_API_URL + "myclass/api/Push_Class_To_MySy_LMS/";
|
|
|
|
const stored_cookie = getCookie('tokenmysypart');
|
|
formData.append("token", stored_cookie);
|
|
formData.append('class_internal_url', cellValues.row.internal_url);
|
|
|
|
axios.post(url, formData).then(res => {
|
|
//console.log(" In getCurrentUserData res.data.status = " + res.data.status);
|
|
//console.log(" In getCurrentUserData res.data.message = " + res.data.message);
|
|
if (String(res.data.status) === "true") {
|
|
|
|
sethandlepush_to_lms_api("true");
|
|
sethandlepush_to_lms_result(res.data.message);
|
|
|
|
setLoading(false);
|
|
GetAllClass_new();
|
|
// alert(res.data.message)
|
|
setdisplay_alert_mysy("1");
|
|
setalert_message(res.data.message);
|
|
setalert_type("success");
|
|
|
|
|
|
}
|
|
else if (String(res.data.status) === String("Err_Connexion")) {
|
|
alert('Erreur: ' + res.data.message);
|
|
history.push("/Connexion");
|
|
return;
|
|
}
|
|
else {
|
|
|
|
sethandlepush_to_lms_api("false");
|
|
sethandlepush_to_lms_message(res.data.message);
|
|
setLoading(false);
|
|
|
|
// alert(res.data.message);
|
|
setdisplay_alert_mysy("1");
|
|
setalert_message(res.data.message);
|
|
setalert_type("error");
|
|
|
|
//alert("Erreur : " + res.data.message);
|
|
}
|
|
|
|
}).catch((error) => {
|
|
console.warn('Erro handlepush_to_lms = ', error);
|
|
sethandlepush_to_lms_api("false");
|
|
setLoading(false);
|
|
})
|
|
}
|
|
|
|
const [p_filtre1, setp_filtre1] = useState("");
|
|
const [p_filtre1_value, setp_filtre1_value] = useState("");
|
|
|
|
const [p_filtre2, setp_filtre2] = useState("");
|
|
const [p_filtre2_value, setp_filtre2_value] = useState("");
|
|
|
|
const [p_filtre3, setp_filtre3] = useState("");
|
|
const [p_filtre3_value, setp_filtre3_value] = useState("");
|
|
|
|
function clean_all_filters() {
|
|
setp_filtre1("");
|
|
setp_filtre1_value("");
|
|
setp_filtre2("");
|
|
setp_filtre2_value("");
|
|
|
|
setp_filtre3("");
|
|
setp_filtre3_value("");
|
|
GetAllClass_new_no_filter();
|
|
}
|
|
|
|
|
|
|
|
const datagridSx = {
|
|
borderRadius: 2,
|
|
marginRight: 1,
|
|
marginLeft: 1,
|
|
border: 0,
|
|
overflowX: 'scroll',
|
|
"& .MuiDataGrid-main": { borderRadius: 0 },
|
|
/*'& div[data-rowIndex][role="row"]:nth-of-type(5n-4)': {
|
|
color: "blue",
|
|
fontSize: 18,
|
|
//risky
|
|
minHeight: "60px !important",
|
|
height: 60,
|
|
"& div": {
|
|
minHeight: "60px !important",
|
|
height: 60,
|
|
lineHeight: "59px !important"
|
|
}
|
|
},*/
|
|
"& .MuiDataGrid-virtualScrollerRenderZone": {
|
|
"& .MuiDataGrid-row": {
|
|
"&:nth-child(2n)": { backgroundColor: "rgba(235, 235, 235, .7)" }
|
|
}
|
|
},
|
|
"& .MuiDataGrid-columnHeaders": {
|
|
backgroundColor: "#c8cfd5",
|
|
color: "black",
|
|
fontSize: 16
|
|
},
|
|
|
|
[`& .${gridClasses.cell}`]: {
|
|
py: 1,
|
|
},
|
|
|
|
};
|
|
|
|
|
|
const [actionmass_ftion_val, setactionmass_ftion_val] = useState();
|
|
const actionmass_ftion = (event) => {
|
|
const value = event.target.value;
|
|
|
|
|
|
if (String(value) === "publier" || String(value) === "depublier" ||
|
|
String(value) === "desactiver" || String(value) === "supprimer"
|
|
|| String(value) === "dupliquer" || String(value) === "exporter") {
|
|
setactionmass_ftion_val(value);
|
|
}
|
|
else {
|
|
setactionmass_ftion_val();
|
|
}
|
|
}
|
|
|
|
|
|
function GetSelectedRows_ftion_Ids() {
|
|
|
|
|
|
var tab_tmp = []
|
|
for (var i = 0; i < selectionModel.length; i++) {
|
|
//console.log(" ### selectionModel_insc[i] = ", selectionModel_insc[i]);
|
|
var myid = parseInt(String(selectionModel[i]));
|
|
//var line = JSON.parse(rowss[myid]);
|
|
tab_tmp.push(myid);
|
|
}
|
|
return tab_tmp;
|
|
|
|
}
|
|
|
|
async function actionmass_ftion_Traitemet() {
|
|
|
|
|
|
var liste_formation = GetSelectedRowsTraining();
|
|
var liste_formation_ids_values = GetSelectedRowsTraining_id_values();
|
|
|
|
//console.log(" liste_formation_ids_values = ", liste_formation_ids_values);
|
|
//console.log(" actionmass_ftion_val = ", actionmass_ftion_val);
|
|
|
|
if (String(actionmass_ftion_val) === String("depublier")) {
|
|
|
|
Unpublish_class(liste_formation);
|
|
GetAllClass_WOfilter();
|
|
window.location.reload();
|
|
}
|
|
|
|
else if (String(actionmass_ftion_val) === String("publier")) {
|
|
Publish_class(liste_formation);
|
|
GetAllClass_WOfilter();
|
|
window.location.reload();
|
|
}
|
|
|
|
else if (String(actionmass_ftion_val) === String("desactiver")) {
|
|
Disable_class(liste_formation);
|
|
GetAllClass_WOfilter();
|
|
window.location.reload();
|
|
}
|
|
|
|
else if (String(actionmass_ftion_val) === String("dupliquer")) {
|
|
Duplicate_class(liste_formation);
|
|
GetAllClass_WOfilter();
|
|
window.location.reload();
|
|
}
|
|
|
|
else if (String(actionmass_ftion_val) === String("supprimer")) {
|
|
Delete_LIST_Formations(liste_formation_ids_values);
|
|
GetAllClass_WOfilter();
|
|
//window.location.reload();
|
|
}
|
|
|
|
|
|
else if (String(actionmass_ftion_val) === String("exporter")) {
|
|
Export_class(liste_formation_ids_values);
|
|
}
|
|
|
|
}
|
|
|
|
const sleep = (milliseconds) => {
|
|
return new Promise(resolve => setTimeout(resolve, milliseconds))
|
|
}
|
|
|
|
|
|
const [Delete_LIST_Formations_api, setDelete_LIST_Formations_api] = useState();
|
|
const [Delete_LIST_Formations_message, setDelete_LIST_Formations_message] = useState();
|
|
const [Delete_LIST_Formations_result, setDelete_LIST_Formations_result] = useState();
|
|
function Delete_LIST_Formations(local_liste_class) {
|
|
|
|
|
|
var form = new FormData();
|
|
//form.append("token","K3cw63eKokKSbV4spjQ48SUNnfy80yrXfA");
|
|
|
|
// console.log(" #### local_liste_class = ", local_liste_class)
|
|
|
|
const stored_cookie = getCookie('tokenmysypart');
|
|
form.append("token", stored_cookie);
|
|
form.append("list_class_id", local_liste_class);
|
|
|
|
|
|
|
|
var myurl = process.env.REACT_APP_API_URL + "myclass/api/delete_list_Class/";
|
|
|
|
axios.post(myurl, form).then(res => {
|
|
//console.log(" In Delete_LIST_Formations res.data.status = " + res.data.status);
|
|
//console.log(" In Delete_LIST_Formations res.data.message r_class = " + res.data.message);
|
|
|
|
if (String(res.data.status) === String("true")) {
|
|
setDelete_LIST_Formations_api("true");
|
|
setDelete_LIST_Formations_result(res.data.message);
|
|
setSelectionModel([]);
|
|
GetAllClass_new();
|
|
|
|
// alert(res.data.message)
|
|
setdisplay_alert_mysy("1");
|
|
setalert_message(res.data.message);
|
|
setalert_type("success");
|
|
}
|
|
else {
|
|
setDelete_LIST_Formations_api("false");
|
|
setDelete_LIST_Formations_message(res.data.message);
|
|
// alert(res.data.message);
|
|
setdisplay_alert_mysy("1");
|
|
setalert_message(res.data.message);
|
|
setalert_type("error");
|
|
|
|
}
|
|
|
|
}).catch((error) => {
|
|
|
|
console.warn('Delete_LIST_Formations : Not good man :( mysearchtext = ' + error);
|
|
setDelete_LIST_Formations_api("false");
|
|
// alert(res.data.message);
|
|
setdisplay_alert_mysy("1");
|
|
setalert_message("Impossible de supprimer la liste des sessions de formation");
|
|
setalert_type("error");
|
|
|
|
//alert(" Impossible de supprimer la liste des sessions de formation");
|
|
})
|
|
}
|
|
|
|
|
|
const [Dialog_formation_message, setDialog_formation_message] = React.useState(false);
|
|
const [Dialog_formation_open, setDialog_formation_open] = React.useState(false);
|
|
function Dialog_formation_handle_change_participant_session(message) {
|
|
setDialog_formation_message(message);
|
|
setDialog_formation_open(true);
|
|
}
|
|
|
|
const Dialog_formation_handleClose = () => {
|
|
|
|
};
|
|
|
|
const Dialog_formation_handleClose_buton = () => {
|
|
setDialog_formation_open(false);
|
|
};
|
|
|
|
|
|
const [gridline_id, setgridline_id] = useState("");
|
|
|
|
function Show_Detailled_formation_Data() {
|
|
setupdatetraining(true);
|
|
Dialog_formation_handleClose_buton();
|
|
}
|
|
|
|
|
|
const [selected_row_data_json, setselected_row_data_json] = useState([]);
|
|
|
|
|
|
const New_Option = [
|
|
{ "id": "0", "label": "Publier", "value": "publier" },
|
|
{ "id": "1", "label": "Depublier", "value": "depublier" },
|
|
{ "id": "2", "label": "Dupliquer", "value": "dupliquer" },
|
|
{ "id": "3", "label": "Exporter", "value": "exporter" },
|
|
{ "id": "4", "label": "Supprimer", "value": "supprimer" },
|
|
]
|
|
|
|
const New_Option_Filter = [
|
|
{ "id": "external_code", "label": "Code externe formation", "value": "external_code" },
|
|
{ "id": "title", "label": "Titre Formation ", "value": "title" },
|
|
{ "id": "certif", "label": "Certifiante", "value": "certif" },
|
|
{ "id": "archive", "label": "Archive", "value": "archive" },
|
|
{ "id": "", "label": "", "value": "" },
|
|
{ "id": "1", "label": "", "value": "1" }, // Cette ligne pour couvrir l'ajout d'une ligne de filter. C'est fait expres.
|
|
]
|
|
|
|
|
|
// DEBUT EXPORT EXCEL DATAGRID
|
|
|
|
function CustomToolbar(props) {
|
|
|
|
|
|
|
|
return (
|
|
<GridToolbarContainer {...props}>
|
|
|
|
<GridToolbarColumnsButton />
|
|
<GridToolbarFilterButton />
|
|
<GridToolbarDensitySelector
|
|
slotProps={{ tooltip: { title: 'Change density' } }}
|
|
/>
|
|
<Box sx={{ flexGrow: 1 }} />
|
|
<ExportButton data_colums={props.data_colums} />
|
|
|
|
|
|
</GridToolbarContainer>
|
|
);
|
|
}
|
|
|
|
function getExcelData(apiRef) {
|
|
// Select rows and columns
|
|
const filteredSortedRowIds = gridFilteredSortedRowIdsSelector(apiRef);
|
|
const visibleColumnsField = gridVisibleColumnFieldsSelector(apiRef);
|
|
|
|
// Format the data. Here we only keep the value
|
|
const data = filteredSortedRowIds.map((id) => {
|
|
const row = {};
|
|
visibleColumnsField.forEach((field) => {
|
|
row[field] = apiRef.current.getCellParams(id, field).value;
|
|
});
|
|
return row;
|
|
});
|
|
|
|
return data;
|
|
}
|
|
|
|
|
|
function ExportButton(props) {
|
|
return (
|
|
<GridToolbarExportContainer {...props}>
|
|
<ExportMenuItem data_colums={props.data_colums} />
|
|
</GridToolbarExportContainer>
|
|
);
|
|
}
|
|
|
|
function handleExport(apiRef, data_colums) {
|
|
const data = getExcelData(apiRef);
|
|
const visibleColumnsField = gridVisibleColumnFieldsSelector(apiRef);
|
|
|
|
|
|
const local_config = {
|
|
keys: visibleColumnsField,
|
|
|
|
columnNames: data_colums.filter((mydata) => (mydata).disableExport !== true).map(function (mydata) {
|
|
if (mydata.headerName && visibleColumnsField.includes(mydata.field)) {
|
|
if (mydata.headerName) {
|
|
return mydata.headerName;
|
|
}
|
|
}
|
|
|
|
}),
|
|
|
|
fileName: 'data_' + String(new Date().toJSON().slice(0, 10)).replaceAll("-", "_") + '.xlsx',
|
|
sheetName: 'Export_' + String(new Date().toJSON().slice(0, 10)).replaceAll("-", "_"),
|
|
};
|
|
|
|
local_config.columnNames = local_config.columnNames.filter(function (element) {
|
|
return element !== undefined;
|
|
});
|
|
|
|
|
|
const rows = data.map((row) => {
|
|
const mRow = {};
|
|
for (const key of local_config.keys) {
|
|
mRow[key] = row[key];
|
|
}
|
|
return mRow;
|
|
});
|
|
|
|
const worksheet = XLSX.utils.json_to_sheet(rows);
|
|
XLSX.utils.sheet_add_aoa(worksheet, [[...local_config.columnNames]], {
|
|
origin: 'A1',
|
|
});
|
|
|
|
const workbook = XLSX.utils.book_new();
|
|
XLSX.utils.book_append_sheet(workbook, worksheet, local_config.sheetName);
|
|
XLSX.writeFile(workbook, local_config.fileName, { compression: true });
|
|
}
|
|
|
|
function ExportMenuItem(props) {
|
|
const apiRef = useGridApiContext();
|
|
const { hideMenu } = props;
|
|
|
|
return (
|
|
<MenuItem
|
|
onClick={() => {
|
|
handleExport(apiRef, props.data_colums);
|
|
// Hide the export menu after the export
|
|
hideMenu?.();
|
|
}}
|
|
>
|
|
Export Excel
|
|
</MenuItem>
|
|
);
|
|
}
|
|
|
|
// FIN EXPORT EXCEL DATAGRID
|
|
const classes = useStyles();
|
|
|
|
// const [getTreeDataPath, setgetTreeDataPath] = useState("");
|
|
|
|
|
|
|
|
const [data_row_grouped_by, setdata_row_grouped_by] = useState("");
|
|
|
|
const [data_row_grouped_field, setdata_row_grouped_field] = useState("");
|
|
|
|
function getTreeDataPath(param) {
|
|
|
|
var local_tmp = data_row_grouped_field;
|
|
var local_tab_array = [];
|
|
|
|
|
|
if (param[local_tmp]) {
|
|
local_tab_array.push(String(param[local_tmp]));
|
|
} else {
|
|
local_tab_array.push("");
|
|
}
|
|
|
|
local_tab_array.push(String(param["external_code"]));
|
|
|
|
return local_tab_array;
|
|
}
|
|
|
|
|
|
function datagrid_grouped_by(champ_filtre) {
|
|
setdata_row_grouped_field(champ_filtre);
|
|
|
|
getTreeDataPath(rowss)
|
|
}
|
|
|
|
const New_option_group_by = [
|
|
{ "id": "", "label": "Aucun", "value": "" },
|
|
{ "id": "domain", "label": "Domaine", "value": "domain" },
|
|
{ "id": "metier", "label": "Métier ", "value": "metier" },
|
|
{ "id": "categorie", "label": "Gatégorie ", "value": "categorie" },
|
|
]
|
|
|
|
const [cookie_catalog_display_view, setcookie_catalog_display_view, removecookie_catalog_display_view] = useCookies(['mysy_catalog_data_row_grouped_by,']);
|
|
|
|
function func_catalog_data_grouped_by(grouped_by) {
|
|
setdata_row_grouped_by(grouped_by);
|
|
setdata_row_grouped_field(grouped_by);
|
|
datagrid_grouped_by(grouped_by);
|
|
setcookie_catalog_display_view("mysy_catalog_data_row_grouped_by", String(grouped_by), { path: '/' });
|
|
}
|
|
|
|
|
|
const [display_alert_mysy, setdisplay_alert_mysy] = useState("");
|
|
const [alert_message, setalert_message] = useState("");
|
|
const [alert_type, setalert_type] = useState("");
|
|
|
|
function clear_alert_message() {
|
|
setalert_message("");
|
|
}
|
|
function clear_alert_type() {
|
|
setalert_type("");
|
|
}
|
|
|
|
function clear_display_alert_mysy() {
|
|
setdisplay_alert_mysy("");
|
|
}
|
|
|
|
const New_Option_Is_archive = [
|
|
{ "id": "1", "label": "Oui", "value": "1" },
|
|
{ "id": "0", "label": "Non", "value": "0" },
|
|
{ "id": "2", "label": "Tout", "value": "2" },
|
|
{ "id": "", "label": "", "value": "" },
|
|
]
|
|
|
|
|
|
return (
|
|
|
|
<div className='displaypartnertrainingpagination'>
|
|
{isLoading && <div className="loader-container">
|
|
<div className="mysy_spinner"> <img src={img_loading_spin} /> </div>
|
|
</div>}
|
|
|
|
{/*** Affichage des messages d'alerte*/}
|
|
{display_alert_mysy && String(display_alert_mysy) === "1" &&
|
|
<Module_Alert_Confirmation alert_message={alert_message}
|
|
alert_type={alert_type}
|
|
clear_alert_message={clear_alert_message}
|
|
clear_alert_type={clear_alert_type}
|
|
clear_display_alert_mysy={clear_display_alert_mysy}
|
|
/>
|
|
}
|
|
{/*** FIN Affichage des messages d'alerte*/}
|
|
|
|
<Dialog
|
|
open={Dialog_formation_open}
|
|
className="displaypartnersession"
|
|
static
|
|
onClose={() => null}
|
|
|
|
PaperProps={{
|
|
className: classes.paper, // Apply the paper style
|
|
style: {
|
|
overflowY: 'unset',
|
|
position: 'absolute',
|
|
top: '5rem',
|
|
margin: "2px",
|
|
},
|
|
}}
|
|
hideBackdrop={true}
|
|
disableScrollLock
|
|
classes={{
|
|
paper: classes.dialog
|
|
}}
|
|
|
|
PaperComponent={PaperComponent}
|
|
aria-labelledby="draggable-dialog-title"
|
|
>
|
|
|
|
<DialogTitle style={{ cursor: 'move', fontFamily: "DM Sans" }} id="draggable-dialog-title">Info Formation</DialogTitle>
|
|
<DialogContent className="DialogContent_width">
|
|
|
|
<div className="div_row_dialog">
|
|
<div className="div_row_gauche_dialog_session" style={{ "textAlign": 'left' }}>
|
|
Code
|
|
</div>
|
|
<div className="div_row_droite_dialog_session" style={{ "textAlign": 'right' }}>
|
|
{<nav> {selected_row_data_json.external_code} </nav>}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="div_row_dialog">
|
|
<div className="div_row_gauche_dialog_session" style={{ "textAlign": 'left' }}>
|
|
Titre
|
|
</div>
|
|
<div className="div_row_droite_dialog_session" style={{ "textAlign": 'right' }}>
|
|
{<nav> {selected_row_data_json.title} </nav>}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="div_row_dialog">
|
|
<div className="div_row_gauche_dialog_session" style={{ "textAlign": 'left' }}>
|
|
Domaine
|
|
</div>
|
|
<div className="div_row_droite_dialog_session" style={{ "textAlign": 'right' }}>
|
|
{selected_row_data_json.domaine && New_Get_List_Domaines_result && New_Get_List_Domaines_result.length > 0 && <nav> {New_Get_List_Domaines_result.filter((data) => (data)._id === String(selected_row_data_json.domaine))[0].label} </nav>}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="div_row_dialog">
|
|
<div className="div_row_gauche_dialog_session" style={{ "textAlign": 'left' }}>
|
|
Coût
|
|
</div>
|
|
<div className="div_row_droite_dialog_session" style={{ "textAlign": 'right' }}>
|
|
|
|
{<nav> {selected_row_data_json.price} {selected_row_data_json.currecny}</nav>}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="div_row_dialog">
|
|
<div className="div_row_gauche_dialog_session" style={{ "textAlign": 'left' }}>
|
|
Durée
|
|
</div>
|
|
<div className="div_row_droite_dialog_session" style={{ "textAlign": 'right' }}>
|
|
{selected_row_data_json.duration_in_hour && String(selected_row_data_json.duration_unit) === "jour" &&
|
|
<nav> {selected_row_data_json.duration} - {selected_row_data_json.duration_unit}(s) soit <b><i> {selected_row_data_json.duration_in_hour} heure(s)</i></b> </nav>}
|
|
|
|
{String(selected_row_data_json.duration_unit) !== "jour" &&
|
|
<nav> {selected_row_data_json.duration} - {selected_row_data_json.duration_unit}(s) </nav>}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="div_row_dialog">
|
|
<div className="div_row_gauche_dialog_session" style={{ "textAlign": 'left' }}>
|
|
Présentiel
|
|
</div>
|
|
<div className="div_row_droite_dialog_session" style={{ "textAlign": 'right' }}>
|
|
|
|
|
|
{selected_row_data_json.published && <nav style={{ "textAlign": 'right', }}>
|
|
<ToggleSwitch id="toggleSwitch" name="toggleSwitch" checked={parseInt(selected_row_data_json.presentiel.presentiel)} />
|
|
</nav>}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="div_row_dialog">
|
|
<div className="div_row_gauche_dialog_session" style={{ "textAlign": 'left' }}>
|
|
Distanciel
|
|
</div>
|
|
<div className="div_row_droite_dialog_session" style={{ "textAlign": 'right' }}>
|
|
|
|
|
|
{selected_row_data_json.published && <nav style={{ "textAlign": 'right', }}>
|
|
<ToggleSwitch id="toggleSwitch" name="toggleSwitch" checked={parseInt(selected_row_data_json.presentiel.distantiel)} />
|
|
</nav>}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div className="div_row_dialog">
|
|
<div className="div_row_gauche_dialog_session" style={{ "textAlign": 'left' }}>
|
|
Publié Web
|
|
</div>
|
|
<div className="div_row_droite_dialog_session" style={{ "textAlign": 'right' }}>
|
|
|
|
{selected_row_data_json.published && <nav style={{ "textAlign": 'right', }}>
|
|
<ToggleSwitch id="toggleSwitch" name="toggleSwitch" checked={parseInt(selected_row_data_json.published)} />
|
|
</nav>}
|
|
|
|
</div>
|
|
</div>
|
|
<div className="div_row_dialog">
|
|
<div className="div_row_gauche_dialog_session" style={{ "textAlign": 'left' }}>
|
|
Cible
|
|
</div>
|
|
<div className="div_row_droite_dialog_session" style={{ "textAlign": 'right' }}>
|
|
{<nav> {String(parse(String(selected_row_data_json.pourqui).replace(/(<([^>]+)>)/ig, ''))).substring(0, 100)} </nav>}
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div className="div_row" >
|
|
|
|
</div>
|
|
</DialogContent>
|
|
|
|
<DialogActions>
|
|
|
|
<IconButton
|
|
autoFocus
|
|
onClick={Dialog_formation_handleClose_buton}
|
|
color="primary"
|
|
className={classes.customizedButton}
|
|
>
|
|
<CancelPresentationIcon />
|
|
</IconButton>
|
|
|
|
<div className="div_row">
|
|
<div className="div_row_gauche">
|
|
<Button onClick={Show_Detailled_formation_Data} className="bton_enreg_dialog">Voir détail</Button>
|
|
</div>
|
|
<div className="div_row_droite" style={{ "textAlign": 'center' }}>
|
|
<Button onClick={Dialog_formation_handleClose_buton} className="bton_annule_dialog" >Fermer</Button>
|
|
</div>
|
|
</div>
|
|
|
|
</DialogActions>
|
|
|
|
|
|
</Dialog>
|
|
|
|
{updatetraining && <div>
|
|
|
|
<div className='detail_training'>
|
|
<TrainingForm mytrainingclass={{
|
|
'ref': reftrainingtoupdate, 'class_external_code': externalcodetraining_toupdate,
|
|
'class_id': classidtrainingtoupdate, 'class_internal_url': props.class_internal_url
|
|
|
|
}} ispending={props.ispending} currentpack={props.currentpack} closeTrainingForm={closeTrainingForm}
|
|
rows_champs_specifics={rows_champs_specifics}
|
|
formation_initiale={props.formation_initiale}
|
|
check_user_acces_right={props.check_user_acces_right}
|
|
|
|
/>
|
|
</div>
|
|
|
|
|
|
<hr />
|
|
<div onClick={closeTrainingForm} className="parter_div_filtrer_center">
|
|
<AiFillCloseCircle alt="Fermer detail formation" />FERMER
|
|
</div>
|
|
|
|
</div>
|
|
}
|
|
|
|
{createtraining && <div>
|
|
|
|
<div className="parter_div_droite_bas">
|
|
<div className="titre1_bis"> Création manuelle d'une formation </div>
|
|
<TrainingForm mytrainingclass={{ 'ref': '', 'dist': 'Oui', 'plus_produit': '0' }} ispending={props.ispending}
|
|
currentpack={String(props.currentpack).toUpperCase()} closeTrainingForm={Closecreatetraining}
|
|
rows_champs_specifics={rows_champs_specifics}
|
|
check_user_acces_right={props.check_user_acces_right} />
|
|
</div>
|
|
|
|
<hr />
|
|
|
|
<div onClick={Closecreatetraining} className="parter_div_filtrer_center">
|
|
<AiFillCloseCircle alt="Fermer detail formation" />FERMER
|
|
</div>
|
|
|
|
</div>
|
|
}
|
|
|
|
<h3 style={{ fontFamily: 'DM Sans' }}> Mes formations </h3>
|
|
<div className="titre1"> Utilisez les filtres !</div>
|
|
<div className="div_row" style={{ "marginBottom": "5px" }}>
|
|
<div className="div_row_gauche texte_area_filter" >
|
|
{New_Option_Filter && New_Option_Filter.length > 0 && <Autocomplete
|
|
disablePortal
|
|
name="filtre1"
|
|
id="filtre1"
|
|
className="disabled_style"
|
|
value={New_Option_Filter.filter((data) => (data).value === String(p_filtre1))[0].label}
|
|
options={New_Option_Filter}
|
|
onChange={(event, value) => {
|
|
if (value && value.value) {
|
|
setp_filtre1(value.value);
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
renderInput={(params) => <TextField {...params} label="" placeholder="Choisir une option"
|
|
inputProps={{ ...params.inputProps, style: { fontSize: 12, height: "1.4rem" } }}
|
|
|
|
/>
|
|
}
|
|
/>}
|
|
|
|
</div>
|
|
{String(p_filtre1) !== "archive" && <div className="div_row_droite texte_area_filter_value" >
|
|
{p_filtre1 &&
|
|
<TextField
|
|
sx={{ '& legend': { display: 'none' }, '& fieldset': { top: 0 }, }}
|
|
required
|
|
name="filtre1_value"
|
|
id="filtre1_value"
|
|
|
|
InputLabelProps={{
|
|
shrink: true,
|
|
}}
|
|
disabled={false}
|
|
className="disabled_style"
|
|
value={p_filtre1_value}
|
|
onChange={(e) => { setp_filtre1_value(e.target.value); }}
|
|
InputProps={{
|
|
endAdornment: (
|
|
<InputAdornment position="end">
|
|
<AiFillCloseCircle
|
|
style={{ 'cursor': "pointer", "color": "orangered" }}
|
|
onClick={(e) => {
|
|
setp_filtre1_value("");
|
|
}} />
|
|
</InputAdornment>
|
|
),
|
|
}}
|
|
|
|
/>
|
|
}
|
|
|
|
</div>}
|
|
|
|
{String(p_filtre1) === "archive" && <div className="div_row_droite texte_area_filter_value" >
|
|
{p_filtre1 &&
|
|
<Autocomplete
|
|
disablePortal
|
|
name="filtre1_value"
|
|
id="filtre1_value"
|
|
value={New_Option_Is_archive.filter((data) => (data).id === String(p_filtre1_value))[0].label}
|
|
|
|
className="disabled_style"
|
|
|
|
options={New_Option_Is_archive}
|
|
onChange={(event, value) => {
|
|
if (value && value.value) {
|
|
setp_filtre1_value(value.value);
|
|
} else {
|
|
setp_filtre1_value("");
|
|
}
|
|
}}
|
|
renderInput={(params) => <TextField {...params} label="" placeholder="Choisir une option"
|
|
inputProps={{ ...params.inputProps, style: { fontSize: 12, height: "1.4rem" } }}
|
|
|
|
/>}
|
|
/>
|
|
}
|
|
|
|
</div>}
|
|
|
|
|
|
|
|
|
|
{p_filtre1 && <div className='filter_bton_add'>
|
|
<Tooltip className="tooltip_css" id="my-tooltip01" style={{ "fontSize": "12px" }} />
|
|
<a data-tooltip-id="my-tooltip01" data-tooltip-html="Ajouter une nouvelle ligne de filtre">
|
|
<MdAddCircleOutline onClick={(e) => {
|
|
setp_filtre2("1");
|
|
}} />
|
|
</a>
|
|
</div>}
|
|
{p_filtre1 && <div className='filter_bton_add'>
|
|
<Tooltip className="tooltip_css" id="my-tooltip02" style={{ "fontSize": "12px" }} />
|
|
<a data-tooltip-id="my-tooltip02" data-tooltip-html="Supprimer cette ligne de filtre">
|
|
<MdRemoveCircleOutline onClick={(e) => {
|
|
setp_filtre1("");
|
|
setp_filtre1_value("");
|
|
}}
|
|
/>
|
|
</a>
|
|
</div>}
|
|
|
|
</div>
|
|
|
|
{p_filtre2 &&
|
|
<div className="div_row" style={{ "marginBottom": "5px" }}>
|
|
<div className="div_row_gauche texte_area_filter">
|
|
{New_Option_Filter && New_Option_Filter.length > 0 && <Autocomplete
|
|
disablePortal
|
|
name="filtre2"
|
|
id="filtre2"
|
|
className="disabled_style"
|
|
value={New_Option_Filter.filter((data) => (data).value === String(p_filtre2))[0].label}
|
|
options={New_Option_Filter}
|
|
onChange={(event, value) => {
|
|
if (value && value.value) {
|
|
setp_filtre2(value.value);
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
renderInput={(params) => <TextField {...params} label="" placeholder="Choisir une option"
|
|
inputProps={{ ...params.inputProps, style: { fontSize: 12, height: "1.4rem" } }}
|
|
|
|
/>
|
|
}
|
|
/>}
|
|
|
|
</div>
|
|
<div className="div_row_droite texte_area_filter_value" style={{ "marginTop": "0.5rem" }}>
|
|
{String(p_filtre2).length > 3 && String(p_filtre2) !== "archive" &&
|
|
<TextField
|
|
sx={{ '& legend': { display: 'none' }, '& fieldset': { top: 0 }, }}
|
|
required
|
|
name="filtre2_value"
|
|
id="filtre2_value"
|
|
|
|
InputLabelProps={{
|
|
shrink: true,
|
|
}}
|
|
disabled={false}
|
|
className="disabled_style"
|
|
value={p_filtre2_value}
|
|
onChange={(e) => setp_filtre2_value(e.target.value)}
|
|
InputProps={{
|
|
endAdornment: (
|
|
<InputAdornment position="end">
|
|
<AiFillCloseCircle
|
|
style={{ 'cursor': "pointer", "color": "orangered" }}
|
|
onClick={(e) => {
|
|
setp_filtre2_value("");
|
|
}} />
|
|
</InputAdornment>
|
|
),
|
|
}}
|
|
|
|
/>}
|
|
|
|
{String(p_filtre2).length > 3 && String(p_filtre2) === "archive" &&
|
|
<Autocomplete
|
|
disablePortal
|
|
name="filtre2_value"
|
|
id="filtre2_value"
|
|
value={New_Option_Is_archive.filter((data) => (data).id === String(p_filtre2_value))[0].label}
|
|
|
|
className="disabled_style"
|
|
|
|
options={New_Option_Is_archive}
|
|
onChange={(event, value) => {
|
|
if (value && value.value) {
|
|
setp_filtre2_value(value.value);
|
|
} else {
|
|
setp_filtre2_value("");
|
|
}
|
|
}}
|
|
renderInput={(params) => <TextField {...params} label="" placeholder="Choisir une option"
|
|
inputProps={{ ...params.inputProps, style: { fontSize: 12, height: "1.4rem" } }}
|
|
|
|
/>}
|
|
/>}
|
|
</div>
|
|
|
|
{String(p_filtre2).length > 3 && <div className='filter_bton_add' >
|
|
<Tooltip className="tooltip_css" id="my-tooltip03" style={{ "fontSize": "12px" }} />
|
|
<a data-tooltip-id="my-tooltip03" data-tooltip-html="Ajouter une nouvelle ligne de filtre">
|
|
<MdAddCircleOutline
|
|
onClick={(e) => {
|
|
setp_filtre3("1");
|
|
}}
|
|
/>
|
|
</a>
|
|
</div>}
|
|
|
|
{String(p_filtre2).length > 3 && <div className='filter_bton_add'>
|
|
<Tooltip className="tooltip_css" id="my-tooltip04" style={{ "fontSize": "12px" }} />
|
|
<a data-tooltip-id="my-tooltip04" data-tooltip-html="Supprimer cette ligne de filtre">
|
|
<MdRemoveCircleOutline
|
|
onClick={(e) => {
|
|
setp_filtre2("");
|
|
setp_filtre2_value("");
|
|
}}
|
|
/>
|
|
</a>
|
|
</div>}
|
|
|
|
</div>
|
|
}
|
|
|
|
|
|
{p_filtre3 &&
|
|
<div className="div_row" style={{ "marginBottom": "5px" }}>
|
|
<div className="div_row_gauche texte_area_filter">
|
|
|
|
{New_Option_Filter && New_Option_Filter.length > 0 && <Autocomplete
|
|
disablePortal
|
|
name="filtre3"
|
|
id="filtre3"
|
|
className="disabled_style"
|
|
value={New_Option_Filter.filter((data) => (data).value === String(p_filtre3))[0].label}
|
|
options={New_Option_Filter}
|
|
onChange={(event, value) => {
|
|
if (value && value.value) {
|
|
setp_filtre3(value.value);
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
renderInput={(params) => <TextField {...params} label="" placeholder="Choisir une option"
|
|
inputProps={{ ...params.inputProps, style: { fontSize: 12, height: "1.4rem" } }}
|
|
|
|
/>
|
|
}
|
|
/>}
|
|
|
|
|
|
</div>
|
|
<div className="div_row_droite texte_area_filter_value" style={{ "marginTop": "0.5rem" }}>
|
|
{String(p_filtre3).length > 3 && String(p_filtre3) !== "archive" &&
|
|
<TextField
|
|
sx={{ '& legend': { display: 'none' }, '& fieldset': { top: 0 }, }}
|
|
required
|
|
name="filtre3_value"
|
|
id="filtre3_value"
|
|
|
|
InputLabelProps={{
|
|
shrink: true,
|
|
}}
|
|
disabled={false}
|
|
className="disabled_style"
|
|
value={p_filtre3_value}
|
|
onChange={(e) => setp_filtre3_value(e.target.value)}
|
|
InputProps={{
|
|
endAdornment: (
|
|
<InputAdornment position="end">
|
|
<AiFillCloseCircle
|
|
style={{ 'cursor': "pointer", "color": "orangered" }}
|
|
onClick={(e) => {
|
|
setp_filtre3_value("");
|
|
}} />
|
|
</InputAdornment>
|
|
),
|
|
}}
|
|
|
|
/>}
|
|
|
|
{String(p_filtre3).length > 3 && String(p_filtre3) === "archive" &&
|
|
<Autocomplete
|
|
disablePortal
|
|
name="filtre2_value"
|
|
id="filtre2_value"
|
|
value={New_Option_Is_archive.filter((data) => (data).id === String(p_filtre3_value))[0].label}
|
|
|
|
className="disabled_style"
|
|
|
|
options={New_Option_Is_archive}
|
|
onChange={(event, value) => {
|
|
if (value && value.value) {
|
|
setp_filtre3_value(value.value);
|
|
} else {
|
|
setp_filtre3_value("");
|
|
}
|
|
}}
|
|
renderInput={(params) => <TextField {...params} label="" placeholder="Choisir une option"
|
|
inputProps={{ ...params.inputProps, style: { fontSize: 12, height: "1.4rem" } }}
|
|
|
|
/>}
|
|
/>
|
|
}
|
|
</div>
|
|
|
|
{String(p_filtre3).length > 3 && <div className='filter_bton_add'>
|
|
<Tooltip className="tooltip_css" id="my-tooltip05" style={{ "fontSize": "12px" }} />
|
|
<a data-tooltip-id="my-tooltip05" data-tooltip-html="Supprimer cette ligne de filtre">
|
|
<MdRemoveCircleOutline onClick={(e) => {
|
|
setp_filtre3("");
|
|
setp_filtre3_value("");
|
|
}} />
|
|
</a>
|
|
</div>}
|
|
</div>
|
|
}
|
|
|
|
|
|
|
|
{<div className="div_row" style={{ "border": "None", "color": "orange", "textAlign": "center" }}>
|
|
|
|
<div className="div_row_gauche">
|
|
<Button variant="contained" className="bton_enreg" onClick={GetAllClass_new}>Rechercher
|
|
</Button>
|
|
</div>
|
|
|
|
<div className="div_row_droite">
|
|
<Button variant="contained" className="bton_annule" onClick={clean_all_filters}>Annuler
|
|
</Button>
|
|
|
|
</div>
|
|
|
|
</div>}
|
|
|
|
<div style={{ height: "850 px", "width": "100%" }}>
|
|
|
|
{String(myApiResponse) === "False" && <div className='koUpdateData'>
|
|
Impossible de traiter la demande
|
|
</div>}
|
|
|
|
<div style={{ height: "800px", width: '100%', paddingRight: '10px' }}>
|
|
<div className="div_row" style={{ "border": "None" }}>
|
|
<div className='block_groupe_class'>
|
|
<nav className='block_groupe_class_text' > Grouper par </nav>
|
|
<nav className='block_groupe_class_list'>
|
|
<Autocomplete
|
|
disablePortal
|
|
name="filtre11"
|
|
id="filtre11"
|
|
className="disabled_style"
|
|
options={New_option_group_by}
|
|
value={data_row_grouped_field}
|
|
onChange={(event, value) => {
|
|
|
|
if (value && value.value) {
|
|
|
|
func_catalog_data_grouped_by(value.value);
|
|
|
|
} else {
|
|
func_catalog_data_grouped_by("");
|
|
}
|
|
}}
|
|
|
|
renderInput={(params) => <TextField {...params} label="" placeholder="Choisir une période"
|
|
inputProps={{ ...params.inputProps, style: { fontSize: 12, height: "1.4rem" } }}
|
|
|
|
/>
|
|
}
|
|
/>
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
{/*!createtraining && <div className='div_row' >
|
|
|
|
<Button variant="outlined" onClick={Createtraining}
|
|
className="detail_class_submenu bton_add_session"
|
|
id='menu_import_participant' name='menu_import_participant' style={{ "float": "right", "marginRight": "10px" }}>Formation
|
|
<IoAddCircleOutline style={{ "fontSize": "x-large", "color": "green" }} />
|
|
</Button>
|
|
|
|
</div>*/}
|
|
{(!data_row_grouped_by || String(data_row_grouped_by) === "") && <div className="session_data">
|
|
<div style={{ "border": "None", paddingRight: '10px' }}>
|
|
<Box
|
|
sx={{
|
|
height: "700px",
|
|
width: '100%',
|
|
paddingRight: '2px',
|
|
'& .cell--published': {
|
|
backgroundColor: '#a2cf6e',
|
|
color: '#1a3e72',
|
|
fontWeight: 'bold',
|
|
},
|
|
'& .cell--unpublished': {
|
|
backgroundColor: '#ffac33',
|
|
color: '#1a3e72',
|
|
fontWeight: 'light',
|
|
},
|
|
'& .line--published': {
|
|
backgroundColor: '#E6F7C8',
|
|
color: 'black',
|
|
},
|
|
'& .line--unpublished': {
|
|
backgroundColor: '#FAD7A0',
|
|
color: 'black',
|
|
},
|
|
|
|
|
|
'& .line--statut--selected': {
|
|
backgroundColor: '#FBF2EF',
|
|
color: 'black',
|
|
},
|
|
[`& .${gridClasses.cell}`]: {
|
|
py: 1,
|
|
},
|
|
|
|
}}
|
|
>
|
|
{New_Get_List_Domaines_result &&
|
|
New_Get_List_Metiers_result &&
|
|
New_Get_List_Categorie_result &&
|
|
New_Get_List_Domaines_result.length > 0 &&
|
|
New_Get_List_Metiers_result.length > 0 &&
|
|
New_Get_List_Categorie_result.length > 0 &&
|
|
|
|
<DataGrid
|
|
checkboxSelection
|
|
components={{
|
|
Toolbar: CustomToolbar
|
|
}}
|
|
componentsProps={{ toolbar: { data_colums: columns } }}
|
|
|
|
|
|
onSelectionModelChange={(newSelectionModel) => {
|
|
setSelectionModel(newSelectionModel);
|
|
// console.log("ch selected 001--" + newSelectionModel);
|
|
}}
|
|
selectionModel={selectionModel}
|
|
localeText={frFR.components.MuiDataGrid.defaultProps.localeText}
|
|
rows={rowss.map((item, index) => (
|
|
|
|
{
|
|
id: index,
|
|
_id: JSON.parse(item)._id,
|
|
internal_url: JSON.parse(item).internal_url,
|
|
zone_diffusion: JSON.parse(item).zone_diffusion_str,
|
|
external_code: JSON.parse(item).external_code,
|
|
title: parse((JSON.parse(item).title).replace(/(<([^>]+)>)/ig, '')),
|
|
|
|
domain: New_Get_List_Domaines_result.filter((data) => (data)._id === String(JSON.parse(item).domaine))[0].label,
|
|
domain_code: New_Get_List_Domaines_result.filter((data) => (data)._id === String(JSON.parse(item).domaine))[0].code,
|
|
|
|
metier: New_Get_List_Metiers_result.filter((data) => (data)._id === String(JSON.parse(item).metier))[0].label,
|
|
metier_code: New_Get_List_Metiers_result.filter((data) => (data)._id === String(JSON.parse(item).metier))[0].code,
|
|
|
|
categorie: New_Get_List_Categorie_result.filter((data) => (data)._id === String(JSON.parse(item).categorie))[0].label,
|
|
|
|
referentiel_padagogique: New_Getall_Parter_referentiel_padagogique_result.filter((data) => (data)._id === String(JSON.parse(item).referentiel_padagogique_id))[0].label,
|
|
|
|
url: JSON.parse(item).url,
|
|
|
|
price: JSON.parse(item).price,
|
|
description: parse((JSON.parse(item).description).replace(/(<([^>]+)>)/ig, '')),
|
|
published: JSON.parse(item).published,
|
|
lms_class_code: JSON.parse(item).lms_class_code,
|
|
duration: JSON.parse(item).duration,
|
|
duration_unit: JSON.parse(item).duration_unit,
|
|
duration_in_hour: JSON.parse(item).duration_in_hour,
|
|
presentiel: JSON.parse(item).presentiel.presentiel,
|
|
distanciel: JSON.parse(item).presentiel.distantiel,
|
|
cible: JSON.parse(item).pourqui,
|
|
currency: JSON.parse(item).currecny,
|
|
archive: JSON.parse(item).archive,
|
|
|
|
version: JSON.parse(item).version,
|
|
|
|
nb_session_formation: JSON.parse(item).nb_session_formation,
|
|
|
|
}
|
|
))}
|
|
|
|
columns={columns}
|
|
pageSize={10}
|
|
className="datagridclass"
|
|
|
|
onRowDoubleClick={(newSelectionModel) => {
|
|
setgridline_id(newSelectionModel.row.id);
|
|
Closecreatetraining();
|
|
closeTrainingForm();
|
|
|
|
var al = JSON.parse(rowss[newSelectionModel.row.id])
|
|
|
|
setselected_row_data_json(JSON.parse(rowss[newSelectionModel.row.id]));
|
|
setclassidtrainingtoupdate(newSelectionModel.row._id);
|
|
|
|
setreftrainingtoupdate(newSelectionModel.row.internal_url);
|
|
setexternalcodetraining_toupdate(newSelectionModel.row.external_code);
|
|
setDialog_formation_open(true);
|
|
|
|
}
|
|
}
|
|
|
|
rowsPerPageOptions={[10]}
|
|
disableSelectionOnClick
|
|
/* components={{
|
|
Toolbar: GridToolbar,
|
|
}}*/
|
|
|
|
getCellClassName={(params) => {
|
|
if (params.field === 'published' && String(params.value) === "1") {
|
|
return 'cell--published';
|
|
}
|
|
|
|
if (params.field === "published" && String(params.value) !== "1") {
|
|
return 'cell--unpublished'
|
|
}
|
|
|
|
}}
|
|
getRowClassName={(params) => {
|
|
|
|
// Pour la gestion de la couleur de zone double cliquée
|
|
if (String(params.row.id) === String(gridline_id)) {
|
|
return 'line--statut--selected';
|
|
}
|
|
|
|
if (String(params.row.published) === "1") {
|
|
return 'line--published';
|
|
}
|
|
|
|
if (String(params.row.published) !== "1") {
|
|
return 'line--unpublished';
|
|
}
|
|
|
|
}}
|
|
getEstimatedRowHeight={() => 200}
|
|
getRowHeight={() => "auto"}
|
|
|
|
sx={datagridSx}
|
|
|
|
|
|
/>}
|
|
|
|
|
|
|
|
</Box>
|
|
</div>
|
|
</div>}
|
|
|
|
{data_row_grouped_by && (String(data_row_grouped_by) === "domain" || String(data_row_grouped_by) === "metier" ||
|
|
String(data_row_grouped_by) === "categorie") &&
|
|
<div className="div_row">
|
|
<Box
|
|
sx={{
|
|
height: "700px",
|
|
width: '100%',
|
|
paddingRight: '2px',
|
|
'& .cell--published': {
|
|
backgroundColor: '#a2cf6e',
|
|
color: '#1a3e72',
|
|
fontWeight: 'bold',
|
|
},
|
|
'& .cell--unpublished': {
|
|
backgroundColor: '#ffac33',
|
|
color: '#1a3e72',
|
|
fontWeight: 'light',
|
|
},
|
|
'& .line--published': {
|
|
backgroundColor: '#E6F7C8',
|
|
color: 'black',
|
|
},
|
|
'& .line--unpublished': {
|
|
backgroundColor: '#FAD7A0',
|
|
color: 'black',
|
|
},
|
|
|
|
|
|
'& .line--statut--selected': {
|
|
backgroundColor: '#FBF2EF',
|
|
color: 'black',
|
|
},
|
|
[`& .${gridClasses.cell}`]: {
|
|
py: 1,
|
|
},
|
|
|
|
}}
|
|
>
|
|
<DataGridPro
|
|
initialState={{
|
|
columns: {
|
|
columnVisibilityModel: {
|
|
// Hide columns id and lastname.
|
|
// Other columns will remain visible
|
|
id: false,
|
|
_id: false,
|
|
lms_class_code: false,
|
|
duration: false,
|
|
presentiel: false,
|
|
distanciel: false,
|
|
cible: false,
|
|
duration_unit: false,
|
|
duration_in_hour: false,
|
|
currency: false,
|
|
zone_diffusion: false,
|
|
internal_url: false,
|
|
url: false,
|
|
description: false,
|
|
|
|
},
|
|
},
|
|
}}
|
|
|
|
treeData
|
|
getTreeDataPath={getTreeDataPath}
|
|
checkboxSelection
|
|
components={{
|
|
Toolbar: CustomToolbar
|
|
}}
|
|
componentsProps={{ toolbar: { data_colums: columns } }}
|
|
|
|
|
|
onSelectionModelChange={(newSelectionModel) => {
|
|
setSelectionModel(newSelectionModel);
|
|
// console.log("ch selected--" + newSelectionModel);
|
|
}}
|
|
selectionModel={selectionModel}
|
|
localeText={frFR.components.MuiDataGrid.defaultProps.localeText}
|
|
rows={rowss.map((item, index) => (
|
|
|
|
{
|
|
id: index,
|
|
_id: JSON.parse(item)._id,
|
|
internal_url: JSON.parse(item).internal_url,
|
|
zone_diffusion: JSON.parse(item).zone_diffusion_str,
|
|
external_code: JSON.parse(item).external_code,
|
|
title: parse((JSON.parse(item).title).replace(/(<([^>]+)>)/ig, '')),
|
|
|
|
domain: New_Get_List_Domaines_result.filter((data) => (data)._id === String(JSON.parse(item).domaine))[0].label,
|
|
|
|
metier: New_Get_List_Metiers_result.filter((data) => (data)._id === String(JSON.parse(item).metier))[0].label,
|
|
|
|
categorie: New_Get_List_Categorie_result.filter((data) => (data)._id === String(JSON.parse(item).categorie))[0].label,
|
|
|
|
|
|
url: JSON.parse(item).url,
|
|
|
|
price: JSON.parse(item).price,
|
|
description: parse((JSON.parse(item).description).replace(/(<([^>]+)>)/ig, '')),
|
|
published: JSON.parse(item).published,
|
|
lms_class_code: JSON.parse(item).lms_class_code,
|
|
duration: JSON.parse(item).duration,
|
|
duration_unit: JSON.parse(item).duration_unit,
|
|
duration_in_hour: JSON.parse(item).duration_in_hour,
|
|
presentiel: JSON.parse(item).presentiel.presentiel,
|
|
distanciel: JSON.parse(item).presentiel.distantiel,
|
|
cible: JSON.parse(item).pourqui,
|
|
currency: JSON.parse(item).currecny,
|
|
|
|
version: JSON.parse(item).version,
|
|
|
|
nb_session_formation: JSON.parse(item).nb_session_formation,
|
|
|
|
|
|
}
|
|
))}
|
|
|
|
columns={columns}
|
|
pageSize={10}
|
|
className="datagridclass"
|
|
|
|
onRowDoubleClick={(newSelectionModel) => {
|
|
|
|
setgridline_id(newSelectionModel.row.id);
|
|
Closecreatetraining();
|
|
closeTrainingForm();
|
|
|
|
var al = JSON.parse(rowss[newSelectionModel.row.id])
|
|
|
|
setselected_row_data_json(JSON.parse(rowss[newSelectionModel.row.id]));
|
|
setclassidtrainingtoupdate(newSelectionModel.row._id);
|
|
|
|
setreftrainingtoupdate(newSelectionModel.row.internal_url);
|
|
setexternalcodetraining_toupdate(newSelectionModel.row.external_code);
|
|
setDialog_formation_open(true);
|
|
|
|
}
|
|
}
|
|
|
|
rowsPerPageOptions={[10]}
|
|
disableSelectionOnClick
|
|
/* components={{
|
|
Toolbar: GridToolbar,
|
|
}}*/
|
|
|
|
getCellClassName={(params) => {
|
|
if (params.field === 'published' && String(params.value) === "1") {
|
|
return 'cell--published';
|
|
}
|
|
|
|
if (params.field === "published" && String(params.value) !== "1") {
|
|
return 'cell--unpublished'
|
|
}
|
|
|
|
}}
|
|
getRowClassName={(params) => {
|
|
|
|
// Pour la gestion de la couleur de zone double cliquée
|
|
if (String(params.row.id) === String(gridline_id)) {
|
|
return 'line--statut--selected';
|
|
}
|
|
|
|
if (String(params.row.published) === "1") {
|
|
return 'line--published';
|
|
}
|
|
|
|
if (String(params.row.published) !== "1") {
|
|
return 'line--unpublished';
|
|
}
|
|
|
|
}}
|
|
getEstimatedRowHeight={() => 200}
|
|
getRowHeight={() => "auto"}
|
|
|
|
sx={datagridSx}
|
|
|
|
|
|
/>
|
|
|
|
</Box>
|
|
</div>
|
|
}
|
|
|
|
|
|
<div className="div_row"> </div>
|
|
<div className="div_row">
|
|
{selectionModel && selectionModel.length >= 1 && <div className="block_en_mass">
|
|
<nav >Traitement en masse </nav>
|
|
<br />
|
|
|
|
<Autocomplete
|
|
//sx={{ '& legend': { display: 'none' }, '& fieldset': { top: 0 } }}
|
|
disablePortal
|
|
id="combo-box-demo"
|
|
className="block_en_mass_select"
|
|
fullWidth
|
|
options={New_Option}
|
|
onChange={(event, value) => {
|
|
if (value && value.value) {
|
|
if (String(value.value) === "publier" || String(value.value) === "depublier" ||
|
|
String(value.value) === "desactiver" || String(value.value) === "supprimer"
|
|
|| String(value.value) === "dupliquer" || String(value.value) === "exporter") {
|
|
setactionmass_ftion_val(value.value);
|
|
}
|
|
else {
|
|
setactionmass_ftion_val();
|
|
}
|
|
}
|
|
}}
|
|
hiddenLabel="true"
|
|
renderInput={(params) => <TextField {...params} placeholder="Choisir une option " variant="outlined" />
|
|
}
|
|
/>
|
|
|
|
|
|
{/* <TextField
|
|
|
|
select
|
|
InputLabelProps={{
|
|
shrink: true,
|
|
}}
|
|
inputProps={{ min: "0", max: "1", step: "1" }}
|
|
disabled={false}
|
|
className="block_en_mass_select"
|
|
|
|
value={actionmass_ftion_val}
|
|
onChange={actionmass_ftion}
|
|
>
|
|
<MenuItem value="" style={{ "paddingLeft": "5px", "textAlign": "left", "width": "100%" }}>Action </MenuItem>
|
|
<MenuItem value="publier" style={{ "paddingLeft": "5px", "textAlign": "left", "width": "100%" }}>Publier </MenuItem>
|
|
<MenuItem value="depublier" style={{ "paddingLeft": "5px", "textAlign": "left", "width": "100%" }}>Dépublier </MenuItem>
|
|
<MenuItem value="dupliquer" style={{ "paddingLeft": "5px", "textAlign": "left", "width": "100%" }}>Dupliquer </MenuItem>
|
|
<MenuItem value="supprimer" style={{ "paddingLeft": "5px", "textAlign": "left", "width": "100%" }}>Supprimer </MenuItem>
|
|
<MenuItem value="exporter" style={{ "paddingLeft": "5px", "textAlign": "left", "width": "100%" }}>Exporter </MenuItem>
|
|
|
|
</TextField>*/}
|
|
|
|
{actionmass_ftion_val && <nav className='block_en_mass_bton_action'>
|
|
<Popup
|
|
trigger={<Button className="bton_enreg" style={{ "width": "90%" }}>
|
|
|
|
<FcAcceptDatabase /> Traiter
|
|
|
|
</Button>}
|
|
modal
|
|
nested
|
|
position="center center"
|
|
|
|
>
|
|
|
|
{close => (
|
|
<div>
|
|
<button className="gest_close" onClick={close}>
|
|
×
|
|
</button>
|
|
<div className="gest_header"> MySy Information </div>
|
|
<div className="gest_content">
|
|
{' '}
|
|
{String(actionmass_ftion_val) === "supprimer" &&
|
|
<font color="red"> Confirmer la <b> suppression </b> en masse pour {selectionModel.length} formations.
|
|
</font>}
|
|
|
|
{String(actionmass_ftion_val) === "dupliquer" &&
|
|
<font color="red"> Confirmer la <b> duplication </b> en masse pour {selectionModel.length} formations.
|
|
</font>}
|
|
|
|
{String(actionmass_ftion_val) === "exporter" &&
|
|
<font> Confirmer l' <b> export </b> en masse pour {selectionModel.length} formations.
|
|
</font>}
|
|
|
|
{String(actionmass_ftion_val) === "publier" &&
|
|
<font> Confirmer la <b> publication </b> en masse pour {selectionModel.length} formations.
|
|
</font>}
|
|
|
|
{String(actionmass_ftion_val) === "depublier" &&
|
|
<font> Confirmer la <b> dépublication </b> en masse pour {selectionModel.length} formations.
|
|
</font>}
|
|
|
|
|
|
|
|
|
|
</div>
|
|
<div className="gest_actions">
|
|
<div style={{ "width": "45%", "float": "left" }}>
|
|
<button className="gest_bton_popup" onClick={(event) => {
|
|
actionmass_ftion_Traitemet();
|
|
close();
|
|
}}> Valider </button>
|
|
|
|
</div>
|
|
<div style={{ "width": "45%", "float": "right" }}>
|
|
<button
|
|
className="gest_bton_popup"
|
|
onClick={() => {
|
|
//console.log('modal closed ');
|
|
close();
|
|
}}
|
|
>
|
|
Annuler
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</Popup>
|
|
</nav>
|
|
}
|
|
|
|
|
|
</div>}
|
|
</div>
|
|
{selectionModel && selectionModel.length >= 1 && <div className="div_row" style={{ "border": "None" }}>
|
|
<hr className="hr_break" />
|
|
</div>}
|
|
|
|
|
|
|
|
<div className='div_row' >
|
|
|
|
<Button variant="outlined" onClick={changeHandler2} className="detail_class_submenu bton_add_session_long"
|
|
id='menu_import_formation' name='menu_import_formation'>Choisir un fichier et importer <GrDocumentCsv style={{ "fontSize": "large" }} /> <SendIcon />
|
|
</Button>
|
|
|
|
<input type="file"
|
|
accept=".csv"
|
|
ref={hiddenFileInput_formation}
|
|
style={{ display: 'none' }}
|
|
name="liste_formation_file"
|
|
onChange={handleSubmission}
|
|
|
|
|
|
/>
|
|
|
|
<Button variant="outlined" onClick={Createtraining}
|
|
className="detail_class_submenu bton_add_session"
|
|
id='menu_import_participant' name='menu_import_participant' style={{ "marginRight": "10px" }}>Ajout 1 Formation
|
|
<IoAddCircleOutline style={{ "fontSize": "x-large", "color": "green" }} />
|
|
</Button>
|
|
|
|
<br />
|
|
{formation_file_name && <nav className="okUpdateData"><i>{formation_file_name}</i></nav>}
|
|
|
|
<a href='/sample/template_import_formations.csv' download><nav style={{ "fontSize": "14px" }}>Télécharger un fichier modèle</nav></a>
|
|
|
|
|
|
</div>
|
|
|
|
<div className="import_excel_text">
|
|
|
|
<nav className="titre1"> Comment utiliser le fichier d'import des formations ? </nav>
|
|
<nav style={{ "color": "orange" }}>
|
|
Dans le fichier à importer, seules les colonnes suivantes sont obligatoires :
|
|
<ul>
|
|
<li>external_code : C'est le code de la formation chez vous, editeur de la formation </li>
|
|
<li> titre : Le titre de la formation </li>
|
|
<li> domaine : Le domaine au quel est rattaché la formation</li>
|
|
<li> description : La descriptin de la formation</li>
|
|
</ul>
|
|
</nav>
|
|
Pour le reste, <br />
|
|
<ul>
|
|
<li> Il s'agit d'un fichier csv. Les colonnes sont separées par des ";"</li>
|
|
<li> A l'interieur d'une même colonne, les informations sont separées par des ";" </li>
|
|
<li> Champ 'Metier' : les valeurs acceptées sont : IT, RH, vente, dev_perso, Graphisme, Management, Digital, Office, Autre</li>
|
|
<li> ...</li>
|
|
</ul>
|
|
<a href='/sample/MySy_Import_formation_csv.pdf' download>Télécharger le guide complet pour plus d'informations</a><br />
|
|
<br />
|
|
</div>
|
|
<div style={{ "width": "50%" }}> </div>
|
|
|
|
</div>
|
|
</div>
|
|
<br />
|
|
|
|
</div>
|
|
|
|
|
|
)
|
|
|
|
}
|
|
|
|
export default DistplayPartnerTraningsPage; |