Skip to content
Snippets Groups Projects

Feat/us555 partners check

Merged Rémi PAILHAREY requested to merge feat/US555-partners-check into dev
All threads resolved!
Files
6
+ 110
0
import React from 'react'
import { convertStringToEditorState } from '../../utils/editorStateManagment'
import CustomEditor from '../Editing/CustomEditor'
import 'react-draft-wysiwyg/dist/react-draft-wysiwyg.css'
import './partnersInfo.scss'
interface PartnersInfoProps {
onSave: () => Promise<void>
onCancel: () => void
message: string
grdf_failure: boolean
enedis_failure: boolean
egl_failure: boolean
notification_activated: boolean
handleEditorChange: (value: string) => void
handleCheckboxChange: (
value: boolean,
type: 'grdf' | 'enedis' | 'egl' | 'activation'
) => void
}
const PartnersInfo: React.FC<PartnersInfoProps> = ({
onSave,
onCancel,
message,
grdf_failure,
enedis_failure,
egl_failure,
notification_activated,
handleEditorChange,
handleCheckboxChange,
}: PartnersInfoProps) => {
return (
<div className="partnersInfo">
<h2>État des services des partenaires</h2>
<div>
<div className="switch_div">
Pop-up active
<input
type="checkbox"
id="switch_notification"
onChange={(event) => {
handleCheckboxChange(event.currentTarget.checked, 'activation')
}}
checked={notification_activated}
/>
<label htmlFor="switch_notification"></label>
</div>
<p className="title">Message de la pop-up</p>
<CustomEditor
baseState={convertStringToEditorState(message)}
handleChange={handleEditorChange}
editorType="info"
/>
<p className="title">État des services</p>
<div>
<div className="switch_div">
Panne GRDF
<input
type="checkbox"
id="switch_grdf"
onChange={(event) => {
handleCheckboxChange(event.currentTarget.checked, 'grdf')
}}
checked={grdf_failure}
/>
<label htmlFor="switch_grdf"></label>
</div>
<div className="switch_div">
Panne Enedis
<input
type="checkbox"
id="switch_enedis"
onChange={(event) => {
handleCheckboxChange(event.currentTarget.checked, 'enedis')
}}
checked={enedis_failure}
/>
<label htmlFor="switch_enedis"></label>
</div>
<div className="switch_div">
Panne EGL
<input
type="checkbox"
id="switch_egl"
onChange={(event) => {
handleCheckboxChange(event.currentTarget.checked, 'egl')
}}
checked={egl_failure}
/>
<label htmlFor="switch_egl"></label>
</div>
</div>
<div className="buttons">
<button className="btnCancel" onClick={onCancel}>
Annuler
</button>
<button className="btnValid" onClick={onSave}>
Sauvegarder
</button>
</div>
</div>
</div>
)
}
export default PartnersInfo
Loading