import calendarIcon from '@fortawesome/fontawesome-free-regular/faCalendarAlt'; import downIcon from '@fortawesome/fontawesome-free-solid/faAngleDoubleDown'; import upIcon from '@fortawesome/fontawesome-free-solid/faAngleDoubleUp'; import FontAwesomeIcon from '@fortawesome/react-fontawesome'; import { assoc, dissoc, isNil, pick, pipe, pluck, replace } from 'ramda'; import React from 'react'; import DatePicker from 'react-datepicker'; import { connect } from 'react-redux'; import ReactTags from 'react-tag-autocomplete'; import { Collapse } from 'reactstrap'; import '../../node_modules/react-datepicker/dist/react-datepicker.css'; import './CreateShortUrl.scss'; import CreateShortUrlResult from './helpers/CreateShortUrlResult'; import { createShortUrl, resetCreateShortUrl } from './reducers/shortUrlCreationResult'; export class CreateShortUrl extends React.Component { state = { longUrl: '', tags: [], customSlug: undefined, validSince: undefined, validUntil: undefined, maxVisits: undefined, moreOptionsVisible: false }; render() { const { createShortUrl, shortUrlCreationResult, resetCreateShortUrl } = this.props; const addTag = tag => this.setState({ tags: [].concat(this.state.tags, assoc('name', replace(/ /g, '-', tag.name), tag)) }); const removeTag = i => { const tags = this.state.tags.slice(0); tags.splice(i, 1); this.setState({ tags }); }; const renderOptionalInput = (id, placeholder, type = 'text', props = {}) => this.setState({ [id]: e.target.value })} {...props} />; const createDateInput = (id, placeholder, props = {}) => this.setState({ [id]: date })} dateFormat="YYYY-MM-DD" readOnly {...props} />; const formatDate = date => isNil(date) ? date : date.format(); const save = e => { e.preventDefault(); createShortUrl(pipe( dissoc('moreOptionsVisible'), // Remove moreOptionsVisible property assoc('tags', pluck('name', this.state.tags)), // Map tags array to use only their names assoc('validSince', formatDate(this.state.validSince)), assoc('validUntil', formatDate(this.state.validUntil)) )(this.state)); }; return (
this.setState({ longUrl: e.target.value })} />
{renderOptionalInput('customSlug', 'Custom slug')}
{renderOptionalInput('maxVisits', 'Maximum number of visits allowed', 'number', { min: 1 })}
{createDateInput('validSince', 'Enabled since...', { maxDate: this.state.validUntil })}
{createDateInput('validUntil', 'Enabled until...', { minDate: this.state.validSince })}
); } } export default connect(pick(['shortUrlCreationResult']), { createShortUrl, resetCreateShortUrl })(CreateShortUrl);