2019-01-20 07:11:20 +03:00
|
|
|
/*
|
|
|
|
Copyright 2019 New Vector 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 from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
|
|
|
|
export default class Field extends React.PureComponent {
|
|
|
|
static propTypes = {
|
2019-01-20 07:29:57 +03:00
|
|
|
// The field's ID, which binds the input and label together.
|
2019-01-20 07:11:20 +03:00
|
|
|
id: PropTypes.string.isRequired,
|
|
|
|
// The field's <input> type. Defaults to "text".
|
|
|
|
type: PropTypes.string,
|
|
|
|
// The field's label string.
|
|
|
|
label: PropTypes.string,
|
2019-01-25 05:36:23 +03:00
|
|
|
// The field's placeholder string. Defaults to the label.
|
2019-01-20 07:11:20 +03:00
|
|
|
placeholder: PropTypes.string,
|
2019-01-23 05:25:09 +03:00
|
|
|
// The type of field to create. Defaults to "input". Should be "input" or "select".
|
|
|
|
// To define options for a select, use <Field><option ... /></Field>
|
|
|
|
element: PropTypes.string,
|
2019-01-20 07:11:20 +03:00
|
|
|
// All other props pass through to the <input>.
|
2019-01-22 23:09:40 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
get value() {
|
|
|
|
if (!this.refs.fieldInput) return null;
|
|
|
|
return this.refs.fieldInput.value;
|
2019-01-20 07:11:20 +03:00
|
|
|
}
|
|
|
|
|
2019-01-23 01:18:14 +03:00
|
|
|
set value(newValue) {
|
|
|
|
if (!this.refs.fieldInput) {
|
|
|
|
throw new Error("No field input reference");
|
|
|
|
}
|
|
|
|
this.refs.fieldInput.value = newValue;
|
|
|
|
}
|
|
|
|
|
2019-01-20 07:11:20 +03:00
|
|
|
render() {
|
|
|
|
const extraProps = Object.assign({}, this.props);
|
|
|
|
|
2019-01-23 06:03:59 +03:00
|
|
|
// Remove explicit properties that shouldn't be copied
|
2019-01-23 05:25:09 +03:00
|
|
|
delete extraProps.element;
|
2019-01-23 06:03:59 +03:00
|
|
|
delete extraProps.children;
|
|
|
|
|
|
|
|
// Set some defaults for the element
|
|
|
|
extraProps.type = extraProps.type || "text";
|
2019-01-23 19:29:44 +03:00
|
|
|
extraProps.ref = "fieldInput";
|
2019-01-25 05:36:23 +03:00
|
|
|
extraProps.placeholder = extraProps.placeholder || extraProps.label;
|
2019-01-23 05:25:09 +03:00
|
|
|
|
|
|
|
const element = this.props.element || "input";
|
|
|
|
const fieldInput = React.createElement(element, extraProps, this.props.children);
|
2019-01-20 07:11:20 +03:00
|
|
|
|
2019-01-31 01:40:53 +03:00
|
|
|
return <div className={`mx_Field mx_Field_${element}`}>
|
2019-01-23 05:25:09 +03:00
|
|
|
{fieldInput}
|
2019-01-20 07:11:20 +03:00
|
|
|
<label htmlFor={this.props.id}>{this.props.label}</label>
|
|
|
|
</div>;
|
|
|
|
}
|
|
|
|
}
|