-
Notifications
You must be signed in to change notification settings - Fork 368
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ui: Create a directory for viewer-page related code
The 'viewer' page has become large and complex enough that it deserves its own directory, as it currently has a lot of code scattered throughout src/frontend. This CL moves all this code into a new dir at src/frontend/viewer_page for better code organization. This CL is a no-op, it only moves files around. Change-Id: Ie420286d9265b3997239764288a81026708a7a8b
- Loading branch information
1 parent
43595ee
commit b8708b8
Showing
21 changed files
with
252 additions
and
221 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
// Copyright (C) 2024 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 m from 'mithril'; | ||
import {assertUnreachable} from '../base/logging'; | ||
import {Icons} from '../base/semantic_icons'; | ||
import {Timestamp} from '../components/widgets/timestamp'; | ||
import {TraceImpl} from '../core/trace_impl'; | ||
import {DetailsPanel} from '../public/details_panel'; | ||
import {Note, SpanNote} from '../public/note'; | ||
import {Selection} from '../public/selection'; | ||
import {Button} from '../widgets/button'; | ||
|
||
function getStartTimestamp(note: Note | SpanNote) { | ||
const noteType = note.noteType; | ||
switch (noteType) { | ||
case 'SPAN': | ||
return note.start; | ||
case 'DEFAULT': | ||
return note.timestamp; | ||
default: | ||
assertUnreachable(noteType); | ||
} | ||
} | ||
|
||
export class NotesEditorTab implements DetailsPanel { | ||
constructor(private trace: TraceImpl) {} | ||
|
||
render(selection: Selection) { | ||
if (selection.kind !== 'note') { | ||
return undefined; | ||
} | ||
|
||
const id = selection.id; | ||
|
||
const note = this.trace.notes.getNote(id); | ||
if (note === undefined) { | ||
return m('.', `No Note with id ${id}`); | ||
} | ||
const startTime = getStartTimestamp(note); | ||
return m( | ||
'.notes-editor-panel', | ||
{ | ||
key: id, // Every note shoul get its own brand new DOM. | ||
}, | ||
m( | ||
'.notes-editor-panel-heading-bar', | ||
m( | ||
'.notes-editor-panel-heading', | ||
`Annotation at `, | ||
m(Timestamp, {ts: startTime}), | ||
), | ||
m('input[type=text]', { | ||
oncreate: (v: m.VnodeDOM) => { | ||
// NOTE: due to bad design decisions elsewhere this component is | ||
// rendered every time the mouse moves on the canvas. We cannot set | ||
// `value: note.text` as an input as that will clobber the input | ||
// value as we move the mouse. | ||
const inputElement = v.dom as HTMLInputElement; | ||
inputElement.value = note.text; | ||
}, | ||
onchange: (e: InputEvent) => { | ||
const newText = (e.target as HTMLInputElement).value; | ||
this.trace.notes.changeNote(id, {text: newText}); | ||
}, | ||
}), | ||
m( | ||
'span.color-change', | ||
`Change color: `, | ||
m('input[type=color]', { | ||
value: note.color, | ||
onchange: (e: Event) => { | ||
const newColor = (e.target as HTMLInputElement).value; | ||
this.trace.notes.changeNote(id, {color: newColor}); | ||
}, | ||
}), | ||
), | ||
m(Button, { | ||
label: 'Remove', | ||
icon: Icons.Delete, | ||
onclick: () => this.trace.notes.removeNote(id), | ||
}), | ||
), | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.