import React, { Component } from 'react'; import { Keyboard, View, Button, Text, StyleSheet, Linking, Image } from 'react-native'; import PopupDialog, { DialogTitle, DialogButton } from 'react-native-popup-dialog'; import DatePicker from 'react-native-datepicker' import moment from 'moment'; import { _ } from 'lib/locale.js'; class SelectDateTimeDialog extends Component { constructor() { super(); this.dialog_ = null; this.shown_ = false; this.state = { date: null }; } UNSAFE_componentWillReceiveProps(newProps) { if (newProps.date != this.state.date) { this.setState({ date: newProps.date }); } if ('shown' in newProps) { this.show(newProps.shown); } } show(doShow = true) { if (doShow) { this.dialog_.show(); } else { this.dialog_.dismiss(); } this.shown_ = doShow; } dismiss() { this.show(false); } dateTimeFormat() { return "MM/DD/YYYY HH:mm"; } stringToDate(s) { return moment(s, this.dateTimeFormat()).toDate(); } onAccept() { if (this.props.onAccept) this.props.onAccept(this.state.date); } onReject() { if (this.props.onReject) this.props.onReject(); } onClear() { if (this.props.onAccept) this.props.onAccept(null); } render() { const clearAlarmText = _("Clear alarm"); // For unknown reasons, this particular string doesn't get translated if it's directly in the text property below const popupActions = [ this.onAccept()} key="saveButton" />, this.onClear()} key="clearButton" />, this.onReject()} key="cancelButton" />, ]; return ( { this.dialog_ = dialog; }} dialogTitle={} actions={popupActions} width={0.9} height={350} > { this.setState({ date: this.stringToDate(date) }); }} style={{width:300}} /> ); } } export { SelectDateTimeDialog };