Added hability to create servers

This commit is contained in:
Alejandro Celaya
2018-07-16 18:48:50 +02:00
parent be30d62f6f
commit 22406d1253
3 changed files with 18 additions and 13 deletions

View File

@@ -1,6 +1,8 @@
import { assoc } from 'ramda';
import React from 'react';
import { connect } from 'react-redux';
import { createServer } from './reducers/server';
import { v4 as uuid } from 'uuid';
import './CreateServer.scss';
@@ -14,7 +16,9 @@ export class CreateServer extends React.Component {
render() {
const submit = e => {
e.preventDefault();
this.props.createServer(this.state);
const server = assoc('id', uuid(), this.state);
this.props.createServer(server);
this.props.history.push(`/server/${server.id}/list-short-urls/1`)
};
const renderInputGroup = (id, placeholder, type = 'text') =>
<div className="form-group row">
@@ -48,4 +52,4 @@ export class CreateServer extends React.Component {
}
}
export default connect(null, { createServer })(CreateServer);
export default connect(state => ({ selectedServer: state.selectedServer }), { createServer })(CreateServer);