summaryrefslogtreecommitdiff
path: root/app/client
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-06-05 15:03:13 +0200
committerJules Laplace <julescarbon@gmail.com>2018-06-05 15:04:12 +0200
commitba825eb101f8ca1cbf5de7a87c6c2995a0d687a5 (patch)
tree049b6d2cc7d4517f763b357ba29feb2a6cc2e578 /app/client
parent0db903f139aa2eb91308f99bb3be3619c2d9b217 (diff)
du command
Diffstat (limited to 'app/client')
-rw-r--r--app/client/dashboard/dashboard.component.js2
-rw-r--r--app/client/modules/pix2pix/live.component.js2
-rw-r--r--app/client/modules/samplernn/samplernn.actions.js6
-rw-r--r--app/client/modules/samplernn/samplernn.new.js6
-rw-r--r--app/client/modules/samplernn/samplernn.results.js7
-rw-r--r--app/client/modules/samplernn/samplernn.show.js2
-rw-r--r--app/client/socket/socket.actions.js3
-rw-r--r--app/client/system/system.actions.js2
-rw-r--r--app/client/system/system.component.js3
-rw-r--r--app/client/system/system.reducer.js2
10 files changed, 22 insertions, 13 deletions
diff --git a/app/client/dashboard/dashboard.component.js b/app/client/dashboard/dashboard.component.js
index 64a8848..4b3d077 100644
--- a/app/client/dashboard/dashboard.component.js
+++ b/app/client/dashboard/dashboard.component.js
@@ -30,7 +30,7 @@ class Dashboard extends Component {
const { site, queue, images } = this.props
const { tasks } = queue
return (
- <div className='dashboard'>
+ <div className='app dashboard'>
<DashboardHeader />
<div className='params'>
<div className='column'>
diff --git a/app/client/modules/pix2pix/live.component.js b/app/client/modules/pix2pix/live.component.js
index 9aef297..82f315c 100644
--- a/app/client/modules/pix2pix/live.component.js
+++ b/app/client/modules/pix2pix/live.component.js
@@ -61,7 +61,7 @@ class LivePix2Pix extends Component {
}
render(){
return (
- <div className='app'>
+ <div className='app centered'>
<Player width={424} height={256} />
<div className='params row'>
<div className='column'>
diff --git a/app/client/modules/samplernn/samplernn.actions.js b/app/client/modules/samplernn/samplernn.actions.js
index ef3e417..357617a 100644
--- a/app/client/modules/samplernn/samplernn.actions.js
+++ b/app/client/modules/samplernn/samplernn.actions.js
@@ -17,12 +17,15 @@ export const load_directories = (id) => (dispatch) => {
actions.socket.list_directory({ module: 'samplernn', dir: 'datasets' }),
actions.socket.list_directory({ module: 'samplernn', dir: 'results' }),
actions.socket.list_directory({ module: 'samplernn', dir: 'output' }),
+ actions.socket.disk_usage({ module: 'samplernn', dir: 'datasets' }),
load_loss()(dispatch),
], (percent, i, n) => {
dispatch({ type: types.app.load_progress, progress: { i, n }})
}).then(res => {
// console.log(res)
- const [folders, files, tasks, datasets, results, output, lossReport] = res
+ const [folders, files, tasks, datasets, results, output, datasetUsage, lossReport] = res
+
+ console.log(datasetUsage)
const unsortedFolder = {
id: 0,
@@ -265,6 +268,7 @@ export const import_files = (state, datasetLookup, fileLookup) => (dispatch) =>
console.log(promises)
return Promise.all(promises).then(data => {
console.log(data)
+ window.location.href = '/samplernn/datasets/' + folder.id
}).catch(e => {
console.error(e)
})
diff --git a/app/client/modules/samplernn/samplernn.new.js b/app/client/modules/samplernn/samplernn.new.js
index 8d8b68c..a6e4fd3 100644
--- a/app/client/modules/samplernn/samplernn.new.js
+++ b/app/client/modules/samplernn/samplernn.new.js
@@ -20,7 +20,11 @@ class SampleRNNNew extends Component {
}
render(){
const { history } = this.props
- return <NewDatasetForm module={samplernnModule} history={history} />
+ return (
+ <div class='app samplernn'>
+ <NewDatasetForm module={samplernnModule} history={history} />
+ </div>
+ )
}
}
const mapStateToProps = state => ({
diff --git a/app/client/modules/samplernn/samplernn.results.js b/app/client/modules/samplernn/samplernn.results.js
index d12e856..31079ce 100644
--- a/app/client/modules/samplernn/samplernn.results.js
+++ b/app/client/modules/samplernn/samplernn.results.js
@@ -54,13 +54,12 @@ class SampleRNNResults extends Component {
})
return (
- <div className='app top left'>
- <div className='heading'>
+ <div className='app samplernn'>
+ <div className='heading row middle'>
<h1>SampleRNN Results</h1>
+ <Link to='/samplernn/new/'>new project</Link>
</div>
<div class='rows params renders'>
- <Link to='/samplernn/new/'>new dataset</Link>
- <br/><br/>
{renders}
</div>
</div>
diff --git a/app/client/modules/samplernn/samplernn.show.js b/app/client/modules/samplernn/samplernn.show.js
index 1237d9b..982ec53 100644
--- a/app/client/modules/samplernn/samplernn.show.js
+++ b/app/client/modules/samplernn/samplernn.show.js
@@ -30,7 +30,7 @@ class SampleRNNShow extends Component {
const { folderLookup } = (samplernn.data || {})
const folder = (folderLookup || {})[samplernn.folder_id] || {}
return (
- <div className='app'>
+ <div className='app samplernn'>
<div class='heading'>
<div class='spaced'>
<h1>{folder ? folder.name : <Loading />}</h1>
diff --git a/app/client/socket/socket.actions.js b/app/client/socket/socket.actions.js
index ffe1cfe..38c1b7f 100644
--- a/app/client/socket/socket.actions.js
+++ b/app/client/socket/socket.actions.js
@@ -4,6 +4,9 @@ import { socket } from './socket.connection'
export function run_system_command(opt) {
return syscall_async('run_system_command', opt)
}
+export function disk_usage(opt) {
+ return syscall_async('run_system_command', { cmd: 'du', ...opt })
+}
export function list_directory(opt) {
return syscall_async('list_directory', opt).then(res => res.files)
}
diff --git a/app/client/system/system.actions.js b/app/client/system/system.actions.js
index 7039ff2..8758715 100644
--- a/app/client/system/system.actions.js
+++ b/app/client/system/system.actions.js
@@ -5,7 +5,7 @@ import actions from '../actions'
export const run = (cmd) => (dispatch) => {
dispatch({ type: types.system.running_command, cmd })
- socket.actions.run_system_command(cmd)
+ socket.actions.run_system_command({ cmd })
.then(data => {
dispatch({
type: types.system.command_output,
diff --git a/app/client/system/system.component.js b/app/client/system/system.component.js
index 10ec971..216c7cc 100644
--- a/app/client/system/system.component.js
+++ b/app/client/system/system.component.js
@@ -45,11 +45,10 @@ class System extends Component {
render(){
const { site, server, relay, runner, rpc, actions } = this.props
return (
- <div className='system'>
+ <div className='app system'>
<div className='heading'>
<h1>{site.name} system</h1>
</div>
-
<div className='row params'>
<div className='column'>
<Group title="Status">
diff --git a/app/client/system/system.reducer.js b/app/client/system/system.reducer.js
index 8378bf3..961db74 100644
--- a/app/client/system/system.reducer.js
+++ b/app/client/system/system.reducer.js
@@ -126,7 +126,7 @@ const systemReducer = (state = systemInitialState, action) => {
connected: false,
error: null,
},
- runner: action.runner,
+ runner: action.runner || state.runner,
}
case types.system.load_site:
document.querySelector('title').innerHTML = action.site.name + '.cortex'