| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- /*
- Copyright (C) 2017 Cloudbase Solutions SRL
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as
- published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- // @flow
- import React from 'react'
- import { observer } from 'mobx-react'
- import styled, { injectGlobal } from 'styled-components'
- import Datetime from 'react-datetime'
- import moment from 'moment'
- import DropdownButton from '../../atoms/DropdownButton'
- import DomUtils from '../../../utils/DomUtils'
- import DateUtils from '../../../utils/DateUtils'
- import StyleProps from '../../styleUtils/StyleProps'
- import style from './style.js'
- require('moment/locale/en-gb')
- injectGlobal`${style}`
- const Wrapper = styled.div`
- position: relative;
- width: ${StyleProps.inputSizes.regular.width}px;
- `
- const DropdownButtonStyled = styled(DropdownButton)`
- font-size: 12px;
- `
- const DatetimeStyled = styled(Datetime)`
- position: absolute;
- right: -11px;
- top: 49px;
- z-index: 10;
- .rdtPicker {
- display: ${props => props.open ? 'block' : 'none'};
- }
- `
- type Props = {
- value: ?Date,
- onChange: (date: Date) => void,
- isValidDate: (currentDate: Date, selectedDate: Date) => boolean,
- timezone: 'utc' | 'local',
- useBold?: boolean,
- }
- type State = {
- showPicker: boolean,
- date: ?moment$Moment,
- }
- @observer
- class DatetimePicker extends React.Component<Props, State> {
- itemMouseDown: boolean
- constructor() {
- super()
- this.state = {
- showPicker: false,
- date: null,
- }
- const self: any = this
- self.handlePageClick = this.handlePageClick.bind(this)
- }
- componentWillMount() {
- if (this.props.value) {
- this.setState({ date: moment(this.props.value) })
- }
- }
- componentDidMount() {
- window.addEventListener('mousedown', this.handlePageClick, false)
- }
- componentWillUnmount() {
- window.removeEventListener('mousedown', this.handlePageClick, false)
- }
- isValidDate(currentDate: Date, selectedDate: Date): boolean {
- if (!this.props.isValidDate) {
- return true
- }
- return this.props.isValidDate(currentDate, selectedDate)
- }
- handlePageClick(e: Event) {
- let path = DomUtils.getEventPath(e)
- if (!this.itemMouseDown && !path.find(n => n.className === 'rdtPicker')) {
- if (this.state.date && this.state.showPicker) {
- this.props.onChange(this.state.date.toDate())
- }
- this.setState({ showPicker: false })
- }
- }
- handleDropdownClick() {
- if (this.state.showPicker && this.state.date) {
- this.props.onChange(this.state.date.toDate())
- }
- this.setState({ showPicker: !this.state.showPicker })
- }
- handleChange(newDate: Date) {
- let date = moment(newDate)
- if (this.props.timezone === 'utc') {
- date = DateUtils.getLocalTime(newDate)
- }
- this.setState({ date })
- }
- render() {
- let timezoneDate = this.state.date
- if (this.props.timezone === 'utc' && timezoneDate) {
- timezoneDate = DateUtils.getUtcTime(timezoneDate)
- }
- return (
- <Wrapper>
- <DropdownButtonStyled
- width={176}
- value={(timezoneDate && moment(timezoneDate).format('DD/MM/YYYY hh:mm A')) || '-'}
- centered
- useBold={this.props.useBold}
- onClick={() => { this.handleDropdownClick() }}
- onMouseDown={() => { this.itemMouseDown = true }}
- onMouseUp={() => { this.itemMouseDown = false }}
- />
- <DatetimeStyled
- input={false}
- value={timezoneDate}
- open={this.state.showPicker}
- onChange={date => { this.handleChange(date) }}
- dateFormat="DD/MM/YYYY"
- timeFormat="hh:mm A"
- locale="en-gb"
- isValidDate={(currentDate, selectedDate) => this.isValidDate(currentDate, selectedDate)}
- />
- </Wrapper>
- )
- }
- }
- export default DatetimePicker
|