import React from 'react'; import { updateClaim } from '../actions'; import { connect } from 'react-redux'; import { makeGetRequest } from '../utils/xhr.js'; import UrlMiddle from './UrlMiddle.jsx'; class UrlChooser extends React.Component { constructor (props) { super(props); this.state = { error : null, host : 'spee.ch', urlMiddle: null, }; this.handleInput = this.handleInput.bind(this); this.cleanseInput = this.cleanseInput.bind(this); this.setClaimNameFromFileName = this.setClaimNameFromFileName.bind(this); this.checkClaimIsAvailable = this.checkClaimIsAvailable.bind(this); } componentWillMount () { if (!this.props.claim || this.props.claim === '') { this.setClaimNameFromFileName(); } } handleInput (event) { event.preventDefault(); let value = event.target.value; value = this.cleanseInput(value); // update the state this.props.onClaimChange(value); // check to make sure claim name is available this.checkClaimIsAvailable(value); } cleanseInput (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; } setClaimNameFromFileName () { const fileName = this.props.fileName; console.log('setClaimNameFromFileName', fileName); const fileNameWithoutEnding = fileName.substring(0, fileName.lastIndexOf('.')); const cleanClaimName = this.cleanseInput(fileNameWithoutEnding); this.props.onClaimChange(cleanClaimName); } checkClaimIsAvailable (claim) { const that = this; makeGetRequest(`/api/claim-is-available/${claim}`) .then(() => { that.setState({'error': null}); }) .catch((error) => { that.setState({'error': error.message}); }); } render () { return (
{this.state.error}