| // Copyright (C) 2018 The Android Open Source Project |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); |
| // you may not use this file except in compliance with the License. |
| // You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| |
| import * as m from 'mithril'; |
| |
| import {assertExists} from '../base/logging'; |
| import {Actions} from '../common/actions'; |
| import {TrackGroupState, TrackState} from '../common/state'; |
| |
| import {globals} from './globals'; |
| import {drawGridLines} from './gridline_helper'; |
| import {Panel, PanelSize} from './panel'; |
| import {Track} from './track'; |
| import {TrackContent} from './track_panel'; |
| import {trackRegistry} from './track_registry'; |
| import { |
| drawVerticalLineAtTime, |
| drawVerticalSelection |
| } from './vertical_line_helper'; |
| |
| |
| interface Attrs { |
| trackGroupId: string; |
| } |
| |
| export class TrackGroupPanel extends Panel<Attrs> { |
| private readonly trackGroupId: string; |
| private shellWidth = 0; |
| private backgroundColor = '#ffffff'; // Updated from CSS later. |
| private summaryTrack: Track; |
| |
| constructor({attrs}: m.CVnode<Attrs>) { |
| super(); |
| this.trackGroupId = attrs.trackGroupId; |
| const trackCreator = trackRegistry.get(this.summaryTrackState.kind); |
| this.summaryTrack = trackCreator.create(this.summaryTrackState); |
| } |
| |
| get trackGroupState(): TrackGroupState { |
| return assertExists(globals.state.trackGroups[this.trackGroupId]); |
| } |
| |
| get summaryTrackState(): TrackState { |
| return assertExists( |
| globals.state.tracks[this.trackGroupState.summaryTrackId]); |
| } |
| |
| view({attrs}: m.CVnode<Attrs>) { |
| const collapsed = this.trackGroupState.collapsed; |
| let name = this.trackGroupState.name; |
| if (name[0] === '/') { |
| name = StripPathFromExecutable(name); |
| } |
| return m( |
| `.track-group-panel[collapsed=${collapsed}]`, |
| {id: 'track_' + this.trackGroupId}, |
| m('.shell', |
| { |
| onclick: (e: MouseEvent) => { |
| globals.dispatch(Actions.toggleTrackGroupCollapsed({ |
| trackGroupId: attrs.trackGroupId, |
| })), |
| e.stopPropagation(); |
| } |
| }, |
| m('h1', |
| { |
| title: name, |
| }, |
| name), |
| m('.fold-button', |
| m('i.material-icons', |
| this.trackGroupState.collapsed ? 'expand_more' : 'expand_less'))), |
| this.summaryTrack ? m(TrackContent, {track: this.summaryTrack}) : null); |
| } |
| |
| oncreate(vnode: m.CVnodeDOM<Attrs>) { |
| this.onupdate(vnode); |
| } |
| |
| onupdate({dom}: m.CVnodeDOM<Attrs>) { |
| const shell = assertExists(dom.querySelector('.shell')); |
| this.shellWidth = shell.getBoundingClientRect().width; |
| this.backgroundColor = |
| getComputedStyle(dom).getPropertyValue('--collapsed-background'); |
| } |
| |
| renderCanvas(ctx: CanvasRenderingContext2D, size: PanelSize) { |
| const collapsed = this.trackGroupState.collapsed; |
| if (!collapsed) return; |
| |
| ctx.save(); |
| |
| ctx.fillStyle = this.backgroundColor; |
| ctx.fillRect(0, 0, size.width, size.height); |
| |
| drawGridLines( |
| ctx, |
| globals.frontendLocalState.timeScale, |
| globals.frontendLocalState.visibleWindowTime, |
| size.width, |
| size.height); |
| |
| ctx.translate(this.shellWidth, 0); |
| if (this.summaryTrack) { |
| this.summaryTrack.render(ctx); |
| } |
| ctx.restore(); |
| |
| const localState = globals.frontendLocalState; |
| // Draw vertical line when hovering on the notes panel. |
| if (localState.showNotePreview) { |
| drawVerticalLineAtTime(ctx, |
| localState.timeScale, |
| localState.hoveredTimestamp, |
| size.height, |
| `#aaa`); |
| } |
| // Draw vertical line when shift is pressed. |
| if (localState.showTimeSelectPreview) { |
| drawVerticalLineAtTime(ctx, |
| localState.timeScale, |
| localState.hoveredTimestamp, |
| size.height, |
| `rgb(52,69,150)`); |
| } |
| if (globals.frontendLocalState.selectedTimeRange.startSec !== undefined && |
| globals.frontendLocalState.selectedTimeRange.endSec !== undefined) { |
| drawVerticalSelection( |
| ctx, |
| localState.timeScale, |
| globals.frontendLocalState.selectedTimeRange.startSec, |
| globals.frontendLocalState.selectedTimeRange.endSec, |
| size.height, |
| `rgba(0,0,0,0.5)`); |
| } |
| if (globals.state.currentSelection !== null) { |
| if (globals.state.currentSelection.kind === 'NOTE') { |
| const note = globals.state.notes[globals.state.currentSelection.id]; |
| drawVerticalLineAtTime(ctx, |
| localState.timeScale, |
| note.timestamp, |
| size.height, |
| note.color); |
| } |
| if (globals.state.currentSelection.kind === 'SLICE' && |
| globals.sliceDetails.wakeupTs !== undefined) { |
| drawVerticalLineAtTime( |
| ctx, |
| localState.timeScale, |
| globals.sliceDetails.wakeupTs, |
| size.height, |
| `black`); |
| } |
| } |
| } |
| } |
| |
| function StripPathFromExecutable(path: string) { |
| return path.split('/').slice(-1)[0]; |
| } |