-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.js
458 lines (395 loc) · 12.2 KB
/
index.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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
import Overlay from './core/overlay';
import Element from './core/element';
import Popover from './core/popover';
import {
CLASS_CLOSE_BTN,
CLASS_NEXT_STEP_BTN,
CLASS_PREV_STEP_BTN,
ESC_KEY_CODE,
ID_POPOVER,
LEFT_KEY_CODE,
OVERLAY_OPACITY,
OVERLAY_PADDING,
RIGHT_KEY_CODE,
SHOULD_ANIMATE_OVERLAY,
SHOULD_OUTSIDE_CLICK_CLOSE,
SHOULD_OUTSIDE_CLICK_NEXT,
ALLOW_KEYBOARD_CONTROL,
} from './common/constants';
import Stage from './core/stage';
import { isDomElement } from './common/utils';
/**
* Plugin class that drives the plugin
*/
export default class Driver {
/**
* @param {Object} options
*/
constructor(options = {}) {
this.options = {
animate: SHOULD_ANIMATE_OVERLAY, // Whether to animate or not
opacity: OVERLAY_OPACITY, // Overlay opacity
padding: OVERLAY_PADDING, // Spacing around the element from the overlay
scrollIntoViewOptions: null, // Options to be passed to `scrollIntoView`
allowClose: SHOULD_OUTSIDE_CLICK_CLOSE, // Whether to close overlay on click outside the element
keyboardControl: ALLOW_KEYBOARD_CONTROL, // Whether to allow controlling through keyboard or not
overlayClickNext: SHOULD_OUTSIDE_CLICK_NEXT, // Whether to move next on click outside the element
stageBackground: '#ffffff', // Background color for the stage
onHighlightStarted: () => null, // When element is about to be highlighted
onHighlighted: () => null, // When element has been highlighted
onDeselected: () => null, // When the element has been deselected
onReset: () => null, // When overlay is about to be cleared
onNext: () => null, // When next button is clicked
onPrevious: () => null, // When previous button is clicked
...options,
};
this.document = document;
this.window = window;
this.isActivated = false;
this.steps = []; // steps to be presented if any
this.currentStep = 0; // index for the currently highlighted step
this.currentMovePrevented = false; // If the current move was prevented
this.overlay = new Overlay(this.options, window, document);
this.onResize = this.onResize.bind(this);
this.onKeyUp = this.onKeyUp.bind(this);
this.onClick = this.onClick.bind(this);
this.moveNext = this.moveNext.bind(this);
this.movePrevious = this.movePrevious.bind(this);
this.preventMove = this.preventMove.bind(this);
// Event bindings
this.bind();
}
/**
* Getter for steps property
* @readonly
* @public
*/
getSteps() {
return this.steps;
}
/**
* Setter for steps property
* @param steps
* @public
*/
setSteps(steps) {
this.steps = steps;
}
/**
* Binds any DOM events listeners
* @todo: add throttling in all the listeners
* @private
*/
bind() {
this.window.addEventListener('resize', this.onResize, false);
this.window.addEventListener('keyup', this.onKeyUp, false);
// Binding both touch and click results in popup getting shown and then immediately get hidden.
// Adding the check to not bind the click event if the touch is supported i.e. on mobile devices
// Issue: https://github.com/kamranahmedse/driver.js/issues/150
if (!('ontouchstart' in document.documentElement)) {
this.window.addEventListener('click', this.onClick, false);
}
this.window.addEventListener('touchstart', this.onClick, false);
}
/**
* Removes the popover if clicked outside the highlighted element
* or outside the
* @param e
* @private
*/
onClick(e) {
if (!this.isActivated || !this.hasHighlightedElement()) {
return;
}
// Stop the event propagation on click/tap. `onClick` handles
// both touch and click events – which on some browsers causes
// the click to close the tour
e.stopPropagation();
const highlightedElement = this.overlay.getHighlightedElement();
const popover = this.document.getElementById(ID_POPOVER);
const clickedHighlightedElement = highlightedElement.node.contains(e.target);
const clickedPopover = popover && popover.contains(e.target);
// Perform the 'Next' operation when clicked outside the highlighted element
if (!clickedHighlightedElement && !clickedPopover && this.options.overlayClickNext) {
this.handleNext();
return;
}
// Remove the overlay If clicked outside the highlighted element
if (!clickedHighlightedElement && !clickedPopover && this.options.allowClose) {
this.reset();
return;
}
const nextClicked = e.target.classList.contains(CLASS_NEXT_STEP_BTN);
const prevClicked = e.target.classList.contains(CLASS_PREV_STEP_BTN);
const closeClicked = e.target.classList.contains(CLASS_CLOSE_BTN);
if (closeClicked) {
this.reset();
return;
}
if (nextClicked) {
this.handleNext();
} else if (prevClicked) {
this.handlePrevious();
}
}
/**
* Handler for the onResize DOM event
* Makes sure highlighted element stays at valid position
* @private
*/
onResize() {
if (!this.isActivated) {
return;
}
this.refresh();
}
/**
* Refreshes and repositions the popover and the overlay
*/
refresh() {
this.overlay.refresh();
}
/**
* Clears the overlay on escape key process
* @param event
* @private
*/
onKeyUp(event) {
// If driver is not active or keyboard control is disabled
if (!this.isActivated || !this.options.keyboardControl) {
return;
}
// If escape was pressed and it is allowed to click outside to close
if (event.keyCode === ESC_KEY_CODE) {
this.reset();
return;
}
// If there is no highlighted element or there is a highlighted element
// without popover or if the popover does not allow buttons - ignore
const highlightedElement = this.getHighlightedElement();
if (!highlightedElement || !highlightedElement.popover) {
return;
}
if (event.keyCode === RIGHT_KEY_CODE) {
this.handleNext();
} else if (event.keyCode === LEFT_KEY_CODE) {
this.handlePrevious();
}
}
/**
* Moves to the previous step if possible
* otherwise resets the overlay
* @public
*/
movePrevious() {
const previousStep = this.steps[this.currentStep - 1];
if (!previousStep) {
this.reset();
return;
}
this.overlay.highlight(previousStep);
this.currentStep -= 1;
}
/**
* Prevents the current move. Useful in `onNext` if you want to
* perform some asynchronous task and manually move to next step
* @public
*/
preventMove() {
this.currentMovePrevented = true;
}
/**
* Handles the internal "move to next" event
* @private
*/
handleNext() {
this.currentMovePrevented = false;
// Call the bound `onNext` handler if available
const currentStep = this.steps[this.currentStep];
if (currentStep && currentStep.options && currentStep.options.onNext) {
currentStep.options.onNext(this.overlay.highlightedElement);
}
if (this.currentMovePrevented) {
return;
}
this.moveNext();
}
/**
* Handles the internal "move to previous" event
* @private
*/
handlePrevious() {
this.currentMovePrevented = false;
// Call the bound `onPrevious` handler if available
const currentStep = this.steps[this.currentStep];
if (currentStep && currentStep.options && currentStep.options.onPrevious) {
currentStep.options.onPrevious(this.overlay.highlightedElement);
}
if (this.currentMovePrevented) {
return;
}
this.movePrevious();
}
/**
* Moves to the next step if possible
* otherwise resets the overlay
* @public
*/
moveNext() {
const nextStep = this.steps[this.currentStep + 1];
if (!nextStep) {
this.reset();
return;
}
this.overlay.highlight(nextStep);
this.currentStep += 1;
}
/**
* @returns {boolean}
* @public
*/
hasNextStep() {
return !!this.steps[this.currentStep + 1];
}
/**
* @returns {boolean}
* @public
*/
hasPreviousStep() {
return !!this.steps[this.currentStep - 1];
}
/**
* Resets the steps if any and clears the overlay
* @param {boolean} immediate
* @public
*/
reset(immediate = false) {
this.currentStep = 0;
this.isActivated = false;
this.overlay.clear(immediate);
}
/**
* Checks if there is any highlighted element or not
* @returns {boolean}
* @public
*/
hasHighlightedElement() {
const highlightedElement = this.overlay.getHighlightedElement();
return highlightedElement && highlightedElement.node;
}
/**
* Gets the currently highlighted element in overlay
* @returns {Element}
* @public
*/
getHighlightedElement() {
return this.overlay.getHighlightedElement();
}
/**
* Gets the element that was highlighted before currently highlighted element
* @returns {Element}
* @public
*/
getLastHighlightedElement() {
return this.overlay.getLastHighlightedElement();
}
/**
* Defines steps to be highlighted
* @param {array} steps
* @public
*/
defineSteps(steps) {
this.steps = [];
for (let counter = 0; counter < steps.length; counter++) {
const element = this.prepareElementFromStep(steps[counter], steps, counter);
if (!element) {
continue;
}
this.steps.push(element);
}
}
/**
* Prepares the step received from the user and returns an instance
* of Element
*
* @param currentStep Step that is being prepared
* @param allSteps List of all the steps
* @param index Index of the current step
* @returns {null|Element}
* @private
*/
prepareElementFromStep(currentStep, allSteps = [], index = 0) {
let elementOptions = { ...this.options };
let querySelector = currentStep;
// If the `currentStep` is step definition
// then grab the options and element from the definition
const isStepDefinition = typeof currentStep !== 'string' && !isDomElement(currentStep);
if (!currentStep || (isStepDefinition && !currentStep.element)) {
throw new Error(`Element is required in step ${index}`);
}
if (isStepDefinition) {
querySelector = currentStep.element;
elementOptions = { ...this.options, ...currentStep };
}
// If the given element is a query selector or a DOM element?
const domElement = isDomElement(querySelector) ? querySelector : this.document.querySelector(querySelector);
if (!domElement) {
console.warn(`Element to highlight ${querySelector} not found`);
return null;
}
let popover = null;
if (elementOptions.popover && elementOptions.popover.title) {
const mergedClassNames = [
this.options.className,
elementOptions.popover.className,
].filter(c => c).join(' ');
const popoverOptions = {
...elementOptions,
...elementOptions.popover,
className: mergedClassNames,
totalCount: allSteps.length,
currentIndex: index,
isFirst: index === 0,
isLast: allSteps.length === 0 || index === allSteps.length - 1, // Only one item or last item
};
popover = new Popover(popoverOptions, this.window, this.document);
}
const stageOptions = { ...elementOptions };
const stage = new Stage(stageOptions, this.window, this.document);
return new Element({
node: domElement,
options: elementOptions,
popover,
stage,
overlay: this.overlay,
window: this.window,
document: this.document,
});
}
/**
* Initiates highlighting steps from first step
* @param {number} index at which highlight is to be started
* @public
*/
start(index = 0) {
if (!this.steps || this.steps.length === 0) {
throw new Error('There are no steps defined to iterate');
}
this.isActivated = true;
this.currentStep = index;
this.overlay.highlight(this.steps[index]);
}
/**
* Highlights the given element
* @param {string|{element: string, popover: {}}} selector Query selector or a step definition
* @public
*/
highlight(selector) {
this.isActivated = true;
const element = this.prepareElementFromStep(selector);
if (!element) {
return;
}
this.overlay.highlight(element);
}
}