From 546d7af0764918fa3854cff57add9a75c58daa1e Mon Sep 17 00:00:00 2001 From: Anthony Laibe Date: Tue, 7 Aug 2018 11:48:27 +0100 Subject: [PATCH] Adding Console command --- embark-ui/src/actions/index.js | 7 ++ embark-ui/src/api/index.js | 14 ++++ embark-ui/src/components/Console.js | 80 ++++++++++++++++------- embark-ui/src/components/Processes.js | 2 +- embark-ui/src/containers/HomeContainer.js | 13 ++-- embark-ui/src/general.css | 4 ++ embark-ui/src/reducers/commandsReducer.js | 14 ++++ embark-ui/src/reducers/index.js | 4 +- embark-ui/src/sagas/index.js | 30 +++++---- 9 files changed, 127 insertions(+), 41 deletions(-) create mode 100644 embark-ui/src/reducers/commandsReducer.js diff --git a/embark-ui/src/actions/index.js b/embark-ui/src/actions/index.js index 1e04de3d..ea838405 100644 --- a/embark-ui/src/actions/index.js +++ b/embark-ui/src/actions/index.js @@ -63,6 +63,13 @@ export const processes = { failure: (error) => action(PROCESSES[FAILURE], {error}) }; +export const COMMANDS = createRequestTypes('COMMANDS'); +export const commands = { + post: (command) => action(COMMANDS[REQUEST], {command}), + success: (result) => action(COMMANDS[SUCCESS], {result}), + failure: (error) => action(COMMANDS[FAILURE], {error}) +}; + // Process logs export const FETCH_PROCESS_LOGS = 'FETCH_PROCESS_LOGS'; export const RECEIVE_PROCESS_LOGS = 'RECEIVE_PROCESS_LOGS'; diff --git a/embark-ui/src/api/index.js b/embark-ui/src/api/index.js index bb67fc93..0c807928 100644 --- a/embark-ui/src/api/index.js +++ b/embark-ui/src/api/index.js @@ -11,6 +11,20 @@ function get(path, params) { }); } +function post(path, params) { + return axios.post(constants.httpEndpoint + path, params) + .then((response) => { + return {response}; + }) + .catch((error) => { + return {response: null, error: error.message || 'Something bad happened'}; + }); +} + +export function postCommand(payload) { + return post('/command', payload); +} + export function fetchAccounts() { return get('/blockchain/accounts'); } diff --git a/embark-ui/src/components/Console.js b/embark-ui/src/components/Console.js index 12460ac0..b77ba4b3 100644 --- a/embark-ui/src/components/Console.js +++ b/embark-ui/src/components/Console.js @@ -1,27 +1,61 @@ -import React from 'react'; -import {Grid, Card} from 'tabler-react'; +import PropTypes from "prop-types"; +import React, {Component} from 'react'; +import {Grid, Card, Form} from 'tabler-react'; -const Console = () => ( - - - - - Console - - -
-

Welcome!

