-
Notifications
You must be signed in to change notification settings - Fork 26
/
CayleyDiagram.js
293 lines (244 loc) · 12.2 KB
/
CayleyDiagram.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
// @flow
import {THREE} from './lib/externals.js';
import {CayleyDiagramView, createInteractiveCayleyDiagramView} from './js/CayleyDiagramView.js';
import DiagramDnD from './js/DiagramDnD.js';
import GEUtils from './js/GEUtils.js';
import * as Library from './js/Library.js';
import Log from './js/Log.js';
import Menu from './js/Menu.js';
import {LISTENER_READY_MESSAGE, STATE_LOADED_MESSAGE} from './js/SheetModel.js';
import Template from './js/Template.js';
import XMLGroup from './js/XMLGroup.js';
import * as SSD from './js/SubsetHighlightController.js';
import * as CVC from './js/CayleyViewController.js';
import * as DC from './js/CayleyDiagramController.js';
import * as VC from './visualizerFramework/visualizer.js';
export {broadcastChange} from './visualizerFramework/visualizer.js';
export {load};
/*::
import type {CayleyDiagramJSON} from './js/CayleyDiagramView.js';
import type {MSG_external} from './js/SheetModel.js';
*/
/* Module variables */
export let Group /*: XMLGroup */ = new XMLGroup(); // group about which information is displayed
export const Cayley_Diagram_View /*: CayleyDiagramView */ = createInteractiveCayleyDiagramView();
const DnD_handler /*: DiagramDnD */ = new DiagramDnD(Cayley_Diagram_View); // drag-and-drop handler for large diagram
const HELP_PAGE /*: string */ = 'help/rf-um-cd-options/index.html';
const myDomain = new URL(window.location.href).origin;
/* Register static event managers (called after document is assembled) */
function registerCallbacks() {
window.onresize = resizeBody;
if (GEUtils.isTouchDevice()) {
$('#controls')[0].addEventListener('touchstart', (event /*: Event */) => event.stopPropagation())
$('#controls')[0].addEventListener('touchmove', (event /*: Event */) => event.stopPropagation())
$('#controls')[0].addEventListener('touchend', (event /*: Event */) => event.stopPropagation())
} else { // must be mouse device
$('#controls')[0].addEventListener('mousedown', (event /*: Event */) => event.stopPropagation())
$('#controls')[0].addEventListener('mousemove', (event /*: Event */) => event.stopPropagation())
$('#controls')[0].addEventListener('mouseup', (event /*: Event */) => event.stopPropagation())
}
$('#bodyDouble')[0].addEventListener('click', GEUtils.cleanWindow);
$('#subset-button')[0].addEventListener('click', () => VC.showPanel('#subset-control') );
$('#view-button')[0].addEventListener('click', () => VC.showPanel('#view-control') );
$('#diagram-button')[0].addEventListener('click', () => VC.showPanel('#diagram-control') );
Tooltip.init();
}
// The element that takes the longest to display is the SubsetHighlightPanel, due to the typesetting required.
// We process along the critical path: load Group, generate SubsetHighlightPanel
async function load () {
Group = await Library.loadFromURL()
// Create header from group name
$('#heading').html(`Cayley Diagram for ${Group.name}`)
// load subset highlighting control (do this before starting visualizer, to determine size of #graphic)
const highlighters = [
{handler: highlightByNodeColor, label: 'Node color'},
{handler: highlightByRingAroundNode, label: 'Ring around node'},
{handler: highlightBySquareAroundNode, label: 'Square around node'}
];
await SSD.load($('#subset-control'), highlighters, clearHighlights, Group)
// The following (up to >>>) can be completed before SSD displays -- do we still need to do this?
// Generate Cayley diagram, but don't display in the main #graphic yet
let diagram_name = new URL(window.location.href).searchParams.get('diagram');
if ( diagram_name != undefined
&& Group.cayleyDiagrams.find( (cayleyDiagram) => cayleyDiagram.name == diagram_name) == undefined) {
Log.err(`group ${Group.shortName} has no Cayley diagram named ${diagram_name} -- generating diagram instead`);
diagram_name = undefined;
}
Cayley_Diagram_View.group = Group; // set group and diagram name in Cayley_Diagram_View
Cayley_Diagram_View.diagram_name = diagram_name; // and generate their Cayley diagram
// Register event handlers
registerCallbacks();
// Load icon strip in upper right-hand corner
VC.load(Group, HELP_PAGE);
// >>> Complete setup functions once the main #graphic is sized correctly
// Is this an editor started by a Sheet? If so, set up communication with Sheet
if (!window.location.href.includes('SheetEditor=true')) {
startVisualizer();
}
// This starts building the other panels -- we won't wait for completion unless we have to
// They are initially created with display=none, then exposed when the panel is selected
const dcPromise = DC.load($('#diagram-control'));
const cvcPromise = CVC.load($('#view-control'));
if (window.location.href.includes('SheetEditor=true')) {
await Promise.all([dcPromise, cvcPromise]) // have to wait so we don't call XX.upate() before it's ready
setupEditorCallback();
}
}
function startVisualizer () {
Cayley_Diagram_View.container = $('#graphic')[0]; // append Cayley_Diagram_View to main #graphic panel
Cayley_Diagram_View.enableTrackballControl(); // enable trackball animation
Cayley_Diagram_View.render(); // start animation
}
// Set up message communication for Sheet editor
function setupEditorCallback () {
// this only happens once, right after initialization
window.addEventListener('message', receiveInitialSetup, false);
// let any GE window that spawned this know that we're ready to receive signals
window.postMessage( LISTENER_READY_MESSAGE, myDomain );
// or if any external program is using GE as a service, let it know we're ready, too
window.parent.postMessage( LISTENER_READY_MESSAGE, '*' );
}
// When functioning as an editor for a Sheet this receives the startup configuration
function receiveInitialSetup (event /*: MessageEvent */) {
if (event.data == undefined)
return;
const event_data /*: MSG_external<CayleyDiagramJSON> */ = (event.data /*: any */);
if (event_data.source == 'external') {
// Get json from message and build Cayley diagram from it, then start visualizer
const json_data = event_data.json;
Cayley_Diagram_View.fromJSON(json_data);
CVC.updateFromView();
DC.update();
startVisualizer();
// Acknowledge message and remove 'message' listener (this is the only consequential message it will get)
window.removeEventListener('message', receiveInitialSetup, false);
window.postMessage( STATE_LOADED_MESSAGE, myDomain );
// Set up periodic check for changes and enable their broadcast
VC.enableChangeBroadcast(() => Cayley_Diagram_View.toJSON());
setInterval( () => VC.broadcastChange(), 1000);
} else if ( event_data.source == 'editor'
|| ((event.data /*: any */) /*: string */) == LISTENER_READY_MESSAGE
|| ((event.data /*: any */) /*: string */) == STATE_LOADED_MESSAGE)
{
// we're just receiving our own messages -- ignore them
} else {
Log.warn('unknown message of origin $[event.orgin} received in CayleyDiagram.js:');
Log.warn(event.data);
}
}
// Resize the body, including the graphic
function resizeBody() {
$('body').height(window.innerHeight);
$('body').width(window.innerWidth);
Cayley_Diagram_View.resize();
};
/*
* Manages tooltip display in large graphic
*
* mousedown / touchstart clears all tooltips/menus/etc from entire screen
* if event wasn't over same objects as it was for
* if mouseup / touchend is over an object like a node or a chunk show new label or just remove old
* if mouseup is a click
* if $tooltip exists && new $tooltip would be for same element again
* remove old $tooltip
* else
* remove old $tooltip
* add new $tooltip
* endif
* endif
*
* click propagation is blocked to prevent the #bodyDouble click handler from removing the just-displayed label
*/
class Tooltip {
static init() {
$('#graphic')[0].addEventListener('click', Tooltip.eventHandler);
if (GEUtils.isTouchDevice()) {
$('#graphic')[0].addEventListener('touchstart', Tooltip.eventHandler);
} else {
$('#graphic')[0].addEventListener('mousedown', Tooltip.eventHandler);
$('#graphic')[0].addEventListener('wheel', Tooltip.eventHandler);
$('#graphic')[0].addEventListener('contextmenu', Tooltip.eventHandler);
}
}
static eventHandler(event /*: Event */) {
if (event.type == 'touchstart') {
const touchEvent = ((event /*: any */) /*: TouchEvent */);
// only handle single touch events
if (touchEvent.touches.length != 1)
return;
} else if (event.type == 'mousedown') {
const mouseEvent = ((event /*: any */) /*: MouseEvent */);
// if event is modified by shift key, etc., this event isn't about tooltips, so just return
if (mouseEvent.shiftKey || mouseEvent.ctrlKey || mouseEvent.altKey || mouseEvent.metaKey)
return;
} else if (event.type != 'click') {
GEUtils.cleanWindow();
return;
}
const event_location = (event.type == 'touchstart')
? ((event /*: any */) /*: TouchEvent */).touches[0]
: ((event /*: any */) /*: MouseEvent */);
switch (event.type) {
case 'touchstart':
case 'mousedown': {
const $old_tooltip = $('#tooltip:visible');
const current_objectIDs = Tooltip.getObjectIDsAtLocation(event_location).map( (obj) => obj.id ).join(', ');
const make_new_tooltip = current_objectIDs.length != 0 && // clicked over an object
!($old_tooltip.length != 0 && $old_tooltip.attr('objectIDs') == current_objectIDs); // not the same as existing tooltip
GEUtils.cleanWindow();
if (make_new_tooltip) {
const $new_tooltip = Tooltip.createTooltip(event_location);
const timeoutID = setTimeout( () => $new_tooltip.remove(), 500 );
$new_tooltip.attr('timeoutID', ((timeoutID /*: any */) /*: number */));
} }
break;
case 'click': {
const $tooltip = $('#tooltip');
if ($tooltip.length != 0) {
clearTimeout( (($tooltip.attr('timeoutID') /*: any */) /*: TimeoutID */) );
$tooltip.show();
event.stopPropagation();
} }
break;
// Unexpected events
default:
Log.warn(`CayleyDiagram Tooltip.eventHandler unexpected event ${event.type}`);
}
}
static getObjectIDsAtLocation(location /*: eventLocation */) /*: Array<THREE.Object3D> */ {
const $graphic = $(Cayley_Diagram_View.renderer.domElement);
const bounding_box = $graphic[0].getBoundingClientRect();
const x = ( (location.clientX - bounding_box.left) / $graphic.width()) * 2 - 1;
const y = -( (location.clientY - bounding_box.top) / $graphic.height()) * 2 + 1;
const objects = Cayley_Diagram_View.getObjectsAtPoint(x, y);
return objects;
}
static createTooltip(location /*: eventLocation */) {
const objects = Tooltip.getObjectIDsAtLocation(location);
const object_names = objects.map((obj) => obj.name);
const objectIDs_string = objects.map( (obj) => obj.id ).join(', ');
// create tooltip
const top = object_names[0];
const rest = object_names.slice(1);
const template_name = (rest.length == 0) ? 'single-object-template' :
(rest.length == 1) ? 'double-object-template' :
'multi-object-template';
const $tooltip = $(eval(Template.HTML(template_name)))
.appendTo('#graphic');
Menu.setMenuLocation($tooltip, location);
return $tooltip;
}
}
/* Highlighting routines */
function highlightByNodeColor(elements /*: Array<Array<groupElement>> */) {
Cayley_Diagram_View.drawColorHighlights(elements);
}
function highlightByRingAroundNode(elements /*: Array<Array<groupElement>> */) {
Cayley_Diagram_View.drawRingHighlights(elements);
}
function highlightBySquareAroundNode(elements /*: Array<Array<groupElement>> */) {
Cayley_Diagram_View.drawSquareHighlights(elements);
}
function clearHighlights() {
Cayley_Diagram_View.clearHighlights();
}