diff --git a/actions/pulse.js b/actions/pulse.js index dbd3c97..bb16dbf 100644 --- a/actions/pulse.js +++ b/actions/pulse.js @@ -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 }), }, }); diff --git a/components/graph/index.js b/components/graph/index.js index 05da97e..0033986 100644 --- a/components/graph/index.js +++ b/components/graph/index.js @@ -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); } } diff --git a/package.json b/package.json index 1e277b7..fe40db7 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/store/pulse-middleware.js b/store/pulse-middleware.js index 21de87a..ebf3a13 100644 --- a/store/pulse-middleware.js +++ b/store/pulse-middleware.js @@ -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 => { diff --git a/yarn.lock b/yarn.lock index f949b27..14600f2 100644 --- a/yarn.lock +++ b/yarn.lock @@ -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"