import React from 'react'; import ProgressBar from 'components/ProgressBar'; import { makeGetRequest, makePostRequest } from 'utils/xhr'; import { setUserCookies } from 'utils/cookies'; class ChannelCreateForm extends React.Component { constructor (props) { super(props); this.state = { error : null, channel : '', password: '', status : null, }; this.cleanseChannelInput = this.cleanseChannelInput.bind(this); this.handleChannelInput = this.handleChannelInput.bind(this); this.handleInput = this.handleInput.bind(this); this.updateIsChannelAvailable = this.updateIsChannelAvailable.bind(this); this.checkIsChannelAvailable = this.checkIsChannelAvailable.bind(this); this.checkIsPasswordProvided = this.checkIsPasswordProvided.bind(this); this.makePublishChannelRequest = this.makePublishChannelRequest.bind(this); this.createChannel = this.createChannel.bind(this); } cleanseChannelInput (input) { input = input.replace(/\s+/g, '-'); // replace spaces with dashes input = input.replace(/[^A-Za-z0-9-]/g, ''); // remove all characters that are not A-Z, a-z, 0-9, or '-' return input; } handleChannelInput (event) { let value = event.target.value; value = this.cleanseChannelInput(value); this.setState({channel: value}); if (value) { this.updateIsChannelAvailable(value); } else { this.setState({error: 'Please enter a channel name'}); } console.log('end of handlechannelinput'); } handleInput (event) { const name = event.target.name; const value = event.target.value; this.setState({[name]: value}); } updateIsChannelAvailable (channel) { const that = this; const channelWithAtSymbol = `@${channel}` makeGetRequest(`/api/channel-is-available/${channelWithAtSymbol}`) .then(isAvailable => { if (isAvailable) { that.setState({'error': null}); } else { that.setState({'error': 'That channel has already been claimed'}); } }) .catch((error) => { that.setState({'error': error.message}); }); } checkIsChannelAvailable (channel) { const channelWithAtSymbol = `@${channel}`; return new Promise((resolve, reject) => { makeGetRequest(`/api/channel-is-available/${channelWithAtSymbol}`) .then(isAvailable => { if (!isAvailable) { console.log('channel is not available'); return reject(new Error('That channel has already been claimed')); } console.log('channel is available'); resolve(); }) .catch((error) => { reject(error); }); }); } checkIsPasswordProvided () { const password = this.state.password; return new Promise((resolve, reject) => { if (!password || password.length < 1) { console.log('password not provided'); return reject(new Error('Please provide a password')); } console.log('password provided'); resolve(); }); } makePublishChannelRequest (channel, password) { const params = `username=${channel}&password=${password}`; return new Promise((resolve, reject) => { makePostRequest('/signup', params) .then(result => { return resolve(result); }) .catch(error => { console.log('create channel request failed:', error); reject(new Error('Unfortunately, we encountered an error while creating your channel. Please let us know in Discord!')); }); }); } createChannel (event) { event.preventDefault(); const that = this; this.checkIsPasswordProvided() .then(() => { return that.checkIsChannelAvailable(that.state.channel, that.state.password); }) .then(() => { that.setState({status: 'We are publishing your new channel. Sit tight...'}); return that.makePublishChannelRequest(that.state.channel, that.state.password); }) .then(result => { that.setState({status: null}); setUserCookies(result.channelName, result.shortChannelId, result.channelClaimId); that.props.onChannelLogin(result.channelName, result.shortChannelId, result.channelClaimId); }) .catch((error) => { that.setState({'error': error.message, status: null}); }); } render () { return (
{this.state.status}