a6c474fecc
Enable more complex tooltips with clickable links and references. - Use short filename for Script.name if they are unique - Use shared App.isClickable method - Remove various toStringLong methods - Rename CodeLogEntry.disassemble to .code - Add DOM.button helper Bug: v8:10644 Change-Id: I5d46ffd560b37278dc46b8347cb9ff0a7fdfa2ef Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2916373 Reviewed-by: Victor Gomes <victorgomes@chromium.org> Commit-Queue: Camillo Bruni <cbruni@chromium.org> Cr-Commit-Position: refs/heads/master@{#74746}
94 lines
1.9 KiB
JavaScript
94 lines
1.9 KiB
JavaScript
// Copyright 2020 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
class AppEvent extends CustomEvent {
|
|
constructor(name) {
|
|
super(name, {bubbles: true, composed: true});
|
|
}
|
|
}
|
|
|
|
export class SelectionEvent extends AppEvent {
|
|
// TODO: turn into static class fields once Safari supports it.
|
|
static get name() {
|
|
return 'select';
|
|
}
|
|
|
|
constructor(entries) {
|
|
super(SelectionEvent.name);
|
|
if (!Array.isArray(entries) || entries.length == 0) {
|
|
throw new Error('No valid entries selected!');
|
|
}
|
|
this.entries = entries;
|
|
}
|
|
}
|
|
|
|
export class SelectRelatedEvent extends AppEvent {
|
|
static get name() {
|
|
return 'selectrelated';
|
|
}
|
|
|
|
constructor(entry) {
|
|
super(SelectRelatedEvent.name);
|
|
this.entry = entry;
|
|
}
|
|
}
|
|
|
|
export class FocusEvent extends AppEvent {
|
|
static get name() {
|
|
return 'showentrydetail';
|
|
}
|
|
|
|
constructor(entry) {
|
|
super(FocusEvent.name);
|
|
this.entry = entry;
|
|
}
|
|
}
|
|
|
|
export class SelectTimeEvent extends AppEvent {
|
|
static get name() {
|
|
return 'timerangeselect';
|
|
}
|
|
|
|
constructor(start = 0, end = Infinity) {
|
|
super(SelectTimeEvent.name);
|
|
this.start = start;
|
|
this.end = end;
|
|
}
|
|
}
|
|
|
|
export class SynchronizeSelectionEvent extends AppEvent {
|
|
static get name() {
|
|
return 'syncselection';
|
|
}
|
|
|
|
constructor(start, end) {
|
|
super(SynchronizeSelectionEvent.name);
|
|
this.start = start;
|
|
this.end = end;
|
|
}
|
|
}
|
|
|
|
export class ToolTipEvent extends AppEvent {
|
|
static get name() {
|
|
return 'showtooltip';
|
|
}
|
|
|
|
constructor(content, positionOrTargetNode) {
|
|
super(ToolTipEvent.name);
|
|
if (!positionOrTargetNode) {
|
|
throw Error('Either provide a valid position or targetNode');
|
|
}
|
|
this._content = content;
|
|
this._positionOrTargetNode = positionOrTargetNode;
|
|
}
|
|
|
|
get content() {
|
|
return this._content;
|
|
}
|
|
|
|
get positionOrTargetNode() {
|
|
return this._positionOrTargetNode;
|
|
}
|
|
}
|