Skip to content
Snippets Groups Projects
Commit 6d216eed authored by Damien's avatar Damien
Browse files

Change calendrier

parent 948a089a
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,7 @@ class FormToucan extends Component {
}
onDateChange = (event,{value}) =>{
let [day,month,year] = value.split("-")
let [year,month,day] = value.split("-")
this.setState({dateShown: value, date: new Date(Date.UTC(year,month-1,day,0,0,0))});
}
......@@ -70,7 +70,7 @@ class FormToucan extends Component {
body: form
})
.then((response) => {
if (response.ok) {
if (response.ok) { // Si la réponse est bonne on reload tout simplement
window.location.reload()
} else {
try {
......@@ -101,7 +101,6 @@ class FormToucan extends Component {
<Form error={formError} onSubmit={this.onSubmit} >
<Form.Group style={{margin:"auto"}}>
<Form.Input
style={{height:"inherit"}}
type="text"
label="Thème Toucan"
placeholder="Thème"
......@@ -112,12 +111,20 @@ class FormToucan extends Component {
required
/>
<DateInput
{/*<DateInput
style={{width:"10em",}}
pickerStyle={{active:{backgroundColor:"red"}}}
hideMobileKeyboard
label="Date"
localization="fr"
name="datheu"
onChange={this.onDateChange}
value={this.state.dateShown}
required
/>*/}
<Form.Input
type="date"
label="Date"
name="date"
onChange={this.onDateChange}
value={this.state.dateShown}
......@@ -128,12 +135,12 @@ class FormToucan extends Component {
<Form.Input
label="PDF du Toucan"
onChange={this.onFileChange}
style={{width:"20em"}}
name="toucan"
accept="application/pdf"
type="file"
required
/>
<Form.Input
label="Cover du Toucan"
onChange={this.onFileChange}
......@@ -151,7 +158,6 @@ class FormToucan extends Component {
</ul>
} />
</Form>
{console.log(this.state.responseMessage)}
{this.state.responseMessage ?
<Message negative header="Erreur Serveur" content={this.state.responseMessage}></Message>: null}
</div>
......
......@@ -24,7 +24,7 @@ class ToucanTable extends Component{
render() {
return(
<Table celled padded collapsing size="small" textAlign="center">
<Table style={{margin:"auto"}} celled padded collapsing size="small" textAlign="center">
<Table.Header>
<Table.Row>
<Table.HeaderCell>Cover</Table.HeaderCell>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment