pagraphcontrol/actions/pulse.js
2018-11-10 19:44:49 +03:00

22 lines
540 B
JavaScript

const { createActions: createActionCreators } = require('redux-actions');
module.exports = createActionCreators({
PULSE: {
READY: null,
CLOSE: null,
NEW: null,
CHANGE: null,
REMOVE: null,
INFO: null,
MOVE_SINK_INPUT: (sinkInputIndex, destSinkIndex) => ({ sinkInputIndex, destSinkIndex }),
MOVE_SOURCE_OUTPUT: (sourceOutputIndex, destSourceIndex) => ({ sourceOutputIndex, destSourceIndex }),
KILL_CLIENT_BY_INDEX: clientIndex => ({ clientIndex }),
UNLOAD_MODULE_BY_INDEX: moduleIndex => ({ moduleIndex }),
},
});