summaryrefslogtreecommitdiffstats
path: root/front/odiparpack/app/containers/Pages/Calendar/index.js
blob: fd5f4127ddeef1725cdee413070da85b3ce5e525 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import React from 'react';
import PropTypes from 'prop-types';
import { withStyles } from '@material-ui/core/styles';
import events from 'ba-api/eventData';
import { bindActionCreators } from 'redux';
import { connect } from 'react-redux';
import { Helmet } from 'react-helmet';
import brand from 'ba-api/brand';
import 'ba-styles/vendors/react-big-calendar/react-big-calendar.css';
import { EventCalendar, DetailEvent, AddEvent, Notification } from 'ba-components';
import {
  fetchAction,
  addAction,
  discardAction,
  submitAction,
  deleteAction,
  closeNotifAction
} from 'ba-actions/CalendarEventActions';

const styles = {
  root: {
    display: 'block'
  }
};

class Calendar extends React.Component {
  state = {
    anchorEl: false,
    event: null,
    anchorPos: { top: 0, left: 0 }
  };

  componentDidMount() {
    this.props.fetchEventsData(events);
  }

  handleClick = event => {
    setTimeout(() => {
      const target = document.getElementsByClassName('rbc-selected')[0];
      const targetBounding = target.getBoundingClientRect();
      this.setState({
        event,
        anchorEl: true,
        anchorPos: { top: targetBounding.top, left: targetBounding.left }
      });
    }, 200);
  };

  handleClose = () => {
    this.setState({
      anchorEl: false,
    });
  };

  render() {
    const title = brand.name + ' - Calendar';
    const description = brand.desc;
    const { anchorEl, anchorPos, event } = this.state;
    const {
      classes,
      eventData,
      openFrm,
      addEvent,
      discardEvent,
      submit,
      remove,
      closeNotif,
      messageNotif
    } = this.props;
    return (
      <div>
        <Helmet>
          <title>{title}</title>
          <meta name="description" content={description} />
          <meta property="og:title" content={title} />
          <meta property="og:description" content={description} />
          <meta property="twitter:title" content={title} />
          <meta property="twitter:description" content={description} />
        </Helmet>
        <Notification close={() => closeNotif()} message={messageNotif} />
        <div className={classes.root}>
          <EventCalendar events={eventData.toJS()} handleEventClick={this.handleClick} />
          <DetailEvent
            event={event}
            anchorEl={anchorEl}
            anchorPos={anchorPos}
            close={this.handleClose}
            remove={remove}
          />
          <AddEvent
            openForm={openFrm}
            addEvent={addEvent}
            closeForm={discardEvent}
            submit={submit}
          />
        </div>
      </div>
    );
  }
}

Calendar.propTypes = {
  classes: PropTypes.object.isRequired,
  eventData: PropTypes.object.isRequired,
  fetchEventsData: PropTypes.func.isRequired,
  addEvent: PropTypes.func.isRequired,
  submit: PropTypes.func.isRequired,
  discardEvent: PropTypes.func.isRequired,
  remove: PropTypes.func.isRequired,
  openFrm: PropTypes.bool.isRequired,
  closeNotif: PropTypes.func.isRequired,
  messageNotif: PropTypes.string.isRequired,
};

const reducer = 'calendar';
const mapStateToProps = state => ({
  force: state, // force state from reducer
  eventData: state.getIn([reducer, 'events']),
  openFrm: state.getIn([reducer, 'openFrm']),
  messageNotif: state.getIn([reducer, 'notifMsg']),
});

const constDispatchToProps = dispatch => ({
  fetchEventsData: bindActionCreators(fetchAction, dispatch),
  submit: bindActionCreators(submitAction, dispatch),
  remove: bindActionCreators(deleteAction, dispatch),
  addEvent: () => dispatch(addAction),
  discardEvent: () => dispatch(discardAction),
  closeNotif: () => dispatch(closeNotifAction),
});

const CalendarMapped = connect(
  mapStateToProps,
  constDispatchToProps
)(Calendar);

export default withStyles(styles)(CalendarMapped);