blob: 1efebb9bf6654c1aafe4a76a088ef67339b60b54 [file] [log] [blame]
// 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 OptionalSettings extends React.Component {
handleIpChange = (event) => {
this.props.onAlterBindAddress(event);
};
handlePortChange = (event) => {
this.props.onAlterPort(event);
};
render() {
return (
<div className="setup-opt-settings">
<p>Bind address the node will listen on</p>
<input
className="setup-input-ip"
value={this.props.ip}
onChange={this.handleIpChange}
placeholder="IP Address"
type="text"/>
<div className="setup-port">
<p>Port that the node will use</p>
<input
className="setup-input-port"
value={this.props.port}
onChange={this.handlePortChange}
type="text"/>
</div>
</div>
);
}
}
OptionalSettings.propTypes = {
ip: PropTypes.string.isRequired,
port: PropTypes.number.isRequired,
onAlterBindAddress: PropTypes.func.isRequired,
onAlterPort: PropTypes.func.isRequired
};