Show monitor source edges
This commit is contained in:
parent
02d9f423b7
commit
c5d5445362
|
@ -25,7 +25,10 @@ const {
|
|||
icons: iconsActions,
|
||||
} = require('../../actions');
|
||||
|
||||
const { getPaiByTypeAndIndex } = require('../../selectors');
|
||||
const {
|
||||
getPaiByTypeAndIndex,
|
||||
getDerivedMonitorSources,
|
||||
} = require('../../selectors');
|
||||
|
||||
const {
|
||||
PA_VOLUME_NORM,
|
||||
|
@ -50,6 +53,9 @@ const dgoToPai = new WeakMap();
|
|||
const key = pao => `${pao.type}-${pao.index}`;
|
||||
|
||||
const sourceKey = pai => {
|
||||
if (pai.type === 'monitorSource') {
|
||||
return `sink-${pai.sinkIndex}`;
|
||||
}
|
||||
if (pai.clientIndex === -1) {
|
||||
return `module-${pai.moduleIndex}`;
|
||||
}
|
||||
|
@ -57,6 +63,9 @@ const sourceKey = pai => {
|
|||
};
|
||||
|
||||
const targetKey = pai => {
|
||||
if (pai.type === 'monitorSource') {
|
||||
return `source-${pai.sourceIndex}`;
|
||||
}
|
||||
if (pai.type === 'sinkInput') {
|
||||
return `sink-${pai.sinkIndex}`;
|
||||
}
|
||||
|
@ -377,7 +386,14 @@ const ModuleText = ({ dgo, pai, state }) => r.div([
|
|||
r(DebugText, { dgo, pai, state }),
|
||||
]);
|
||||
|
||||
const renderNodeText = state => (dgo, i, selected) => r('foreignObject', {
|
||||
const renderNodeText = state => (dgo, i, selected) => {
|
||||
const pai = dgoToPai.get(dgo);
|
||||
|
||||
if (!pai) {
|
||||
return r(React.Fragment);
|
||||
}
|
||||
|
||||
return r('foreignObject', {
|
||||
x: -s2,
|
||||
y: -s2,
|
||||
}, r.div({
|
||||
|
@ -386,7 +402,7 @@ const renderNodeText = state => (dgo, i, selected) => r('foreignObject', {
|
|||
width: size,
|
||||
height: size,
|
||||
|
||||
backgroundImage: (icon => icon && `url(${icon})`)(state.icons[getPaiIcon(dgoToPai.get(dgo))]),
|
||||
backgroundImage: (icon => icon && `url(${icon})`)(state.icons[getPaiIcon(pai)]),
|
||||
},
|
||||
}, r({
|
||||
sink: SinkText,
|
||||
|
@ -395,10 +411,11 @@ const renderNodeText = state => (dgo, i, selected) => r('foreignObject', {
|
|||
module: ModuleText,
|
||||
}[dgo.type] || ModuleText, {
|
||||
dgo,
|
||||
pai: dgoToPai.get(dgo),
|
||||
pai,
|
||||
state,
|
||||
selected,
|
||||
})));
|
||||
};
|
||||
|
||||
const renderEdge = props => r(Edge, {
|
||||
classSet: {
|
||||
|
@ -529,6 +546,7 @@ class Graph extends React.Component {
|
|||
let edges = map(paoToEdge, flatten(map(values, [
|
||||
this.props.objects.sinkInputs,
|
||||
this.props.objects.sourceOutputs,
|
||||
this.props.derivations.monitorSources,
|
||||
])));
|
||||
|
||||
const connectedNodeKeys = new Set();
|
||||
|
@ -581,6 +599,9 @@ class Graph extends React.Component {
|
|||
]))));
|
||||
|
||||
edges = filter(edge => {
|
||||
if (this.props.preferences.hideMonitorSourceEdges && edge.type === 'monitorSource') {
|
||||
return false;
|
||||
}
|
||||
return filteredNodeKeys.has(edge.source) && filteredNodeKeys.has(edge.target);
|
||||
}, edges);
|
||||
|
||||
|
@ -641,6 +662,10 @@ module.exports = connect(
|
|||
objects: state.pulse.objects,
|
||||
infos: state.pulse.infos,
|
||||
|
||||
derivations: {
|
||||
monitorSources: getDerivedMonitorSources(state),
|
||||
},
|
||||
|
||||
icons: state.icons,
|
||||
|
||||
preferences: state.preferences,
|
||||
|
|
|
@ -71,6 +71,13 @@ const Preferences = withStateHandlers(
|
|||
|
||||
r.hr(),
|
||||
|
||||
r.div([
|
||||
r(Checkbox, {
|
||||
checked: props.preferences.hideMonitorSourceEdges,
|
||||
onChange: () => props.actions.toggle('hideMonitorSourceEdges'),
|
||||
}, 'Hide monitor source edges'),
|
||||
]),
|
||||
|
||||
r.div([
|
||||
r(Checkbox, {
|
||||
checked: props.preferences.hideMonitors,
|
||||
|
|
|
@ -130,6 +130,14 @@ div {
|
|||
marker-end: url(#my-sink-arrow-selected);
|
||||
}
|
||||
|
||||
.view-wrapper .monitorSource {
|
||||
stroke-dasharray: 40;
|
||||
pointer-events: none;
|
||||
}
|
||||
.view-wrapper .monitorSource .edge-mouse-handler {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
#edge-custom-container .edge-path {
|
||||
marker-end: none;
|
||||
stroke: var(--themeSelectedBgColor);
|
||||
|
|
|
@ -13,6 +13,7 @@ const initialState = {
|
|||
hideDisconnectedSources: false,
|
||||
hideDisconnectedSinks: false,
|
||||
|
||||
hideMonitorSourceEdges: false,
|
||||
hideMonitors: false,
|
||||
hidePulseaudioApps: true,
|
||||
|
||||
|
|
|
@ -2,15 +2,30 @@
|
|||
const {
|
||||
map,
|
||||
prop,
|
||||
path,
|
||||
filter,
|
||||
indexBy,
|
||||
} = require('ramda');
|
||||
|
||||
const { createSelector } = require('reselect');
|
||||
|
||||
const { things } = require('../constants/pulse');
|
||||
|
||||
const storeKeyByType = map(prop('key'), indexBy(prop('type'), things));
|
||||
|
||||
const getPaiByTypeAndIndex = (type, index) => state => state.pulse.infos[storeKeyByType[type]][index];
|
||||
const getPaiByTypeAndIndex = (type, index) => state => path([ storeKeyByType[type], index ], state.pulse.infos);
|
||||
|
||||
const getDerivedMonitorSources = createSelector(
|
||||
state => state.pulse.infos.sources,
|
||||
sources => map(source => ({
|
||||
index: source.index,
|
||||
type: 'monitorSource',
|
||||
sinkIndex: source.monitorSourceIndex,
|
||||
sourceIndex: source.index,
|
||||
}), filter(source => source.monitorSourceIndex >= 0, sources)),
|
||||
);
|
||||
|
||||
module.exports = {
|
||||
getPaiByTypeAndIndex,
|
||||
getDerivedMonitorSources,
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue
Block a user