e607d54a0e
This CL encapsulates map panel behaviour with custom web components map-details for displaying information and map-transitions to show map transition tree. The web components emit/receive events to interact with the app. Bug: v8:10644 Change-Id: Ic61c2794ed7ab854ee61fa1e7c8fe9b1c3c31b7e Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2305889 Commit-Queue: Zeynep Cankara <zcankara@google.com> Reviewed-by: Camillo Bruni <cbruni@chromium.org> Reviewed-by: Sathya Gunasekaran <gsathya@chromium.org> Cr-Commit-Position: refs/heads/master@{#69004}
186 lines
5.5 KiB
JavaScript
186 lines
5.5 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.
|
|
import {V8CustomElement, defineCustomElement} from '../helper.mjs';
|
|
|
|
defineCustomElement('./map-panel/map-transitions', (templateText) =>
|
|
class MapTransitions extends V8CustomElement {
|
|
#map;
|
|
constructor() {
|
|
super(templateText);
|
|
this.transitionView.addEventListener(
|
|
'mousemove', e => this.handleTransitionViewChange(e));
|
|
this.currentNode = this.transitionView;
|
|
this.currentMap = undefined;
|
|
}
|
|
|
|
get transitionView() {
|
|
return this.$('#transitionView');
|
|
}
|
|
|
|
get tooltip() {
|
|
return this.$('#tooltip');
|
|
}
|
|
|
|
get tooltipContents() {
|
|
return this.$('#tooltipContents');
|
|
}
|
|
|
|
set map(value) {
|
|
this.#map = value;
|
|
this.showMap();
|
|
}
|
|
|
|
handleTransitionViewChange(e){
|
|
this.tooltip.style.left = e.pageX + "px";
|
|
this.tooltip.style.top = e.pageY + "px";
|
|
let map = e.target.map;
|
|
if (map) {
|
|
this.tooltipContents.innerText = map.description;
|
|
}
|
|
}
|
|
|
|
selectMap(map) {
|
|
this.currentMap = map;
|
|
this.dispatchEvent(new CustomEvent(
|
|
'mapdetailsupdate', {bubbles: true, composed: true, detail: map}));
|
|
this.dispatchEvent(new CustomEvent(
|
|
'statemapchange', {bubbles: true, composed: true, detail: map}));
|
|
}
|
|
|
|
dblClickSelectMap(map) {
|
|
this.dispatchEvent(new CustomEvent(
|
|
'selectmapdblclick', {bubbles: true, composed: true, detail: map}));
|
|
}
|
|
|
|
showMap() {
|
|
// Called when a map selected
|
|
let selected = this.#map;
|
|
if (this.currentMap === this.#map) return;
|
|
this.currentMap = this.#map;
|
|
this.mapEntries = [this.#map];
|
|
this.dispatchEvent(new CustomEvent(
|
|
'mapdetailsupdate', {bubbles: true, composed: true, detail: selected}));
|
|
}
|
|
|
|
showMaps() {
|
|
// Timeline dbl click to show map transitions of selected maps
|
|
this.transitionView.style.display = 'none';
|
|
this.removeAllChildren(this.transitionView);
|
|
this.mapEntries.forEach(map => this.addMapAndParentTransitions(map));
|
|
this.transitionView.style.display = '';
|
|
}
|
|
|
|
set mapEntries(list){
|
|
this._mapEntries = list;
|
|
this.showMaps();
|
|
}
|
|
|
|
get mapEntries(){
|
|
return this._mapEntries;
|
|
}
|
|
|
|
addMapAndParentTransitions(map) {
|
|
if (map === void 0) return;
|
|
this.currentNode = this.transitionView;
|
|
let parents = map.getParents();
|
|
if (parents.length > 0) {
|
|
this.addTransitionTo(parents.pop());
|
|
parents.reverse().forEach(each => this.addTransitionTo(each));
|
|
}
|
|
let mapNode = this.addSubtransitions(map);
|
|
// Mark and show the selected map.
|
|
mapNode.classList.add('selected');
|
|
if (this.selectedMap == map) {
|
|
setTimeout(
|
|
() => mapNode.scrollIntoView(
|
|
{behavior: 'smooth', block: 'nearest', inline: 'nearest'}),
|
|
1);
|
|
}
|
|
}
|
|
|
|
addMapNode(map) {
|
|
let node = this.div('map');
|
|
if (map.edge) node.style.backgroundColor = map.edge.getColor();
|
|
node.map = map;
|
|
node.addEventListener('click', () => this.selectMap(map));
|
|
node.addEventListener('dblclick', () => this.dblClickSelectMap(map));
|
|
if (map.children.length > 1) {
|
|
node.innerText = map.children.length;
|
|
let showSubtree = this.div('showSubtransitions');
|
|
showSubtree.addEventListener('click', (e) => this.toggleSubtree(e, node));
|
|
node.appendChild(showSubtree);
|
|
} else if (map.children.length == 0) {
|
|
node.innerHTML = '●'
|
|
}
|
|
this.currentNode.appendChild(node);
|
|
return node;
|
|
}
|
|
|
|
addSubtransitions(map) {
|
|
let mapNode = this.addTransitionTo(map);
|
|
// Draw outgoing linear transition line.
|
|
let current = map;
|
|
while (current.children.length == 1) {
|
|
current = current.children[0].to;
|
|
this.addTransitionTo(current);
|
|
}
|
|
return mapNode;
|
|
}
|
|
|
|
addTransitionEdge(map) {
|
|
let classes = ['transitionEdge'];
|
|
let edge = this.div(classes);
|
|
edge.style.backgroundColor = map.edge.getColor();
|
|
let labelNode = this.div('transitionLabel');
|
|
labelNode.innerText = map.edge.toString();
|
|
edge.appendChild(labelNode);
|
|
return edge;
|
|
}
|
|
|
|
addTransitionTo(map) {
|
|
// transition[ transitions[ transition[...], transition[...], ...]];
|
|
|
|
let transition = this.div('transition');
|
|
if (map.isDeprecated()) transition.classList.add('deprecated');
|
|
if (map.edge) {
|
|
transition.appendChild(this.addTransitionEdge(map));
|
|
}
|
|
let mapNode = this.addMapNode(map);
|
|
transition.appendChild(mapNode);
|
|
|
|
let subtree = this.div('transitions');
|
|
transition.appendChild(subtree);
|
|
|
|
this.currentNode.appendChild(transition);
|
|
this.currentNode = subtree;
|
|
|
|
return mapNode;
|
|
}
|
|
|
|
toggleSubtree(event, node) {
|
|
let map = node.map;
|
|
event.target.classList.toggle('opened');
|
|
let transitionsNode = node.parentElement.querySelector('.transitions');
|
|
let subtransitionNodes = transitionsNode.children;
|
|
if (subtransitionNodes.length <= 1) {
|
|
// Add subtransitions excepth the one that's already shown.
|
|
let visibleTransitionMap = subtransitionNodes.length == 1 ?
|
|
transitionsNode.querySelector('.map').map :
|
|
void 0;
|
|
map.children.forEach(edge => {
|
|
if (edge.to != visibleTransitionMap) {
|
|
this.currentNode = transitionsNode;
|
|
this.addSubtransitions(edge.to);
|
|
}
|
|
});
|
|
} else {
|
|
// remove all but the first (currently selected) subtransition
|
|
for (let i = subtransitionNodes.length - 1; i > 0; i--) {
|
|
transitionsNode.removeChild(subtransitionNodes[i]);
|
|
}
|
|
}
|
|
}
|
|
|
|
});
|