pagraphcontrol/actions/pulse.js
2018-11-08 04:36:48 +03:00

19 lines
421 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 }),
},
});