/* Copyright 2015, 2016 OpenMarket Ltd Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import React, {createRef} from 'react'; import PropTypes from 'prop-types'; import * as sdk from '../../../index'; import Field from "../elements/Field"; export default class TextInputDialog extends React.Component { static propTypes = { title: PropTypes.string, description: PropTypes.oneOfType([ PropTypes.element, PropTypes.string, ]), value: PropTypes.string, placeholder: PropTypes.string, button: PropTypes.string, focus: PropTypes.bool, onFinished: PropTypes.func.isRequired, hasCancel: PropTypes.bool, validator: PropTypes.func, // result of withValidation fixedWidth: PropTypes.bool, }; static defaultProps = { title: "", value: "", description: "", focus: true, hasCancel: true, }; constructor(props) { super(props); this._field = createRef(); this.state = { value: this.props.value, valid: false, }; } componentDidMount() { if (this.props.focus) { // Set the cursor at the end of the text input // this._field.current.value = this.props.value; this._field.current.focus(); } } onOk = async ev => { ev.preventDefault(); if (this.props.validator) { await this._field.current.validate({ allowEmpty: false }); if (!this._field.current.state.valid) { this._field.current.focus(); this._field.current.validate({ allowEmpty: false, focused: true }); return; } } this.props.onFinished(true, this.state.value); }; onCancel = () => { this.props.onFinished(false); }; onChange = ev => { this.setState({ value: ev.target.value, }); }; onValidate = async fieldState => { const result = await this.props.validator(fieldState); this.setState({ valid: result.valid, }); return result; }; render() { const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog'); const DialogButtons = sdk.getComponent('views.elements.DialogButtons'); return (
); } }