/** @babel */ import Rx from 'rx-lite' import React, {Component, PropTypes} from 'react' import {Actions, DateUtils, Message, DatabaseStore} from 'nylas-exports' import {RetinaImg} from 'nylas-component-kit' import SendLaterPopover from './send-later-popover' import SendLaterActions from './send-later-actions' import {PLUGIN_ID} from './send-later-constants' class SendLaterButton extends Component { static displayName = 'SendLaterButton'; static propTypes = { draftClientId: PropTypes.string.isRequired, }; constructor() { super() this.state = { scheduledDate: null, } } componentDidMount() { this._subscription = Rx.Observable.fromQuery( DatabaseStore.findBy(Message, {clientId: this.props.draftClientId}) ).subscribe(this.onMessageChanged); } componentWillUnmount() { this._subscription.dispose(); } onSendLater = (formattedDate, dateLabel)=> { SendLaterActions.sendLater(this.props.draftClientId, formattedDate, dateLabel); this.setState({scheduledDate: 'saving'}); Actions.closePopover() }; onCancelSendLater = ()=> { SendLaterActions.cancelSendLater(this.props.draftClientId); Actions.closePopover() }; onClick = ()=> { const buttonRect = React.findDOMNode(this).getBoundingClientRect() Actions.openPopover( , {originRect: buttonRect, direction: 'up'} ) }; onMessageChanged = (message)=> { if (!message) return; const messageMetadata = message.metadataForPluginId(PLUGIN_ID) || {} const nextScheduledDate = messageMetadata.sendLaterDate if (nextScheduledDate !== this.state.scheduledDate) { const isComposer = NylasEnv.isComposerWindow() const isFinishedSelecting = ((this.state.scheduledDate === 'saving') && (nextScheduledDate !== null)); if (isComposer && isFinishedSelecting) { NylasEnv.close(); } this.setState({scheduledDate: nextScheduledDate}); } }; render() { const {scheduledDate} = this.state; let className = 'btn btn-toolbar btn-send-later'; if (scheduledDate === 'saving') { return ( ); } let dateInterpretation; if (scheduledDate) { className += ' btn-enabled'; const momentDate = DateUtils.futureDateFromString(scheduledDate); if (momentDate) { dateInterpretation = Sending in {momentDate.fromNow(true)}; } } return ( ); } } SendLaterButton.containerStyles = { order: -99, }; export default SendLaterButton;