blob: ef1f5a5bb36221240f23024cb9939d1d95f18405 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
import React from 'react';
import PropTypes from 'prop-types';
import { withStyles } from '@material-ui/core/styles';
import Add from '@material-ui/icons/Add';
import { Fab, Tooltip } from '@material-ui/core';
import FloatingPanel from '../Panel/FloatingPanel';
import AddEventForm from './AddEventForm';
import styles from './calendar-jss.js';
class AddEvent extends React.Component {
showResult(values) {
setTimeout(() => {
this.props.submit(values);
}, 500); // simulate server latency
}
render() {
const {
classes,
openForm,
closeForm,
addEvent
} = this.props;
const branch = '';
return (
<div>
<Tooltip title="Add New Event">
<Fab color="secondary" onClick={() => addEvent()} className={classes.addBtn}>
<Add />
</Fab>
</Tooltip>
<FloatingPanel title="Add New Event" openForm={openForm} branch={branch} closeForm={() => closeForm()}>
<AddEventForm onSubmit={(values) => this.showResult(values)} />
</FloatingPanel>
</div>
);
}
}
AddEvent.propTypes = {
classes: PropTypes.object.isRequired,
openForm: PropTypes.bool.isRequired,
addEvent: PropTypes.func.isRequired,
closeForm: PropTypes.func.isRequired,
submit: PropTypes.func.isRequired,
};
export default withStyles(styles)(AddEvent);
|