dispatch/client/js/components/pages/Connect.js

191 lines
4.8 KiB
JavaScript
Raw Normal View History

import React, { Component } from 'react';
2018-04-25 03:36:27 +00:00
import { createSelector } from 'reselect';
2018-05-16 03:02:48 +00:00
import { Form, withFormik } from 'formik';
import Navicon from 'containers/Navicon';
import Button from 'components/ui/Button';
2018-10-15 06:56:17 +00:00
import Checkbox from 'components/ui/formik/Checkbox';
2018-05-16 03:02:48 +00:00
import TextInput from 'components/ui/TextInput';
2018-10-06 06:46:28 +00:00
import Error from 'components/ui/formik/Error';
2018-05-18 01:39:40 +00:00
import { isValidNick, isValidChannel, isValidUsername, isInt } from 'utils';
2018-04-25 03:36:27 +00:00
const getSortedDefaultChannels = createSelector(
defaults => defaults.channels,
2018-05-16 03:02:48 +00:00
channels => channels.split(',').sort()
2018-04-25 03:36:27 +00:00
);
2018-05-16 03:02:48 +00:00
class Connect extends Component {
state = {
2018-05-16 03:02:48 +00:00
showOptionals: false
};
2018-05-16 03:02:48 +00:00
handleSSLChange = e => {
const { values, setFieldValue } = this.props;
2018-05-25 02:12:02 +00:00
if (e.target.checked && values.port === 6667) {
setFieldValue('port', 6697, false);
} else if (!e.target.checked && values.port === 6697) {
setFieldValue('port', 6667, false);
}
};
handleShowClick = () => {
this.setState(prevState => ({ showOptionals: !prevState.showOptionals }));
};
renderOptionals = () => {
const { hexIP } = this.props;
return (
<div>
{!hexIP && <TextInput name="username" />}
<TextInput name="password" type="password" />
<TextInput name="realname" />
</div>
);
};
2018-05-25 02:12:02 +00:00
render() {
2018-05-25 02:12:02 +00:00
const { defaults, values } = this.props;
2018-08-10 19:35:37 +00:00
const { readOnly, showDetails } = defaults;
let form;
2018-08-10 19:35:37 +00:00
if (readOnly) {
form = (
2018-05-16 03:02:48 +00:00
<Form className="connect-form">
<h1>Connect</h1>
2018-05-16 03:02:48 +00:00
{showDetails && (
<div className="connect-details">
2018-05-16 03:02:48 +00:00
<h2>
{values.host}:{values.port}
</h2>
{getSortedDefaultChannels(values).map(channel => (
2018-04-25 03:36:27 +00:00
<p>{channel}</p>
))}
</div>
)}
<TextInput name="nick" />
<Button type="submit">Connect</Button>
2018-05-16 03:02:48 +00:00
</Form>
);
} else {
form = (
2018-05-16 03:02:48 +00:00
<Form className="connect-form">
<h1>Connect</h1>
<TextInput name="name" autoCapitalize="words" />
2018-05-16 03:02:48 +00:00
<div className="connect-form-address">
<TextInput name="host" noError />
<TextInput name="port" type="number" noError />
2018-10-15 06:56:17 +00:00
<Checkbox
name="tls"
label="SSL"
topLabel
onChange={this.handleSSLChange}
/>
2018-05-16 03:02:48 +00:00
</div>
2018-10-06 06:46:28 +00:00
<Error name="host" />
<Error name="port" />
<TextInput name="nick" />
<TextInput name="channels" />
2018-05-16 03:02:48 +00:00
{this.state.showOptionals && this.renderOptionals()}
<i className="icon-ellipsis" onClick={this.handleShowClick} />
<Button type="submit">Connect</Button>
2018-05-16 03:02:48 +00:00
</Form>
);
}
return (
<div className="connect">
<Navicon />
{form}
</div>
);
}
}
2018-05-16 03:02:48 +00:00
export default withFormik({
2018-11-06 10:13:32 +00:00
enableReinitialize: true,
mapPropsToValues: ({ defaults }) => {
2018-05-25 02:12:02 +00:00
let port = 6667;
if (defaults.port) {
2018-05-25 02:12:02 +00:00
({ port } = defaults);
} else if (defaults.ssl) {
2018-05-25 02:12:02 +00:00
port = 6697;
}
return {
name: defaults.name,
host: defaults.host,
port,
nick: '',
channels: defaults.channels.join(','),
username: '',
password: defaults.password ? ' ' : '',
realname: '',
tls: defaults.ssl
};
},
2018-05-16 03:02:48 +00:00
validate: values => {
Object.keys(values).forEach(k => {
if (typeof values[k] === 'string') {
values[k] = values[k].trim();
}
});
const errors = {};
if (!values.host) {
errors.host = 'Host is required';
} else if (values.host.indexOf('.') < 1) {
errors.host = 'Invalid host';
}
if (!values.port) {
2018-05-25 02:12:02 +00:00
values.port = values.tls ? 6697 : 6667;
2018-05-18 01:39:40 +00:00
} else if (!isInt(values.port, 1, 65535)) {
2018-05-16 03:02:48 +00:00
errors.port = 'Invalid port';
}
if (!values.nick) {
errors.nick = 'Nick is required';
} else if (!isValidNick(values.nick)) {
errors.nick = 'Invalid nick';
}
if (values.username && !isValidUsername(values.username)) {
errors.username = 'Invalid username';
}
values.channels = values.channels
.split(',')
.map(channel => {
channel = channel.trim();
if (channel) {
if (isValidChannel(channel, false)) {
if (channel[0] !== '#') {
channel = `#${channel}`;
}
} else {
errors.channels = 'Invalid channel(s)';
}
}
return channel;
})
.filter(s => s)
.join(',');
return errors;
},
handleSubmit: (values, { props }) => {
const { connect, select, join } = props;
const channels = values.channels.split(',');
delete values.channels;
2018-05-25 02:12:02 +00:00
values.port = `${values.port}`;
2018-05-16 03:02:48 +00:00
connect(values);
select(values.host);
if (channels.length > 0) {
join(channels, values.host);
}
}
})(Connect);