summaryrefslogtreecommitdiff
path: root/app/client/system/system.actions.js
blob: c6617699ee24db5b3d8902935fe87596e1c17c9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import socket from '../socket'
import types from '../types'

import actions from '../actions'

export const run = (cmd) => (dispatch) => {
  dispatch({ type: types.system.running_command, cmd })
  socket.actions.run_system_command(cmd)
  .then(data => {
    dispatch({
      type: types.system.command_output,
      data: data,
    })
  })
}

export const listDirectory = (opt) => (dispatch) => {
  dispatch({ type: types.system.listing_directory, opt })
  socket.actions.list_directory(opt)
  .then(data => {
    dispatch({
      type: types.system.list_directory,
      data: data,
    })
  })
}

export const changeTool = (tool) => {
  return { type: types.app.change_tool, tool }
}

export const enqueue_test_task = (dataset) => dispatch => {
  const task = {
    module: 'test',
    activity: 'test',
    dataset: dataset,
  }
  return actions.queue.add_task(task)
}