-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathdemo_single_frame.ts
621 lines (584 loc) · 17.6 KB
/
demo_single_frame.ts
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
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
/*
MIT License
Copyright (c) 2024 Looker Data Sciences, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
// IDs for content to demonstrate are configured in demo_config.ts
import type {
ILookerConnection,
ILookerEmbedSDK,
PageChangedEvent,
SessionStatus,
} from '../src/index'
import { getEmbedSDK } from '../src/index'
import type { RuntimeConfig } from './demo_config'
import {
getConfiguration,
updateConfiguration,
loadConfiguration,
} from './demo_config'
let embedConnection: ILookerConnection
let currentPageType: string
/**
* Save the embed connection. This provides access to the undelying
* functionality of each embed content type.
*/
const embedConnected = (connection: ILookerConnection) => {
embedConnection = connection
updateStatus('')
}
/**
* Update the visibility of the content controls. For example
* hide the content controls on the preload and extension pages
* as they do not make sense.
*/
const updateContentControls = (type = 'preload') => {
currentPageType = type
if (
type === 'preload' ||
type === 'extensions' ||
type === 'query-visualization' ||
type === 'reporting'
) {
document.getElementById('content-controls')?.classList.add('hide')
} else {
document.getElementById('content-controls')?.classList.remove('hide')
if (type === 'dashboards') {
document.getElementById('stop-embed')?.classList.remove('hide')
document.getElementById('edit-embed')?.classList.remove('hide')
} else {
document.getElementById('stop-embed')?.classList.add('hide')
document.getElementById('edit-embed')?.classList.add('hide')
}
}
}
/**
* Determine the type of page the IFRAME is currently displaying
*/
const pageChanged = (event: PageChangedEvent) => {
let pathname: string
try {
const url = new URL(event.page.absoluteUrl)
pathname = url.pathname
} catch (error) {
pathname = '/embed/preload'
}
updateContentControls(pathname.split('/')[2])
}
/**
* Update the status for each embedded element
*/
const updateStatus = (status: string) => {
const statusElement = document.querySelector('#embed-status')
if (statusElement) {
if (status) {
statusElement.textContent = status
} else {
statusElement.innerHTML = ' '
}
}
}
/**
* A canceller callback can prevent the default behavior of links on a dashboard.
* In this instance, if the click will navigate to a new window, the navigation is
* cancelled.
*/
const preventNavigation = (event: any): any => {
const { preventNavigation } = getConfiguration()
if (preventNavigation) {
updateStatus(`${event.label} clicked`)
return { cancel: !event.modal }
}
return {}
}
/**
* Update embed demo type
*/
const updateEmbedType = (event: any) => {
const runtimeConfig = getConfiguration()
runtimeConfig.embedType = event.target.value
updateConfiguration(runtimeConfig)
location.reload()
}
/**
* Initialize the embed type configuration radio buttons.
*/
const initializeEmbedTypeRadioButtons = () => {
const signedRb = document.getElementById('useSigned') as HTMLInputElement
const cookielessRb = document.getElementById(
'useCookieless'
) as HTMLInputElement
const privateRb = document.getElementById('usePrivate') as HTMLInputElement
if (signedRb && cookielessRb && privateRb) {
const { embedType } = getConfiguration()
switch (embedType) {
case 'cookieless':
cookielessRb.checked = true
break
case 'private':
privateRb.checked = true
break
default:
signedRb.checked = true
break
}
signedRb.addEventListener('change', updateEmbedType)
cookielessRb.addEventListener('change', updateEmbedType)
privateRb.addEventListener('change', updateEmbedType)
}
}
/**
* Initialize the prevent navigation configuration checkbox.
*/
const initializePreventNavigationCheckbox = () => {
const cb = document.getElementById('preventNavigation') as HTMLInputElement
if (cb) {
const { preventNavigation } = getConfiguration()
cb.checked = preventNavigation
cb.addEventListener('change', (event: any) => {
const runtimeConfig = getConfiguration()
runtimeConfig.preventNavigation = event.target.checked
updateConfiguration(runtimeConfig)
})
}
}
/**
* Initialize the use dynamic heights configuration checkbox.
*/
const initializeUseDynamicHeightsCheckbox = () => {
const cb = document.getElementById('useDynamicHeights') as HTMLInputElement
if (cb) {
const { useDynamicHeights } = getConfiguration()
cb.checked = useDynamicHeights
cb.addEventListener('change', (event: any) => {
const runtimeConfig = getConfiguration()
runtimeConfig.useDynamicHeights = event.target.checked
updateConfiguration(runtimeConfig)
location.reload()
})
}
}
/**
* Clear the currently active tab
*/
const clearActiveTab = () => {
const e = document.querySelector('.active')
if (e) {
e.classList.remove('active')
}
}
/**
* Set a tab active
*/
const setActiveTab = (e: HTMLElement) => {
e.classList.add('active')
}
/**
* Set a tab active
*/
const hideTab = (id: string) => {
const e = document.getElementById(id)
if (e) {
e.remove()
}
}
/**
* Add a listener for a tab. The load function controls what
* data will be displayed when the tab is clicked.
*/
const addTabListener = (id: string, loadFunction: () => void) => {
const e = document.getElementById(id)
if (e) {
e.addEventListener('click', (event: Event) => {
event.stopPropagation()
if (embedConnection?.isEditing()) {
updateStatus('Navigation not allowed while editing')
} else {
clearActiveTab()
setActiveTab(e)
loadFunction()
}
})
}
}
/**
* Preload tab function
*/
const preload = async () => {
if (embedConnection) {
await embedConnection.preload()
updateStatus('')
}
}
/**
* Load dashboard tab function
*/
const loadDashboard1 = () => {
if (embedConnection) {
const config = getConfiguration()
if (config.dashboardId) {
// loadDashboard falls back to legacy "dashboard:load" embed action
embedConnection.loadDashboard(config.dashboardId)
}
}
}
/**
* Load dashboard tab function
*/
const loadDashboard2 = () => {
if (embedConnection) {
const config = getConfiguration()
if (config.dashboardId2) {
// loadDashboard falls back to legacy "dashboard:load" embed action
embedConnection.loadDashboard(config.dashboardId2)
}
}
}
/**
* Load explore tab function
*/
const loadExplore = async () => {
if (embedConnection) {
const config = getConfiguration()
if (config.exploreId) {
try {
await embedConnection.loadExplore(config.exploreId)
} catch (error) {
updateStatus(
'Connection loadExplore functionality requires Looker version >= 25.2.0'
)
}
}
}
}
/**
* Load look tab function
*/
const loadLook = async () => {
if (embedConnection) {
const config = getConfiguration()
if (config.lookId) {
try {
await embedConnection.loadLook(config.lookId)
} catch (error) {
updateStatus(
'Connection loadLook functionality requires Looker version >= 25.2.0'
)
}
}
}
}
/**
* Load extension tab function
*/
const loadExtension = async () => {
if (embedConnection) {
const config = getConfiguration()
if (config.extensionId) {
try {
await embedConnection.loadExtension(config.extensionId)
} catch (error) {
updateStatus(
'Connection loadExtension functionality requires requires Looker version >= 25.2.0'
)
}
}
}
}
/**
* Load query visualization tab function
*/
const loadQueryVisualization = async () => {
if (embedConnection) {
const config = getConfiguration()
if (config.queryVisualizationId) {
try {
await embedConnection.loadQueryVisualization(
config.queryVisualizationId
)
} catch (error) {
updateStatus(
'Connection loadQueryVisualization functionality requires Looker version >= 25.2.0'
)
}
}
}
}
/**
* Load query visualization tab function
*/
const loadReport = async () => {
if (embedConnection) {
const config = getConfiguration()
if (config.reportId) {
try {
await embedConnection.loadReport(config.reportId)
} catch (error) {
updateStatus(
'Connection loadReport functionality requires Looker version >= 25.2.0'
)
}
}
}
}
/**
* Initialize the tabs
*/
const initializeTabs = () => {
addTabListener('preload-tab', preload)
const config = getConfiguration()
if (config.dashboardId) {
addTabListener('dashboard-1-tab', loadDashboard1)
} else {
hideTab('dashboard-1-tab')
}
if (config.dashboardId2) {
addTabListener('dashboard-2-tab', loadDashboard2)
} else {
hideTab('dashboard-2-tab')
}
if (config.exploreId) {
addTabListener('explore-tab', loadExplore)
} else {
hideTab('explore-tab')
}
if (config.lookId) {
addTabListener('look-tab', loadLook)
} else {
hideTab('look-tab')
}
if (config.extensionId) {
addTabListener('extension-tab', loadExtension)
} else {
hideTab('extension-tab')
}
if (config.queryVisualizationId) {
addTabListener('query-visualization-tab', loadQueryVisualization)
} else {
hideTab('query-visualization-tab')
}
if (config.reportId) {
addTabListener('report-tab', loadReport)
} else {
hideTab('report-tab')
}
}
/**
* Initialize the content controls (run, stop, edit, filter)
*/
const initializeContentControls = () => {
const runButton = document.querySelector('#run-embed')
if (runButton) {
runButton.addEventListener('click', () => {
switch (currentPageType) {
case 'dashboards':
embedConnection.asDashboardConnection().run()
break
case 'explore':
embedConnection.asExploreConnection().run()
break
case 'looks':
embedConnection.asLookConnection().run()
break
}
})
}
const stopButton = document.querySelector('#stop-embed')
if (stopButton) {
stopButton.addEventListener('click', () => {
switch (currentPageType) {
case 'dashboards':
embedConnection.asDashboardConnection().stop()
break
}
})
}
const editButton = document.querySelector('#edit-embed')
if (editButton) {
editButton.addEventListener('click', () => {
switch (currentPageType) {
case 'dashboards':
embedConnection.asDashboardConnection().edit()
break
}
})
}
const stateFilter = document.querySelector('#state-filter')
if (stateFilter) {
stateFilter.addEventListener('change', (event) => {
const filter = {
'State / Region': (event.target as HTMLSelectElement).value,
}
switch (currentPageType) {
case 'dashboards':
embedConnection.asDashboardConnection().updateFilters(filter)
break
case 'explore':
embedConnection.asExploreConnection().updateFilters(filter)
break
case 'looks':
embedConnection.asLookConnection().updateFilters(filter)
break
}
})
}
}
/**
* Initialize controls.
*/
const initializeControls = () => {
updateContentControls()
initializePreventNavigationCheckbox()
initializeEmbedTypeRadioButtons()
initializeUseDynamicHeightsCheckbox()
initializeTabs()
initializeContentControls()
}
/**
* Monitor cookieless embed session status. A simple implementation
* that displays a message.
*/
const processSessionStatus = (event: SessionStatus) => {
const { expired, interrupted } = event
if (expired) {
updateStatus('Session has expired')
} else if (interrupted) {
updateStatus('Session has been interrupted')
}
}
/**
* Render the embed.
*/
const createEmbed = (runtimeConfig: RuntimeConfig, sdk: ILookerEmbedSDK) => {
const abortController = new AbortController()
const signal = abortController.signal
let timeoutId: any = setTimeout(() => {
abortController.abort(
`Connection attempt timed out. Please check that ${location.origin} has been allow listed`
)
timeoutId = undefined
}, 60000)
sdk
.preload()
// When true scrolls the top of the IFRAME into view
.withDialogScroll(runtimeConfig.useDynamicHeights)
// When true updates the IFRAME height to reflect the height of the
// dashboard
.withDynamicIFrameHeight(runtimeConfig.useDynamicHeights)
// When true monitors the scroll position of the hosting window
// and sends it to the Looker IFRAME. The Looker IFRAME uses the
// information to position dialogs correctly.
.withScrollMonitor(runtimeConfig.useDynamicHeights)
// Allow fullscreen tile visualizations
.withAllowAttr('fullscreen')
// Applicable to private embed only. If the user is not logged in,
// the Looker login page will be displayed. Note that this will not
// in Looker core.
.withAllowLoginScreen()
// Append to the #dashboard element
.appendTo('#embed-container')
.on('page:changed', (event: PageChangedEvent) => {
pageChanged(event)
})
// Listen to messages to display dashboard progress
.on('dashboard:loaded', () => updateStatus('Loaded'))
.on('dashboard:run:start', () => updateStatus('Running'))
.on('dashboard:run:complete', () => updateStatus('Done'))
// Listen to messages that change dashboard
.on('dashboard:edit:start', () => updateStatus('Editing'))
.on('dashboard:edit:cancel', () => updateStatus('Editing cancelled'))
.on('dashboard:save:complete', () => updateStatus('Saved'))
.on('dashboard:delete:complete', () => updateStatus('Deleted'))
.on('session:status', (event: SessionStatus) => {
processSessionStatus(event)
})
// Listen to messages to prevent the user from navigating away
.on('drillmenu:click', preventNavigation)
.on('drillmodal:explore', preventNavigation)
.on('dashboard:tile:explore', preventNavigation)
.on('dashboard:tile:view', preventNavigation)
// Listen to messages to display explore progress
.on('explore:ready', () => updateStatus('Loaded'))
.on('explore:run:start', () => updateStatus('Running'))
.on('explore:run:complete', () => updateStatus('Done'))
// Listen to messages to display look progress
.on('look:ready', () => updateStatus('Loaded'))
.on('look:run:start', () => updateStatus('Running'))
.on('look:run:complete', () => updateStatus('Done'))
// Listen to messages that change Look
.on('look:edit:start', () => updateStatus('Editing'))
.on('look:edit:cancel', () => updateStatus('Editing cancelled'))
.on('look:save:complete', () => updateStatus('Saved'))
.on('look:delete:complete', () => updateStatus('Deleted'))
// Session expired
.on('session:expired', () => updateStatus('Session Expired'))
// Give the embedded content a class for styling purposes
.withClassName('looker-embed')
// Set the initial filters
.withFilters({ 'State / Region': 'California' })
// Finalize the build
.build()
// Connect to Looker
.connect({ waitUntilLoaded: true, signal })
// Finish up setup
.then((connection) => {
if (timeoutId) {
clearTimeout(timeoutId)
timeoutId = undefined
}
embedConnected(connection)
})
// Log if something went wrong
.catch((error: any) => {
updateStatus(typeof error === 'string' ? error : 'Connection error')
console.error('Connection error', error)
})
}
/**
* Initialize the SDK. lookerHost is the address of the Looker instance. It is configured in
* democonfig.ts. lookerHost needs to be set for messages to be exchanged from the host
* document to the embedded content. The auth endpoint is documented in README.md.
*/
const initializeEmbedSdk = (runtimeConfig: RuntimeConfig) => {
const sdk: ILookerEmbedSDK = getEmbedSDK()
if (runtimeConfig.embedType === 'cookieless') {
// Use cookieless embed
sdk.initCookieless(
runtimeConfig.lookerHost,
`${runtimeConfig.proxyPath}/acquire-embed-session`,
`${runtimeConfig.proxyPath}/generate-embed-tokens`
)
} else if (runtimeConfig.embedType === 'private') {
// Use private embedding
sdk.init(runtimeConfig.lookerHost)
} else {
// Use SSO embed
sdk.init(runtimeConfig.lookerHost, `${runtimeConfig.proxyPath}/auth`)
}
// Now preload the embed
createEmbed(runtimeConfig, sdk)
}
/**
* Event listener to create embedded content. Waits until DOM is loaded so that
* all the parent elements are present.
*/
document.addEventListener('DOMContentLoaded', function () {
loadConfiguration()
initializeControls()
const runtimeConfig = getConfiguration()
initializeEmbedSdk(runtimeConfig)
})