Searched refs:trackGroupId (Results 1 – 6 of 6) sorted by relevance
44 trackGroupId: string; property49 private readonly trackGroupId: string; property in TrackGroupPanel56 this.trackGroupId = attrs.trackGroupId;62 return assertExists(globals.state.trackGroups[this.trackGroupId]);84 if (parentTrackId === attrs.trackGroupId) {91 const trackGroup = globals.state.trackGroups[attrs.trackGroupId];95 if (selectedArea.tracks.includes(attrs.trackGroupId) &&99 selectedArea.tracks.includes(attrs.trackGroupId) ||107 {id: 'track_' + this.trackGroupId},112 trackGroupId: attrs.trackGroupId,[all …]
77 const trackGroupId = getContainingTrackId(globals.state, trackIdString); constant78 if (trackGroupId) {79 trackGroup = document.querySelector('#track_' + trackGroupId);82 if (!trackGroupId || !trackGroup) {92 globals.dispatch(Actions.toggleTrackGroupCollapsed({trackGroupId}));
65 function hasTrackGroupId(obj: {}): obj is {trackGroupId: string} {66 return (obj as {trackGroupId?: string}).trackGroupId !== undefined;94 panel.attrs.trackGroupId, {panel: panel.state, yStart, height});107 const trackGroupId = this.getTrackGroupIdByTrackId(trackId); constant108 if (!trackGroupId) {111 const trackGroupInfo = args.groupIdToTrackGroupPanel.get(trackGroupId);
147 if (panel.attrs.trackGroupId !== undefined) {148 const trackGroup = globals.state.trackGroups[panel.attrs.trackGroupId];151 tracks.push(panel.attrs.trackGroupId);312 this.attrs.panels[i].attrs.trackGroupId;
217 trackGroupId: group.id,
387 toggleTrackGroupCollapsed(state: StateDraft, args: {trackGroupId: string}):389 const id = args.trackGroupId;