25/09/2024 - 15h

recette2
cherif 2024-09-25 15:43:27 +02:00
parent 4afea9fc0b
commit 3c7529943d
8 changed files with 1023 additions and 179 deletions

View File

@ -60,6 +60,7 @@ import { LineChart } from '@mui/x-charts/LineChart';
import BarChartIcon from '@mui/icons-material/BarChart'; import BarChartIcon from '@mui/icons-material/BarChart';
import SsidChartIcon from '@mui/icons-material/SsidChart'; import SsidChartIcon from '@mui/icons-material/SsidChart';
import { RiFileExcel2Line } from "react-icons/ri"; import { RiFileExcel2Line } from "react-icons/ri";
import AttachFileIcon from '@mui/icons-material/AttachFile';
const Employes = (props) => { const Employes = (props) => {
const history = useHistory(); const history = useHistory();
@ -4643,8 +4644,7 @@ const Employes = (props) => {
//console.log("file_size = ", file_size, " file_type = ", file_type);
console.log("file_size = ", file_size, " file_type = ", file_type);
if (file_size > 10000000) { if (file_size > 10000000) {
alert("Le fichier ne doit pas depasser un 1 Méga octets"); alert("Le fichier ne doit pas depasser un 1 Méga octets");
console.log("Le fichier ne doit pas depasser un 1 Méga octets"); console.log("Le fichier ne doit pas depasser un 1 Méga octets");
@ -10764,7 +10764,7 @@ const Employes = (props) => {
<div className="div_row"> <div className="div_row">
{Get_List_Of_All_PJ_result && Get_List_Of_All_PJ_result.map((val) => ( {Get_List_Of_All_PJ_result && Get_List_Of_All_PJ_result.map((val) => (
<div className="div_row_list_pj" > <div className="div_row_list_pj" >
<nav style={{ "color": "green", "cursor": "pointer" }} onClick={Download_one_attached_document} name={(JSON.parse(val).file_name)} id={(JSON.parse(val).file_name)}> Télécharger &nbsp;<i> {(JSON.parse(val).file_business_object)}</i> </nav> <br /> <nav style={{ "color": "green", "cursor": "pointer" }} onClick={Download_one_attached_document} name={(JSON.parse(val).file_name)} id={(JSON.parse(val).file_name)}> Télécharger &nbsp;<i><AttachFileIcon /> {(JSON.parse(val).file_business_object)}</i> </nav> <br />
<Popup <Popup
trigger={ trigger={
<nav style={{ "color": "red", "cursor": "pointer" }} > Supprimer</nav> <nav style={{ "color": "red", "cursor": "pointer" }} > Supprimer</nav>

View File

@ -0,0 +1,73 @@
import React, { useRef, useState, useEffect } from "react";
import { styled } from '@mui/material/styles';
import Paper from '@mui/material/Paper';
import Grid from '@mui/material/Grid';
import { FacebookShareButton, LinkedinShareButton, TwitterShareButton } from "react-share";
import { SocialIcon } from 'react-social-icons';
import {
Box,
Container,
Row,
Column,
FooterLink,
Heading,
} from "./FooterStyles";
const Fotter_Catalog_Pub = (props) => {
const [partner_id, setpartner_id] = useState(props.partner_data);
// Integration du gestionnaire de cookie : axeptio
window.axeptioSettings = {
clientId: "6273ecd99c50de9cfb190555",
cookiesVersion: "mysy training technology-fr",
};
(function (d, s) {
var t = d.getElementsByTagName(s)[0], e = d.createElement(s);
e.async = true; e.src = "//static.axept.io/sdk-slim.js";
t.parentNode.insertBefore(e, t);
})(document, "script");
function Display_CGV_File() {
const downloadLink = document.createElement("a");
const fileName = "file.pdf";
downloadLink.href = props.partner_data.catalog_pub_cgv_pdf;
downloadLink.download = fileName;
downloadLink.click();
}
function Display_CGU_File() {
const downloadLink = document.createElement("a");
const fileName = "file.pdf";
downloadLink.href = props.partner_data.catalog_pub_cgu_pdf;
downloadLink.download = fileName;
downloadLink.click();
}
return (
<div className='footer_catalog_pub'>
<div className='Box_div' style={{ "minHeight": "5rem", "width": "100%" }}>
&nbsp;
</div>
<div className='Box_div'>
<hr />
<i className='copyright'>
Copyright © 2024 {props.partner_data.nom} . Tous droits réservés. &nbsp;
<a> <nav onClick={Display_CGU_File} >| Conditions générales dutilisation </nav> </a>
<a><nav onClick={Display_CGV_File} > | Conditions générales de vente </nav> </a>
</i>
</div>
</div>
);
};
export default Fotter_Catalog_Pub;

View File

@ -14,7 +14,7 @@ import { Helmet } from "react-helmet";
import AideRecherche from "./AideRecherche" import AideRecherche from "./AideRecherche"
import { useParams } from 'react-router-dom' import { useParams } from 'react-router-dom'
import Footer_v2 from "./Fotter_v2"; import Fotter_Catalog_Pub from "./Fotter_Catalog_Pub";
import Footer from "./Fotter"; import Footer from "./Fotter";
import LogoutOutlinedIcon from '@mui/icons-material/LogoutOutlined'; import LogoutOutlinedIcon from '@mui/icons-material/LogoutOutlined';
import Button from '@mui/material/Button'; import Button from '@mui/material/Button';
@ -56,7 +56,7 @@ import DialogTitle from '@mui/material/DialogTitle';
import { CiCircleRemove, CiCircleMinus } from "react-icons/ci"; import { CiCircleRemove, CiCircleMinus } from "react-icons/ci";
let PageSize = 10; let PageSize = 10;
const Mon_Catalogue_Public = () => { const Mon_Catalogue_Public = (props) => {
@ -2640,6 +2640,17 @@ const Mon_Catalogue_Public = () => {
var catalog_pub_message_1_txt = JSON.parse(x).catalog_pub_message_1_txt; var catalog_pub_message_1_txt = JSON.parse(x).catalog_pub_message_1_txt;
var catalog_pub_cgv_pdf = ""
if (JSON.parse(x).catalog_pub_cgv_pdf)
catalog_pub_cgv_pdf = JSON.parse(x).catalog_pub_cgv_pdf;
var catalog_pub_cgu_pdf = ""
if (JSON.parse(x).catalog_pub_cgu_pdf)
catalog_pub_cgu_pdf = JSON.parse(x).catalog_pub_cgu_pdf;
var catalog_pub_message_1_taille = "" var catalog_pub_message_1_taille = ""
if (JSON.parse(x).catalog_pub_message_1_taille) if (JSON.parse(x).catalog_pub_message_1_taille)
catalog_pub_message_1_taille = JSON.parse(x).catalog_pub_message_1_taille; catalog_pub_message_1_taille = JSON.parse(x).catalog_pub_message_1_taille;
@ -2700,6 +2711,9 @@ const Mon_Catalogue_Public = () => {
"nom": nom, "nom": nom,
"label": nom, "label": nom,
"catalog_pub_cgv_pdf": catalog_pub_cgv_pdf,
"catalog_pub_cgu_pdf": catalog_pub_cgu_pdf,
"catalog_pub_logo": catalog_pub_logo, "catalog_pub_logo": catalog_pub_logo,
"catalog_pub_banniere_img": catalog_pub_banniere_img, "catalog_pub_banniere_img": catalog_pub_banniere_img,
"catalog_pub_message_1_txt": catalog_pub_message_1_txt, "catalog_pub_message_1_txt": catalog_pub_message_1_txt,
@ -2724,7 +2738,7 @@ const Mon_Catalogue_Public = () => {
"theme_code": theme_code, "theme_code": theme_code,
}; };
console.log(" --- node = ", node); //console.log(" --- node = ", node);
new_data2.push(node); new_data2.push(node);
}); });
@ -3564,54 +3578,11 @@ const Mon_Catalogue_Public = () => {
</div> </div>
</div> </div>
<div className="block_partner" id="block_partner">
<div className="block_partner_sous_block">
<div className="block_partner_sous_block_logo_desc">
<div className="block_partner_sous_block_logo_desc_logo">
<div className="logo_not_absolut">
<img className="Logo_MySy" src={mysy_logo2} alt="MySy Training Technology" />
<nav className="training">TRAINING</nav>
</div>
</div>
<div className="block_partner_sous_block_logo_desc_desc">
Devenir partenaire
</div>
<div className="block_partner_sous_block_logo_desc_desc2">
Devenez notre partenaire et publiez vos formations tout en bénéficiant d'un accompagnement sur mesure pour votre plan de marketing.
</div>
</div>
<a
href="/ContactezNous"
target="_blank"
style={{ "textDecoration": "none" }}>
<div className="block_partner_sous_block_buton">
<div className="bton_tout_nos_article_account_box">
</div>
<div className="bton_tout_nos_article_txt">
Devenir partenaire MySy Training
</div>
</div>
</a>
</div>
</div>
</div> </div>
<div className="pieddepage_v2" id="pieddepage_v2"> <div className="pieddepage_v2" id="pieddepage_v2">
<Footer />
<Fotter_Catalog_Pub partner_data={New_Get_Subdomain_Partner_Data_result[0]} />
</div> </div>
</div > </div >
@ -4626,123 +4597,10 @@ const Mon_Catalogue_Public = () => {
</div> </div>
<div className="block_actualite" >
<div className="block_actualite_sous_block">
<div className="block_actualite_sous_block_text">Notre actualité
</div>
<div className="block_list_actu">
<div className="block_list_actu_actu1">
<div className="block_list_actu_actu1_img">
</div>
<div className="block_list_actu_actu1_date_text">
<div className="block_list_actu_actu1_date_text_date">
19 DECEMBRE 2022
</div>
<div className="block_list_actu_actu1_date_text_txt">
Lorem ipsum dolor sit amet, consectetur adipiscing elit
</div>
</div>
</div>
<div className="block_list_actu_actu1">
<div className="block_list_actu_actu1_img">
</div>
<div className="block_list_actu_actu1_date_text">
<div className="block_list_actu_actu1_date_text_date">
19 DECEMBRE 2022
</div>
<div className="block_list_actu_actu1_date_text_txt">
Lorem ipsum dolor sit amet, consectetur adipiscing elit
</div>
</div>
</div>
<div className="block_list_actu_actu1">
<div className="block_list_actu_actu1_img">
</div>
<div className="block_list_actu_actu1_date_text">
<div className="block_list_actu_actu1_date_text_date">
19 DECEMBRE 2022
</div>
<div className="block_list_actu_actu1_date_text_txt">
Lorem ipsum dolor sit amet, consectetur adipiscing elit
</div>
</div>
</div>
</div>
</div>
<div className="bton_tout_nos_article">
<div className="bton_tout_nos_article_account_box">
</div>
<a
href="/Recherche-Article-formation"
target="_blank"
rel="noopener noreferrer"
style={{ "textDecoration": "none" }}
>
<div className="bton_tout_nos_article_txt" style={{ "textDecoration": "none" }}>
Voir tous nos articles
</div>
</a>
</div>
</div>
<div className="block_partner" id="block_partner">
<div className="block_partner_sous_block">
<div className="block_partner_sous_block_logo_desc">
</div>
</div>
</div>
</div> </div>
<div className="pieddepage_v2" id="pieddepage_v2"> <div className="pieddepage_v2" id="pieddepage_v2">
<Footer /> <Fotter_Catalog_Pub partner_data={New_Get_Subdomain_Partner_Data_result[0]} />
</div> </div>
</div>} </div>}
{/******* FIN Gestion du THEME PAR DEFAULT " */} {/******* FIN Gestion du THEME PAR DEFAULT " */}

View File

@ -12,7 +12,7 @@ import EmailIcon from '@mui/icons-material/Email'
import LanguageIcon from '@mui/icons-material/Language'; import LanguageIcon from '@mui/icons-material/Language';
import HomeIcon from '@mui/icons-material/Home' import HomeIcon from '@mui/icons-material/Home'
import { Button, Form, FormGroup, Label } from "reactstrap"; import { Button, Form, FormGroup, Label } from "reactstrap";
import DeleteOutlineIcon from '@mui/icons-material/DeleteOutline';
import { useHistory } from "react-router-dom"; import { useHistory } from "react-router-dom";
import TwitterIcon from '@mui/icons-material/Twitter'; import TwitterIcon from '@mui/icons-material/Twitter';
import FacebookIcon from '@mui/icons-material/Facebook'; import FacebookIcon from '@mui/icons-material/Facebook';
@ -30,7 +30,7 @@ import CancelPresentationIcon from '@mui/icons-material/CancelPresentation';
import { makeStyles } from "@material-ui/core/styles"; import { makeStyles } from "@material-ui/core/styles";
import { IconButton } from '@material-ui/core'; import { IconButton } from '@material-ui/core';
import fileDownload from 'js-file-download';
import OpenInNewIcon from '@mui/icons-material/OpenInNew'; import OpenInNewIcon from '@mui/icons-material/OpenInNew';
import Dialog from '@mui/material/Dialog'; import Dialog from '@mui/material/Dialog';
import DialogActions from '@mui/material/DialogActions'; import DialogActions from '@mui/material/DialogActions';
@ -39,7 +39,14 @@ import DialogContentText from '@mui/material/DialogContentText';
import DialogTitle from '@mui/material/DialogTitle'; import DialogTitle from '@mui/material/DialogTitle';
import ColorPicker from 'react-pick-color'; import ColorPicker from 'react-pick-color';
import { gridClasses } from '@mui/x-data-grid'; import { gridClasses } from '@mui/x-data-grid';
import AttachFileIcon from '@mui/icons-material/AttachFile';
import DeleteForeverIcon from '@mui/icons-material/DeleteForever';
import DownloadingIcon from '@mui/icons-material/Downloading';
import Popup from 'reactjs-popup';
import 'reactjs-popup/dist/index.css';
import { CiTrash } from "react-icons/ci";
const useStyles = makeStyles((theme) => ({ const useStyles = makeStyles((theme) => ({
@ -1922,7 +1929,7 @@ function UpdateParnterInfo(props) {
setLoading(false); setLoading(false);
if (String(res.data.status) === "true") { if (String(res.data.status) === "true") {
//console.log(" In Get_Partner_Catalog_Pub_Config res.data.status = " + res.data.status); //console.log(" In Get_Partner_Catalog_Pub_Config res.data.status = " + res.data.status);
console.log(" In Get_Partner_Catalog_Pub_Config res.data.message r_class = " + res.data.message); // console.log(" In Get_Partner_Catalog_Pub_Config res.data.message r_class = " + res.data.message);
setGet_Partner_Catalog_Pub_Config_api("true"); setGet_Partner_Catalog_Pub_Config_api("true");
setGet_Partner_Catalog_Pub_Config_result(res.data.message); setGet_Partner_Catalog_Pub_Config_result(res.data.message);
@ -1930,6 +1937,17 @@ function UpdateParnterInfo(props) {
setselected_catalog_pub_theme_id(JSON.parse(res.data.message).theme_id); setselected_catalog_pub_theme_id(JSON.parse(res.data.message).theme_id);
var local_cgu = "";
if (JSON.parse(res.data.message).cgu_pdf)
local_cgu = JSON.parse(res.data.message).cgu_pdf;
setp_detail_cgu_file_pdf(local_cgu);
var local_cgv = "";
if (JSON.parse(res.data.message).cgv_pdf)
local_cgv = JSON.parse(res.data.message).cgv_pdf;
setp_detail_cgv_file_pdf(local_cgv);
var theme_id_preview = "data:image/png;base64," + JSON.parse(res.data.message).theme_preview; var theme_id_preview = "data:image/png;base64," + JSON.parse(res.data.message).theme_preview;
setselected_catalog_pub_theme_preview(theme_id_preview); setselected_catalog_pub_theme_preview(theme_id_preview);
@ -2674,6 +2692,9 @@ function UpdateParnterInfo(props) {
const [quel_text, setquel_text] = React.useState(""); const [quel_text, setquel_text] = React.useState("");
const [p_detail_cgv_file_pdf, setp_detail_cgv_file_pdf] = React.useState("");
const [p_detail_cgu_file_pdf, setp_detail_cgu_file_pdf] = React.useState("");
const [p_text2_taille, setp_text2_taille] = React.useState("12"); const [p_text2_taille, setp_text2_taille] = React.useState("12");
const [p_text2_gras, setp_text2_gras] = React.useState(false); const [p_text2_gras, setp_text2_gras] = React.useState(false);
const [p_text2_color, setp_text2_color] = React.useState("#000000"); const [p_text2_color, setp_text2_color] = React.useState("#000000");
@ -2724,6 +2745,299 @@ function UpdateParnterInfo(props) {
}; };
/// ======= CGV
const changeHandler2_cgv = (event) => {
hiddenFileInput_cgv.current.click();
};
const [cgv_file_name, setcgv_file_name] = useState();
const hiddenFileInput_cgv = React.useRef(null);
const [handleSubmission_cgv_api, sethandleSubmission_cgv_api] = useState();
const [handleSubmission_cgv_result, sethandleSubmission_cgv_result] = useState();
const [handleSubmission_cgv_message, sethandleSubmission_cgv_message] = useState();
const handleSubmission_cgv = event => {
const fileUploaded = event.target.files[0];
let file_size = event.target.files[0].size;
let file_type = event.target.files[0].type;
sethandleSubmission_cgv_message("");
sethandleSubmission_cgv_api("");
// console.log("file_size = ", file_size, " file_type = ", file_type, " naturalWidth = ", fileUploaded.naturalWidth);
if (file_size > 1000000) {
alert("Le fichier ne doit pas dépasser un 1 Méga octets");
return;
}
setcgv_file_name(event.target.files[0].name);
reader(event.target.files[0], (err, res) => {
// console.log("#### res === ", res); // Base64 `data:image/...` String result.
setpdf_cgv_file_pdf(res);
});
};
const [pdf_cgv_file_pdf, setpdf_cgv_file_pdf] = useState();
const [Add_Update_Catalog_Pub_CGV_api, setAdd_Update_Catalog_Pub_CGV_api] = useState();
const [Add_Update_Catalog_Pub_CGV_message, setAdd_Update_Catalog_Pub_CGV_message] = useState();
const [Add_Update_Catalog_Pub_CGV_result, setAdd_Update_Catalog_Pub_CGV_result] = useState();
function Add_Update_Catalog_Pub_CGV() {
var form = new FormData();
const stored_cookie = getCookie('tokenmysypart');
form.append("token", stored_cookie);
form.append("_id", selected_catalog_pub_config_id);
form.append("cgv_pdf", pdf_cgv_file_pdf);
//console.log(" form == ", form);
var myurl = process.env.REACT_APP_API_URL + "myclass/api/Add_Update_Partner_Catalog_Pub_Config/";
setLoading(true);
axios.post(myurl, form).then(res => {
setLoading(false);
//console.log(" In Add_Update_Catalog_Pub_CGV res.data.status = " + res.data.status);
//console.log(" In Add_Update_Catalog_Pub_CGV res.data.message r_class = " + res.data.message);
if (String(res.data.status) === String("true")) {
setAdd_Update_Catalog_Pub_CGV_api("true");
setAdd_Update_Catalog_Pub_CGV_result(res.data.message);
setcgv_file_name("");
setpdf_cgv_file_pdf("");
Get_Partner_Catalog_Pub_Config();
alert(res.data.message);
}
else {
setAdd_Update_Catalog_Pub_CGV_api("false");
setAdd_Update_Catalog_Pub_CGV_message(res.data.message);
alert(res.data.message);
}
}).catch((error) => {
setLoading(false);
console.warn('UpdateStagiaireData : Not good man :( Add_Update_Catalog_Pub_CGV = ' + error);
setAdd_Update_Catalog_Pub_CGV_api("false");
alert(" Impossible de supprimer le fichier CGV ");
})
}
const [Supprimer_Catalog_Pub_CGV_api, setSupprimer_Catalog_Pub_CGV_api] = useState();
const [Supprimer_Catalog_Pub_CGV_message, setSupprimer_Catalog_Pub_CGV_message] = useState();
const [Supprimer_Catalog_Pub_CGV_result, setSupprimer_Catalog_Pub_CGV_result] = useState();
function Supprimer_Catalog_Pub_CGV() {
var form = new FormData();
const stored_cookie = getCookie('tokenmysypart');
form.append("token", stored_cookie);
form.append("_id", selected_catalog_pub_config_id);
form.append("cgv_pdf", "");
//console.log(" form == ", form);
var myurl = process.env.REACT_APP_API_URL + "myclass/api/Add_Update_Partner_Catalog_Pub_Config/";
setLoading(true);
axios.post(myurl, form).then(res => {
setLoading(false);
//console.log(" In Supprimer_Catalog_Pub_CGV res.data.status = " + res.data.status);
//console.log(" In Supprimer_Catalog_Pub_CGV res.data.message r_class = " + res.data.message);
if (String(res.data.status) === String("true")) {
setSupprimer_Catalog_Pub_CGV_api("true");
setSupprimer_Catalog_Pub_CGV_result(res.data.message);
setcgv_file_name("");
setpdf_cgv_file_pdf("");
Get_Partner_Catalog_Pub_Config();
alert(res.data.message);
}
else {
setSupprimer_Catalog_Pub_CGV_api("false");
setSupprimer_Catalog_Pub_CGV_message(res.data.message);
alert(res.data.message);
}
}).catch((error) => {
setLoading(false);
console.warn('UpdateStagiaireData : Not good man :( Supprimer_Catalog_Pub_CGV = ' + error);
setSupprimer_Catalog_Pub_CGV_api("false");
alert(" Impossible de supprimer le fichier CGV ");
})
}
function Display_CGV_File() {
const downloadLink = document.createElement("a");
const fileName = "file.pdf";
downloadLink.href = p_detail_cgv_file_pdf;
downloadLink.download = fileName;
downloadLink.click();
}
// === CGU
const changeHandler2_cgu = (event) => {
hiddenFileInput_cgu.current.click();
};
const [cgu_file_name, setcgu_file_name] = useState();
const hiddenFileInput_cgu = React.useRef(null);
const [handleSubmission_cgu_api, sethandleSubmission_cgu_api] = useState();
const [handleSubmission_cgu_result, sethandleSubmission_cgu_result] = useState();
const [handleSubmission_cgu_message, sethandleSubmission_cgu_message] = useState();
const handleSubmission_cgu = event => {
const fileUploaded = event.target.files[0];
let file_size = event.target.files[0].size;
let file_type = event.target.files[0].type;
sethandleSubmission_cgu_message("");
sethandleSubmission_cgu_api("");
// console.log("file_size = ", file_size, " file_type = ", file_type, " naturalWidth = ", fileUploaded.naturalWidth);
if (file_size > 1000000) {
alert("Le fichier ne doit pas dépasser un 1 Méga octets");
return;
}
setcgu_file_name(event.target.files[0].name);
reader(event.target.files[0], (err, res) => {
// console.log("#### res === ", res); // Base64 `data:image/...` String result.
setpdf_cgu_file_pdf(res);
});
};
const [pdf_cgu_file_pdf, setpdf_cgu_file_pdf] = useState();
const [Add_Update_Catalog_Pub_CGU_api, setAdd_Update_Catalog_Pub_CGU_api] = useState();
const [Add_Update_Catalog_Pub_CGU_message, setAdd_Update_Catalog_Pub_CGU_message] = useState();
const [Add_Update_Catalog_Pub_CGU_result, setAdd_Update_Catalog_Pub_CGU_result] = useState();
function Add_Update_Catalog_Pub_CGU() {
var form = new FormData();
const stored_cookie = getCookie('tokenmysypart');
form.append("token", stored_cookie);
form.append("_id", selected_catalog_pub_config_id);
form.append("cgu_pdf", pdf_cgu_file_pdf);
//console.log(" form == ", form);
var myurl = process.env.REACT_APP_API_URL + "myclass/api/Add_Update_Partner_Catalog_Pub_Config/";
setLoading(true);
axios.post(myurl, form).then(res => {
setLoading(false);
//console.log(" In Add_Update_Catalog_Pub_CGU res.data.status = " + res.data.status);
//console.log(" In Add_Update_Catalog_Pub_CGU res.data.message r_class = " + res.data.message);
if (String(res.data.status) === String("true")) {
setAdd_Update_Catalog_Pub_CGU_api("true");
setAdd_Update_Catalog_Pub_CGU_result(res.data.message);
setcgv_file_name("");
setpdf_cgu_file_pdf("");
Get_Partner_Catalog_Pub_Config();
alert(res.data.message);
}
else {
setAdd_Update_Catalog_Pub_CGU_api("false");
setAdd_Update_Catalog_Pub_CGU_message(res.data.message);
alert(res.data.message);
}
}).catch((error) => {
setLoading(false);
console.warn('UpdateStagiaireData : Not good man :( Add_Update_Catalog_Pub_CGU = ' + error);
setAdd_Update_Catalog_Pub_CGU_api("false");
alert(" Impossible de supprimer le fichier CGV ");
})
}
const [Supprimer_Catalog_Pub_CGU_api, setSupprimer_Catalog_Pub_CGU_api] = useState();
const [Supprimer_Catalog_Pub_CGU_message, setSupprimer_Catalog_Pub_CGU_message] = useState();
const [Supprimer_Catalog_Pub_CGU_result, setSupprimer_Catalog_Pub_CGU_result] = useState();
function Supprimer_Catalog_Pub_CGU() {
var form = new FormData();
const stored_cookie = getCookie('tokenmysypart');
form.append("token", stored_cookie);
form.append("_id", selected_catalog_pub_config_id);
form.append("cgu_pdf", "");
//console.log(" form == ", form);
var myurl = process.env.REACT_APP_API_URL + "myclass/api/Add_Update_Partner_Catalog_Pub_Config/";
setLoading(true);
axios.post(myurl, form).then(res => {
setLoading(false);
//console.log(" In Supprimer_Catalog_Pub_CGU res.data.status = " + res.data.status);
//console.log(" In Supprimer_Catalog_Pub_CGU res.data.message r_class = " + res.data.message);
if (String(res.data.status) === String("true")) {
setSupprimer_Catalog_Pub_CGU_api("true");
setSupprimer_Catalog_Pub_CGU_result(res.data.message);
setcgv_file_name("");
setpdf_cgu_file_pdf("");
Get_Partner_Catalog_Pub_Config();
alert(res.data.message);
}
else {
setSupprimer_Catalog_Pub_CGU_api("false");
setSupprimer_Catalog_Pub_CGU_message(res.data.message);
alert(res.data.message);
}
}).catch((error) => {
setLoading(false);
console.warn('UpdateStagiaireData : Not good man :( Supprimer_Catalog_Pub_CGU = ' + error);
setSupprimer_Catalog_Pub_CGU_api("false");
alert(" Impossible de supprimer le fichier CGU ");
})
}
function Display_CGU_File() {
const downloadLink = document.createElement("a");
const fileName = "file.pdf";
downloadLink.href = p_detail_cgu_file_pdf;
downloadLink.download = fileName;
downloadLink.click();
}
return ( return (
<div className='updateparnterinfo'> <div className='updateparnterinfo'>
@ -4405,6 +4719,240 @@ function UpdateParnterInfo(props) {
</div> </div>
<hr className="hr_break" />
<div className="titre1"> <b> Footer : Les pièces joints</b> </div>
<div>
<div className="detail_class_submenu_data" style={{ "border": "None", "width": "100%", "float": "left" }}>
<div className="div_row" style={{ "width": "48%", "float": "left" }}>
{p_detail_cgv_file_pdf && <div style={{ "marginBottom": "0.5rem" }}>
<nav style={{ "width": "100%" }}> CGV actuelle(pdf) <AttachFileIcon /> </nav>
<div style={{ "width": "100%" }}>
<nav style={{ "width": "40%", "float": "left", "textAlign": "left", cursor: "pointer", "color": "green", fontSize: "12px" }} onClick={Display_CGV_File} >Télécharger <DownloadingIcon /> </nav> &nbsp;
<Popup
trigger={
<nav style={{ "width": "40%", "float": "left", "textAlign": "left", cursor: "pointer", color: "orangered", fontSize: "12px" }} > Supprimer <CiTrash /> </nav>
}
modal
nested
position="center center"
>
{close => (
<div>
<button className="gest_close" onClick={close}>
&times;
</button>
<div className="gest_header"> MySy Information </div>
<div className="gest_content">
{' '}
En confirmant cette opération, le fichier sera <i><font color="red"> définitivement supprimé</font></i>. <br />
</div>
<div className="gest_actions">
<div style={{ "width": "45%", "float": "left" }}>
<button className="gest_bton_popup" onClick={(event) => {
Supprimer_Catalog_Pub_CGV();
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>
</div>
</div>}
<Button variant="outlined" onClick={changeHandler2_cgv} className="detail_class_submenu" style={{
"background": "#c8cfd5",
"minWidth": "15rem", "color": "black", "width": "auto"
}}
id='menu_import_formation' name='menu_import_formation'>Importer CGV (pdf) &nbsp; <br />
</Button><br />
<nav className="koUpdateData" style={{ "color": "orange" }}>
<Tooltip className="tooltip_css" id="tooltip_2" />
</nav>
{cgv_file_name && <nav className="okUpdateData"><i><AttachFileIcon /> {cgv_file_name}</i></nav>}
<input type="file"
accept=".pdf"
ref={hiddenFileInput_cgv}
style={{ display: 'none' }}
name="liste_formation_file"
onChange={handleSubmission_cgv}
/>
{String(Add_Update_Catalog_Pub_CGV_api) === "true" && <div className="okUpdateData"> La mise à jour a été correctement faite</div>}
{String(Add_Update_Catalog_Pub_CGV_api) === "false" && <div className="koUpdateData"> {Add_Update_Catalog_Pub_CGV_message}</div>}
<br />
{pdf_cgv_file_pdf && <div className="div_row">
<div className="div_row" style={{ "border": "None" }}>
&nbsp;
</div>
{<div className="div_row" style={{ "border": "None", "color": "orange", "textAlign": "center" }}>
<div className="div_row_gauche " style={{ "textAlign": 'left', 'marginLeft': '15px' }}>
<Button variant="contained" className="btn_modif" onClick={"Annule_logo_img"}>Annuler
</Button>
</div>
<div className="div_row_droite" style={{ "textAlign": 'right', 'marginRight': '15px' }}>
<Button variant="contained" className="btn_enreg" onClick={Add_Update_Catalog_Pub_CGV}>Enregistrer
</Button>
</div>
</div>}
<div className="div_row" style={{ "border": "None" }}>
&nbsp;
</div>
</div>}
</div>
<div className="div_row" style={{ "width": "48%", "float": "left" }}>
{p_detail_cgu_file_pdf && <div style={{ "marginBottom": "0.5rem" }}>
<nav style={{ "width": "100%" }}> CGU actuelle(pdf) <AttachFileIcon /> </nav>
<div style={{ "width": "100%" }}>
<nav style={{ "width": "40%", "float": "left", "textAlign": "left", cursor: "pointer", "color": "green", fontSize: "12px" }} onClick={Display_CGU_File} >Télécharger <DownloadingIcon /> </nav> &nbsp;
<Popup
trigger={
<nav style={{ "width": "40%", "float": "left", "textAlign": "left", cursor: "pointer", color: "orangered", fontSize: "12px" }} > Supprimer <CiTrash /> </nav>
}
modal
nested
position="center center"
>
{close => (
<div>
<button className="gest_close" onClick={close}>
&times;
</button>
<div className="gest_header"> MySy Information </div>
<div className="gest_content">
{' '}
En confirmant cette opération, le fichier sera <i><font color="red"> définitivement supprimé</font></i>. <br />
</div>
<div className="gest_actions">
<div style={{ "width": "45%", "float": "left" }}>
<button className="gest_bton_popup" onClick={(event) => {
Supprimer_Catalog_Pub_CGU();
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>
</div>
</div>}
<Button variant="outlined" onClick={changeHandler2_cgu} className="detail_class_submenu" style={{
"background": "#c8cfd5",
"minWidth": "15rem", "color": "black", "width": "auto"
}}
id='menu_import_formation' name='menu_import_formation'>Importer CGU (pdf) &nbsp; <br />
</Button><br />
<nav className="koUpdateData" style={{ "color": "orange" }}>
<Tooltip className="tooltip_css" id="tooltip_2" />
</nav>
{cgu_file_name && <nav className="okUpdateData"><i><AttachFileIcon /> {cgu_file_name}</i></nav>}
<input type="file"
accept=".pdf"
ref={hiddenFileInput_cgu}
style={{ display: 'none' }}
name="liste_formation_file"
onChange={handleSubmission_cgu}
/>
{String(Add_Update_Catalog_Pub_CGU_api) === "true" && <div className="okUpdateData"> La mise à jour a été correctement faite</div>}
{String(Add_Update_Catalog_Pub_CGU_api) === "false" && <div className="koUpdateData"> {Add_Update_Catalog_Pub_CGU_message}</div>}
<br />
{pdf_cgu_file_pdf && <div className="div_row">
<div className="div_row" style={{ "border": "None" }}>
&nbsp;
</div>
{<div className="div_row" style={{ "border": "None", "color": "orange", "textAlign": "center" }}>
<div className="div_row_gauche " style={{ "textAlign": 'left', 'marginLeft': '15px' }}>
<Button variant="contained" className="btn_modif" onClick={"Annule_logo_img"}>Annuler
</Button>
</div>
<div className="div_row_droite" style={{ "textAlign": 'right', 'marginRight': '15px' }}>
<Button variant="contained" className="btn_enreg" onClick={Add_Update_Catalog_Pub_CGU}>Enregistrer
</Button>
</div>
</div>}
<div className="div_row" style={{ "border": "None" }}>
&nbsp;
</div>
</div>}
</div>
</div>
</div>
</div>} </div>}
@ -5039,6 +5587,8 @@ function UpdateParnterInfo(props) {
</div>} </div>}
<div className="div_row"> <div className="div_row">
<div className="div_row22"> <div className="div_row22">
<div className="titre1"> Supppression de compte </div> <div className="titre1"> Supppression de compte </div>

View File

@ -0,0 +1,362 @@
.footer_catalog_pub {
a {
text-decoration: none;
cursor: pointer;
color: white;
}
.social-svg-mask {
fill: white !important;
}
.social-container {
width: 80% !important;
height: 80% !important;
left: 5px !important;
}
.media_sociaux {
text-align: left !important;
}
.SocialIcon {
top: 5px !important;
left: 10px !important;
}
background: rgb(250, 245, 245);
height: 50%;
font-size: 0.8rem !important;
@media only screen and (max-width: 600px) {
.copyright {
font-size: 0.5rem;
}
.SocialIcon {
top: 5px !important;
width: 30px !important;
height: 30px !important;
//left: 10px !important;
}
.Box_div {
padding: 1rem 1rem;
background: #104277;
color: white !important;
bottom: 0;
width: 100%;
min-height: 2rem;
@media (max-width: 601px) {
padding: 3px 3px;
}
}
.Container_div {
display: flex;
flex-direction: column;
justify-content: center;
max-width: 1000px;
margin: 0 auto;
/* background: red; */
}
.Column_div {
display: flex;
flex-direction: column;
text-align: left;
margin-left: 0.8rem;
}
.Row_Div {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
grid-gap: 3%;
@media (max-width: 1000px) {
grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
}
}
.FooterLink_a {
color: white;
margin-bottom: 0.2rem;
font-size: 0.6rem;
text-decoration: none;
cursor: pointer;
&:hover {
color: green;
transition: 200ms ease-in;
}
}
.Heading_p {
font-size: 0.7rem;
color: #81bc3a;
margin-bottom: 0rem;
font-weight: bold;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
}
@media only screen and (min-width: 601px) and (max-width: 991px) {
.copyright {
font-size: 0.6rem;
}
.Box_div {
padding: 1rem 1rem;
background: #104277;
color: white !important;
bottom: 0;
width: 100%;
//min-height: 25rem;
@media (max-width: 601px) {
padding: 2rem 30px;
}
}
.Container_div {
display: flex;
flex-direction: column;
justify-content: center;
max-width: 1000px;
margin: 0 auto;
/* background: red; */
}
.Column_div {
display: flex;
flex-direction: column;
text-align: left;
margin-left: 20px;
}
.Row_Div {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
grid-gap: 15%;
@media (max-width: 1000px) {
grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
}
}
.FooterLink_a {
color: white;
margin-bottom: 0.2rem;
font-size: small;
text-decoration: none;
cursor: pointer;
&:hover {
color: green;
transition: 200ms ease-in;
}
}
.Heading_p {
font-size: 0.85rem;
color: #81bc3a;
margin-bottom: 0.5rem;
font-weight: bold;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.copyright {
font-size: 0.7rem;
}
.Box_div {
padding: 1rem 1rem;
background: #104277;
color: white !important;
bottom: 0;
width: 100%;
//min-height: 20rem;
@media (max-width: 601px) {
padding: 2rem 30px;
}
}
.Container_div {
display: flex;
flex-direction: column;
justify-content: center;
max-width: 1000px;
margin: 0 auto;
/* background: red; */
}
.Column_div {
display: flex;
flex-direction: column;
text-align: left;
margin-left: 20px;
}
.Row_Div {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
grid-gap: 15%;
@media (max-width: 1000px) {
grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
}
}
.FooterLink_a {
color: white;
margin-bottom: 0.2rem;
font-size: small;
text-decoration: none;
cursor: pointer;
&:hover {
color: green;
transition: 200ms ease-in;
}
}
.Heading_p {
font-size: medium;
color: #81bc3a;
margin-bottom: 0.5rem;
font-weight: bold;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
}
@media only screen and (min-width: 1200px) {
.copyright {
font-size: 0.7rem;
}
.Box_div {
padding: 1rem 1rem;
background: #104277;
color: white !important;
bottom: 0;
width: 100%;
//min-height: 20rem;
@media (max-width: 601px) {
padding: 2rem 30px;
}
}
.Container_div {
display: flex;
flex-direction: column;
justify-content: center;
max-width: 1000px;
margin: 0 auto;
/* background: red; */
}
.Column_div {
display: flex;
flex-direction: column;
text-align: left;
margin-left: 20px;
}
.Row_Div {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
grid-gap: 15%;
@media (max-width: 1000px) {
grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
}
}
.FooterLink_a {
color: white;
margin-bottom: 0.2rem;
font-size: small;
text-decoration: none;
cursor: pointer;
&:hover {
color: green;
transition: 200ms ease-in;
}
}
.Heading_p {
font-size: 0.9rem;
color: #81bc3a;
margin-bottom: 0.5rem;
font-weight: bold;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
}
}

View File

@ -68,7 +68,7 @@
text-align: center; text-align: center;
margin-bottom: 0.8rem; margin-bottom: 0.8rem;
color: white; color: white;
cursor: pointer; cursor:unset;
font-style: italic; font-style: italic;
background-color: gray; background-color: gray;
font-weight: normal; font-weight: normal;
@ -308,7 +308,7 @@
text-align: center; text-align: center;
margin-bottom: 0.8rem; margin-bottom: 0.8rem;
color: white; color: white;
cursor: pointer; cursor:unset;
font-style: italic; font-style: italic;
background-color: gray; background-color: gray;
font-weight: normal; font-weight: normal;
@ -543,7 +543,7 @@
text-align: center; text-align: center;
margin-bottom: 0.8rem; margin-bottom: 0.8rem;
color: white; color: white;
cursor: pointer; cursor:unset;
font-style: italic; font-style: italic;
background-color: gray; background-color: gray;
font-weight: normal; font-weight: normal;
@ -778,7 +778,7 @@
font-size: medium; font-size: medium;
text-align: center; text-align: center;
color: white; color: white;
cursor: pointer; cursor:unset;
font-style: italic; font-style: italic;
background-color: gray; background-color: gray;
font-weight: normal; font-weight: normal;

View File

@ -127,3 +127,4 @@
@import "./components/reherche_new_v3"; @import "./components/reherche_new_v3";
@import "./components/displaydetailclass_new_v3"; @import "./components/displaydetailclass_new_v3";
@import "./components/reherche_new_v4"; @import "./components/reherche_new_v4";
@import "./components/footer_catalog_pub";