-
-
-
- -
-
-
-
-
-
+const CommandResult = ({result}) => ( +

{result}

); +CommandResult.propTypes = { + result: PropTypes.string +}; + +class Console extends Component { + constructor(props) { + super(props); + this.state = {value: ''}; + } + + handleSubmit(event) { + event.preventDefault(); + this.props.postCommand(this.state.value); + this.setState({value: ''}); + } + + handleChange(event) { + this.setState({value: event.target.value}); + } + + render() { + return ( + + + + + Embark console + + +
+ {this.props.commandResults && + this.props.commandResults.map((result) => )} +
+
this.handleSubmit(event)}> + this.handleChange(event)} + name="command" + placeholder="Type a command (e.g help)" /> + +
+
+
+
+ ); + } +} + +Console.propTypes = { + postCommand: PropTypes.func, + commandResults: PropTypes.arrayOf(PropTypes.string) +}; + export default Console; diff --git a/embark-ui/src/components/Processes.js b/embark-ui/src/components/Processes.js index 56338ca0..aadc0e7b 100644 --- a/embark-ui/src/components/Processes.js +++ b/embark-ui/src/components/Processes.js @@ -38,7 +38,7 @@ const Processes = ({processes}) => ( ); Processes.propTypes = { - processes: PropTypes.object, + processes: PropTypes.object }; export default Processes; diff --git a/embark-ui/src/containers/HomeContainer.js b/embark-ui/src/containers/HomeContainer.js index f5cb2c15..246ea512 100644 --- a/embark-ui/src/containers/HomeContainer.js +++ b/embark-ui/src/containers/HomeContainer.js @@ -2,6 +2,7 @@ import PropTypes from "prop-types"; import React, {Component} from 'react'; import {connect} from 'react-redux'; import {Page} from "tabler-react"; +import {commands as commandsAction} from "../actions"; import Processes from '../components/Processes'; import Console from '../components/Console'; @@ -12,21 +13,25 @@ class HomeContainer extends Component { Dashboard {this.props.processes.data && } - + ); } } HomeContainer.propTypes = { - processes: PropTypes.object + processes: PropTypes.object, + postCommand: PropTypes.func, + commandResults: PropTypes.arrayOf(PropTypes.string) }; function mapStateToProps(state) { - return {processes: state.processes}; + return {processes: state.processes, commandResults: state.commands.results}; } export default connect( mapStateToProps, - null, + { + postCommand: commandsAction.post + } )(HomeContainer); diff --git a/embark-ui/src/general.css b/embark-ui/src/general.css index fb95550c..58d8175b 100644 --- a/embark-ui/src/general.css +++ b/embark-ui/src/general.css @@ -20,3 +20,7 @@ .logs .trace { color: #8f98a2; } + +.text__new-line { + white-space: pre-line; +} diff --git a/embark-ui/src/reducers/commandsReducer.js b/embark-ui/src/reducers/commandsReducer.js new file mode 100644 index 00000000..5a34d279 --- /dev/null +++ b/embark-ui/src/reducers/commandsReducer.js @@ -0,0 +1,14 @@ +import * as actions from "../actions"; + +export default function commands(state = {}, action) { + switch (action.type) { + case actions.COMMANDS[actions.SUCCESS]: + return { + ...state, error: null, results: [...state.results || [], action.result.data.result] + }; + case actions.COMMANDS[actions.FAILURE]: + return Object.assign({}, state, {error: action.error}); + default: + return state; + } +} diff --git a/embark-ui/src/reducers/index.js b/embark-ui/src/reducers/index.js index 3f4250d4..07eac146 100644 --- a/embark-ui/src/reducers/index.js +++ b/embark-ui/src/reducers/index.js @@ -3,12 +3,14 @@ import processesReducer from './processesReducer'; import accountsReducer from './accountsReducer'; import blocksReducer from './blocksReducer'; import transactionsReducer from './transactionsReducer'; +import commandsReducer from './commandsReducer'; const rootReducer = combineReducers({ accounts: accountsReducer, processes: processesReducer, blocks: blocksReducer, - transactions: transactionsReducer + transactions: transactionsReducer, + commands: commandsReducer }); export default rootReducer; diff --git a/embark-ui/src/sagas/index.js b/embark-ui/src/sagas/index.js index 4688d4e5..b0496e60 100644 --- a/embark-ui/src/sagas/index.js +++ b/embark-ui/src/sagas/index.js @@ -3,24 +3,25 @@ import * as api from '../api'; import {eventChannel} from 'redux-saga'; import {all, call, fork, put, takeEvery, take} from 'redux-saga/effects'; -const {account, accounts, block, blocks, transaction, transactions, processes} = actions; +const {account, accounts, block, blocks, transaction, transactions, processes, commands} = actions; -function *fetchEntity(entity, apiFn, id) { - const {response, error} = yield call(apiFn, id); +function *doRequest(entity, apiFn, payload) { + const {response, error} = yield call(apiFn, payload); if(response) { yield put(entity.success(response)); - } else { + } else if (error) { yield put(entity.failure(error)); } } -export const fetchAccount = fetchEntity.bind(null, account, api.fetchAccount); -export const fetchBlock = fetchEntity.bind(null, block, api.fetchBlock); -export const fetchTransaction = fetchEntity.bind(null, transaction, api.fetchTransaction); -export const fetchAccounts = fetchEntity.bind(null, accounts, api.fetchAccounts); -export const fetchBlocks = fetchEntity.bind(null, blocks, api.fetchBlocks); -export const fetchTransactions = fetchEntity.bind(null, transactions, api.fetchTransactions); -export const fetchProcesses = fetchEntity.bind(null, processes, api.fetchProcesses); +export const fetchAccount = doRequest.bind(null, account, api.fetchAccount); +export const fetchBlock = doRequest.bind(null, block, api.fetchBlock); +export const fetchTransaction = doRequest.bind(null, transaction, api.fetchTransaction); +export const fetchAccounts = doRequest.bind(null, accounts, api.fetchAccounts); +export const fetchBlocks = doRequest.bind(null, blocks, api.fetchBlocks); +export const fetchTransactions = doRequest.bind(null, transactions, api.fetchTransactions); +export const fetchProcesses = doRequest.bind(null, processes, api.fetchProcesses); +export const postCommand = doRequest.bind(null, commands, api.postCommand); export function *watchFetchTransaction() { yield takeEvery(actions.TRANSACTION[actions.REQUEST], fetchTransaction); @@ -50,6 +51,10 @@ export function *watchFetchProcesses() { yield takeEvery(actions.PROCESSES[actions.REQUEST], fetchProcesses); } +export function *watchPostCommand() { + yield takeEvery(actions.COMMANDS[actions.REQUEST], postCommand); +} + export function *fetchProcessLogs(action) { try { const logs = yield call(api.fetchProcessLogs, action.processName); @@ -112,6 +117,7 @@ export default function *root() { fork(watchFetchBlocks), fork(watchFetchBlock), fork(watchFetchTransactions), - fork(watchFetchTransaction) + fork(watchFetchTransaction), + fork(watchPostCommand) ]); }