Add shift mute hotkey

This commit is contained in:
futpib 2018-11-17 15:35:02 +03:00
parent 68e008a9f5
commit 6659fc9e96
3 changed files with 63 additions and 6 deletions

View File

@ -44,8 +44,14 @@ const {
const {
getPaiByTypeAndIndex,
getDerivedMonitorSources,
getClientSinkInputs,
getModuleSinkInputs,
getClientSourceOutputs,
getModuleSourceOutputs,
getSinkSinkInputs,
} = require('../../selectors');
const {
@ -732,7 +738,7 @@ class Graph extends React.Component {
pais.forEach(pai => this.toggleMute(pai, !allMuted));
}
toggleMute(pai, muted = !pai.muted) {
toggleMute(pai, muted = !pai.muted, shift = false) {
if (pai.muted === muted) {
return;
}
@ -742,15 +748,30 @@ class Graph extends React.Component {
} else if (pai.type === 'sourceOutput') {
this.props.setSourceOutputMuteByIndex(pai.index, muted);
} else if (pai.type === 'sink') {
this.props.setSinkMute(pai.index, muted);
if (shift) {
const sinkInputs = getSinkSinkInputs(pai)({ pulse: this.props });
this.toggleAllMute(sinkInputs);
} else {
this.props.setSinkMute(pai.index, muted);
}
} else if (pai.type === 'source') {
this.props.setSourceMute(pai.index, muted);
} else if (pai.type === 'client') {
const sinkInputs = getClientSinkInputs(pai)({ pulse: this.props });
this.toggleAllMute(sinkInputs);
if (shift) {
const sourceOutputs = getClientSourceOutputs(pai)({ pulse: this.props });
this.toggleAllMute(sourceOutputs);
} else {
const sinkInputs = getClientSinkInputs(pai)({ pulse: this.props });
this.toggleAllMute(sinkInputs);
}
} else if (pai.type === 'module') {
const sinkInputs = getModuleSinkInputs(pai)({ pulse: this.props });
this.toggleAllMute(sinkInputs);
if (shift) {
const sourceOutputs = getModuleSourceOutputs(pai)({ pulse: this.props });
this.toggleAllMute(sourceOutputs);
} else {
const sinkInputs = getModuleSinkInputs(pai)({ pulse: this.props });
this.toggleAllMute(sinkInputs);
}
}
}
@ -776,6 +797,20 @@ class Graph extends React.Component {
this.toggleMute(pai);
}
hotKeyShiftMute() {
if (!this.state.selected) {
return;
}
const pai = dgoToPai.get(this.state.selected);
if (!pai) {
return;
}
this.toggleMute(pai, undefined, true);
}
_hotKeyVolume(direction) {
if (!this.state.selected) {
return;

View File

@ -28,6 +28,7 @@ const keyMap = {
hotKeyVolumeUp: [ '*', '0' ],
hotKeyMute: 'm',
hotKeyShiftMute: 'M',
};
class MyHotKeys extends React.Component {

View File

@ -26,6 +26,21 @@ const getModuleSinkInputs = module => state => pickBy(
state.pulse.infos.sinkInputs,
);
const getClientSourceOutputs = client => state => pickBy(
so => so.clientIndex === client.index,
state.pulse.infos.sourceOutputs,
);
const getModuleSourceOutputs = module => state => pickBy(
so => so.moduleIndex === module.index,
state.pulse.infos.sourceOutputs,
);
const getSinkSinkInputs = sink => state => pickBy(
si => si.sinkIndex === sink.index,
state.pulse.infos.sinkInputs,
);
const getDerivedMonitorSources = createSelector(
state => state.pulse.infos.sources,
sources => map(source => ({
@ -39,6 +54,12 @@ const getDerivedMonitorSources = createSelector(
module.exports = {
getPaiByTypeAndIndex,
getDerivedMonitorSources,
getClientSinkInputs,
getModuleSinkInputs,
getClientSourceOutputs,
getModuleSourceOutputs,
getSinkSinkInputs,
};