Add module unloading

This commit is contained in:
futpib 2018-11-10 19:44:49 +03:00
parent bf3c7cce09
commit c34f90e1c3
5 changed files with 14 additions and 7 deletions

View File

@ -16,5 +16,6 @@ module.exports = createActionCreators({
MOVE_SOURCE_OUTPUT: (sourceOutputIndex, destSourceIndex) => ({ sourceOutputIndex, destSourceIndex }),
KILL_CLIENT_BY_INDEX: clientIndex => ({ clientIndex }),
UNLOAD_MODULE_BY_INDEX: moduleIndex => ({ moduleIndex }),
},
});

View File

@ -358,6 +358,8 @@ class Graph extends React.Component {
onDeleteNode(selected) {
if (selected.type === 'client') {
this.props.killClientByIndex(selected.index);
} else if (selected.type === 'module') {
this.props.unloadModuleByIndex(selected.index);
}
}

View File

@ -20,12 +20,12 @@
]
},
"dependencies": {
"@futpib/paclient": "^0.0.2",
"camelcase": "^5.0.0",
"electron-store": "^2.0.0",
"freedesktop-icons": "^0.1.0",
"ini": "^1.3.5",
"mathjs": "^5.2.3",
"paclient": "^0.0.2",
"r-dom": "^2.4.0",
"ramda": "^0.25.0",
"react": "^16.6.0",

View File

@ -1,5 +1,5 @@
const PAClient = require('paclient');
const PAClient = require('@futpib/paclient');
const { handleActions } = require('redux-actions');
@ -96,6 +96,10 @@ module.exports = store => {
pa.killClientByIndex(clientIndex, rethrow);
return state;
},
[pulseActions.unloadModuleByIndex]: (state, { payload: { moduleIndex } }) => {
pa.unloadModuleByIndex(moduleIndex, rethrow);
return state;
},
}, null);
return next => action => {

View File

@ -79,6 +79,11 @@
dependencies:
arrify "^1.0.1"
"@futpib/paclient@^0.0.2":
version "0.0.2"
resolved "https://registry.yarnpkg.com/@futpib/paclient/-/paclient-0.0.2.tgz#de7d40014143a0aae8b3ceacd476cdbbaeefa5ec"
integrity sha512-ss0NdcFLcmgFi/vUDUgSHQTiZ+mumao9/heoOpuN9IskrsBQoMLr7eIm9odVnA+CwjdNxc2Cb899YiSSWoykaA==
"@ladjs/time-require@^0.1.4":
version "0.1.4"
resolved "https://registry.yarnpkg.com/@ladjs/time-require/-/time-require-0.1.4.tgz#5c615d75fd647ddd5de9cf6922649558856b21a1"
@ -4598,11 +4603,6 @@ package-json@^4.0.0:
registry-url "^3.0.3"
semver "^5.1.0"
paclient@^0.0.2:
version "0.0.2"
resolved "https://registry.yarnpkg.com/paclient/-/paclient-0.0.2.tgz#1ab74a4bb8aa8b4de0f492c2f2bfc7b28629a0a2"
integrity sha1-GrdKS7iqi03g9JLC8r/HsoYpoKI=
parse-glob@^3.0.4:
version "3.0.4"
resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"