@gcorevideo/player 2.28.24 → 2.28.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/core.js +45 -32
- package/dist/index.css +305 -305
- package/dist/index.embed.js +119 -40
- package/dist/index.js +255 -124
- package/lib/Player.d.ts.map +1 -1
- package/lib/index.core.d.ts +1 -1
- package/lib/index.core.d.ts.map +1 -1
- package/lib/index.core.js +1 -1
- package/lib/index.plugins.d.ts +34 -34
- package/lib/index.plugins.d.ts.map +1 -1
- package/lib/index.plugins.js +34 -34
- package/lib/playback/dash-playback/DashPlayback.d.ts +4 -0
- package/lib/playback/dash-playback/DashPlayback.d.ts.map +1 -1
- package/lib/playback/dash-playback/DashPlayback.js +7 -0
- package/lib/playback/types.d.ts.map +1 -1
- package/lib/plugins/bottom-gear/BottomGear.d.ts.map +1 -1
- package/lib/plugins/bottom-gear/BottomGear.js +3 -1
- package/lib/plugins/clappr-nerd-stats/speedtest/index.d.ts.map +1 -1
- package/lib/plugins/clappr-nerd-stats/speedtest/index.js +9 -5
- package/lib/plugins/clappr-nerd-stats/speedtest/types.d.ts.map +1 -1
- package/lib/plugins/clappr-nerd-stats/utils.d.ts +2 -2
- package/lib/plugins/clips/utils.d.ts.map +1 -1
- package/lib/plugins/cmcd-config/CmcdConfig.js +1 -1
- package/lib/plugins/favicon/Favicon.d.ts.map +1 -1
- package/lib/plugins/google-analytics/GoogleAnalytics.d.ts.map +1 -1
- package/lib/plugins/google-analytics/GoogleAnalytics.js +10 -3
- package/lib/plugins/kibo/index.d.ts.map +1 -1
- package/lib/plugins/kibo/index.js +69 -20
- package/lib/plugins/level-selector/QualityLevels.js +2 -2
- package/lib/plugins/logo/Logo.d.ts.map +1 -1
- package/lib/plugins/logo/Logo.js +19 -15
- package/lib/plugins/logo/utils/index.d.ts.map +1 -1
- package/lib/plugins/logo/utils/index.js +11 -7
- package/lib/plugins/media-control/MediaControl.d.ts.map +1 -1
- package/lib/plugins/multi-camera/MultiCamera.d.ts.map +1 -1
- package/lib/plugins/multi-camera/MultiCamera.js +42 -20
- package/lib/plugins/picture-in-picture/PictureInPicture.d.ts.map +1 -1
- package/lib/plugins/picture-in-picture/PictureInPicture.js +3 -2
- package/lib/plugins/share/Share.d.ts.map +1 -1
- package/lib/plugins/share/Share.js +17 -12
- package/lib/plugins/skip-time/SkipTime.d.ts.map +1 -1
- package/lib/plugins/spinner-three-bounce/SpinnerThreeBounce.d.ts.map +1 -1
- package/lib/plugins/subtitles/ClosedCaptions.d.ts +2 -0
- package/lib/plugins/subtitles/ClosedCaptions.d.ts.map +1 -1
- package/lib/plugins/subtitles/ClosedCaptions.js +25 -5
- package/lib/plugins/thumbnails/Thumbnails.js +2 -3
- package/lib/plugins/thumbnails/utils.d.ts.map +1 -1
- package/lib/plugins/utils/fullscreen.d.ts.map +1 -1
- package/lib/plugins/utils.d.ts.map +1 -1
- package/lib/plugins/utils.js +1 -1
- package/lib/plugins/vast-ads/VastAds.d.ts.map +1 -1
- package/lib/plugins/vast-ads/VastAds.js +2 -1
- package/lib/plugins/vast-ads/loaderxml.d.ts.map +1 -1
- package/lib/plugins/vast-ads/loaderxml.js +8 -5
- package/lib/plugins/vast-ads/roll.d.ts +2 -2
- package/lib/plugins/vast-ads/roll.d.ts.map +1 -1
- package/lib/plugins/vast-ads/roll.js +16 -10
- package/lib/plugins/vast-ads/rollmanager.d.ts.map +1 -1
- package/lib/plugins/vast-ads/rollmanager.js +17 -7
- package/lib/plugins/vast-ads/sctemanager.d.ts +1 -1
- package/lib/plugins/vast-ads/sctemanager.d.ts.map +1 -1
- package/lib/plugins/vast-ads/sctemanager.js +6 -5
- package/lib/plugins/vast-ads/types.d.ts.map +1 -1
- package/lib/plugins/vast-ads/urlhandler.d.ts.map +1 -1
- package/lib/plugins/vast-ads/xmlhttprequest.d.ts.map +1 -1
- package/lib/plugins/vast-ads/xmlhttprequest.js +3 -2
- package/lib/plugins/vast-ads/xmlmerge.d.ts.map +1 -1
- package/lib/plugins/vast-ads/xmlmerge.js +4 -3
- package/lib/types.d.ts +1 -1
- package/lib/types.d.ts.map +1 -1
- package/lib/utils/clickaway.d.ts.map +1 -1
- package/lib/utils/mediaSources.d.ts.map +1 -1
- package/lib/utils/mediaSources.js +1 -3
- package/lib/utils/types.d.ts.map +1 -1
- package/lib/version.js +2 -2
- package/package.json +2 -2
- package/src/Player.ts +10 -10
- package/src/__tests__/Player.test.ts +33 -10
- package/src/index.core.ts +9 -1
- package/src/index.plugins.ts +35 -35
- package/src/playback/__tests__/HTML5Video.test.ts +10 -4
- package/src/playback/dash-playback/DashPlayback.ts +8 -0
- package/src/playback/dash-playback/__tests__/DashPlayback.test.ts +10 -38
- package/src/playback/hls-playback/__tests__/HlsPlayback.test.ts +12 -45
- package/src/playback/types.ts +0 -1
- package/src/playback.types.ts +1 -2
- package/src/plugins/audio-selector/AudioTracks.ts +1 -1
- package/src/plugins/audio-selector/__tests__/AudioTracks.test.ts +30 -11
- package/src/plugins/bottom-gear/BottomGear.ts +3 -2
- package/src/plugins/clappr-nerd-stats/NerdStats.ts +1 -1
- package/src/plugins/clappr-nerd-stats/speedtest/index.ts +104 -82
- package/src/plugins/clappr-nerd-stats/speedtest/types.ts +3 -3
- package/src/plugins/clappr-nerd-stats/utils.ts +2 -2
- package/src/plugins/clappr-stats/__tests__/ClapprStats.test.ts +30 -18
- package/src/plugins/clips/utils.ts +5 -1
- package/src/plugins/cmcd-config/CmcdConfig.ts +1 -1
- package/src/plugins/error-screen/__tests__/ErrorScreen.test.ts +21 -15
- package/src/plugins/favicon/Favicon.ts +73 -49
- package/src/plugins/google-analytics/GoogleAnalytics.ts +93 -58
- package/src/plugins/kibo/index.ts +183 -109
- package/src/plugins/level-selector/QualityLevels.ts +2 -2
- package/src/plugins/logo/Logo.ts +134 -105
- package/src/plugins/logo/utils/index.ts +27 -20
- package/src/plugins/media-control/MediaControl.ts +12 -6
- package/src/plugins/multi-camera/MultiCamera.ts +218 -157
- package/src/plugins/picture-in-picture/PictureInPicture.ts +41 -37
- package/src/plugins/playback-rate/__tests__/PlaybackRate.test.ts +25 -11
- package/src/plugins/poster/__tests__/Poster.test.ts +8 -9
- package/src/plugins/share/Share.ts +85 -60
- package/src/plugins/skip-time/SkipTime.ts +5 -1
- package/src/plugins/spinner-three-bounce/SpinnerThreeBounce.ts +8 -5
- package/src/plugins/subtitles/ClosedCaptions.ts +30 -6
- package/src/plugins/subtitles/__tests__/ClosedCaptions.test.ts +2 -3
- package/src/plugins/thumbnails/Thumbnails.ts +22 -21
- package/src/plugins/thumbnails/__tests__/Thumbnails.test.ts +14 -7
- package/src/plugins/thumbnails/utils.ts +3 -1
- package/src/plugins/typings/globals.d.ts +7 -7
- package/src/plugins/typings/workers.d.ts +3 -3
- package/src/plugins/utils/fullscreen.ts +2 -2
- package/src/plugins/utils.ts +17 -13
- package/src/plugins/vast-ads/VastAds.ts +4 -5
- package/src/plugins/vast-ads/loaderxml.ts +142 -101
- package/src/plugins/vast-ads/roll.ts +381 -284
- package/src/plugins/vast-ads/rollmanager.ts +214 -170
- package/src/plugins/vast-ads/sctemanager.ts +66 -48
- package/src/plugins/vast-ads/types.ts +15 -9
- package/src/plugins/vast-ads/urlhandler.ts +18 -13
- package/src/plugins/vast-ads/xmlhttprequest.ts +25 -20
- package/src/plugins/vast-ads/xmlmerge.ts +42 -32
- package/src/plugins/video360/VRControls.js +50 -42
- package/src/plugins/video360/VREffect.js +298 -206
- package/src/plugins/video360/Video360.js +553 -423
- package/src/plugins/video360/orbit-oriention-controls.js +526 -421
- package/src/plugins/video360/utils.js +18 -18
- package/src/types.ts +5 -3
- package/src/typings/@clappr/core/error_mixin.d.ts +9 -9
- package/src/typings/@clappr/core/index.d.ts +1 -3
- package/src/typings/@clappr/core/playback.d.ts +3 -3
- package/src/typings/@clappr/index.d.ts +1 -1
- package/src/typings/globals.d.ts +15 -15
- package/src/utils/__tests__/mediaSources.test.ts +42 -26
- package/src/utils/clickaway.ts +24 -24
- package/src/utils/errors.ts +2 -2
- package/src/utils/mediaSources.ts +5 -4
- package/src/utils/types.ts +1 -1
- package/src/version.ts +2 -2
- package/tsconfig.tsbuildinfo +1 -1
package/lib/Player.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Player.d.ts","sourceRoot":"","sources":["../src/Player.ts"],"names":[],"mappings":"AAiBA,OAAO,KAAK,EACV,aAAa,EACb,iBAAiB,EAEjB,uBAAuB,EACxB,MAAM,YAAY,CAAA;AACnB,OAAO,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AAGtD,OAAO,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAA;AAGjE;;GAEG;AACH,MAAM,MAAM,iBAAiB,CAAC,CAAC,SAAS,WAAW,IACjD,CAAC,SAAS,WAAW,CAAC,IAAI,GACtB,CAAC,MAAM,CAAC,GACR,CAAC,SAAS,WAAW,CAAC,YAAY,
|
|
1
|
+
{"version":3,"file":"Player.d.ts","sourceRoot":"","sources":["../src/Player.ts"],"names":[],"mappings":"AAiBA,OAAO,KAAK,EACV,aAAa,EACb,iBAAiB,EAEjB,uBAAuB,EACxB,MAAM,YAAY,CAAA;AACnB,OAAO,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AAGtD,OAAO,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAA;AAGjE;;GAEG;AACH,MAAM,MAAM,iBAAiB,CAAC,CAAC,SAAS,WAAW,IACjD,CAAC,SAAS,WAAW,CAAC,IAAI,GACtB,CAAC,MAAM,CAAC,GACR,CAAC,SAAS,WAAW,CAAC,YAAY,GAChC,CAAC,MAAM,CAAC,GACR,CAAC,SAAS,WAAW,CAAC,UAAU,GAC9B,CAAC,YAAY,CAAC,GACd,CAAC,SAAS,WAAW,CAAC,MAAM,GAC1B,CAAC;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,MAAM,CAAA;CAAE,CAAC,GACnC,CAAC,SAAS,WAAW,CAAC,UAAU,GAC9B,CAAC,OAAO,CAAC,GACT,CAAC,SAAS,WAAW,CAAC,KAAK,GACzB,CAAC,aAAa,CAAC,GACf,EAAE,CAAA;AAElB;;;;GAIG;AACH,MAAM,MAAM,kBAAkB,CAAC,CAAC,SAAS,WAAW,IAAI,CACtD,GAAG,IAAI,EAAE,iBAAiB,CAAC,CAAC,CAAC,KAC1B,IAAI,CAAA;AAeT;;;GAGG;AACH,MAAM,MAAM,cAAc,GAAG,MAAM,GAAG,KAAK,GAAG,aAAa,CAAA;AAI3D;;;;;;;GAOG;AACH,qBAAa,MAAM;IACjB,OAAO,CAAC,MAAM,CAAgC;IAE9C,OAAO,CAAC,OAAO,CAAqB;IAEpC,OAAO,CAAC,MAAM,CAA4B;IAE1C,OAAO,CAAC,KAAK,CAAQ;IAErB,OAAO,CAAC,QAAQ,CAA2B;gBAE/B,MAAM,EAAE,YAAY;IAOhC;;;;OAIG;IACH,EAAE,CAAC,CAAC,SAAS,WAAW,EAAE,KAAK,EAAE,CAAC,EAAE,OAAO,EAAE,kBAAkB,CAAC,CAAC,CAAC;IAIlE;;;;OAIG;IACH,GAAG,CAAC,CAAC,SAAS,WAAW,EAAE,KAAK,EAAE,CAAC,EAAE,OAAO,EAAE,kBAAkB,CAAC,CAAC,CAAC;IAInE;;;;;;;;;OASG;IACH,SAAS,CAAC,MAAM,EAAE,OAAO,CAAC,YAAY,CAAC;IAIvC;;;;;;;;;;;;;;;;;;;;;;;;;;OA0BG;IACH,QAAQ,CAAC,aAAa,EAAE,WAAW,GAAG,IAAI;IAgB1C;;OAEG;IACH,OAAO;IAQP;;;;;;OAMG;IACH,cAAc,IAAI,MAAM;IAOxB;;;;;;OAMG;IACH,WAAW,IAAI,MAAM;IAOrB;;OAEG;IACH,YAAY,IAAI,OAAO;IAIvB;;;;OAIG;IACH,UAAU,IAAI,OAAO;IAIrB;;;;;OAKG;IACH,OAAO,IAAI,OAAO;IAIlB;;OAEG;IACH,SAAS,IAAI,OAAO;IAIpB;;;;OAIG;IACH,IAAI,CAAC,YAAY,EAAE,iBAAiB,EAAE;IAyBtC;;OAEG;IACH,IAAI;IAIJ;;OAEG;IACH,MAAM;IAIN;;OAEG;IACH,KAAK;IAIL;;OAEG;IACH,IAAI;IAIJ;;;;;;OAMG;IACH,MAAM,CAAC,OAAO,EAAE,aAAa;IAI7B;;;OAGG;IACH,IAAI,CAAC,IAAI,EAAE,MAAM;IAIjB;;;OAGG;IACH,SAAS,IAAI,MAAM;IAMnB;;;OAGG;IACH,SAAS,CAAC,MAAM,EAAE,MAAM;IAMxB;;OAEG;IACH,IAAI;IAIJ;;;;;;;;;;;;;;;;OAgBG;IACH,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,uBAAuB;IAgBrD;;;;;;;;;;;;OAYG;IACH,MAAM,CAAC,gBAAgB,CAAC,IAAI,EAAE,MAAM;IAOpC,OAAO,CAAC,MAAM,CAAC,oBAAoB;IAUnC,OAAO,CAAC,MAAM,CAAC,WAAW,CAAgC;IAE1D,OAAO,CAAC,SAAS;IAIjB,OAAO,CAAC,UAAU;YAMJ,MAAM;IAkBpB,OAAO,CAAC,eAAe;IASvB,OAAO,CAAC,gBAAgB;IAYxB,OAAO,CAAC,MAAM,CAgCb;IAED,OAAO,CAAC,gBAAgB;IAyCxB,OAAO,CAAC,kBAAkB;IAI1B,OAAO,CAAC,qBAAqB;IAQ7B,OAAO,CAAC,2BAA2B;IAsBnC,OAAO,CAAC,iBAAiB;CA+B1B"}
|
package/lib/index.core.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { LogTracer, Logger, SentryTracer, reportError, setTracer, trace } from '@gcorevideo/utils';
|
|
1
|
+
export { ChainedTracer, LogTracer, Logger, SentryTracer, reportError, setTracer, trace, } from '@gcorevideo/utils';
|
|
2
2
|
export * from './Player.js';
|
|
3
3
|
export * from './playback.types.js';
|
|
4
4
|
export * from './types.js';
|
package/lib/index.core.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.core.d.ts","sourceRoot":"","sources":["../src/index.core.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"index.core.d.ts","sourceRoot":"","sources":["../src/index.core.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EACb,SAAS,EACT,MAAM,EACN,YAAY,EACZ,WAAW,EACX,SAAS,EACT,KAAK,GACN,MAAM,mBAAmB,CAAA;AAC1B,cAAc,aAAa,CAAA;AAC3B,cAAc,qBAAqB,CAAA;AACnC,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA"}
|
package/lib/index.core.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { LogTracer, Logger, SentryTracer, reportError, setTracer, trace } from '@gcorevideo/utils';
|
|
1
|
+
export { ChainedTracer, LogTracer, Logger, SentryTracer, reportError, setTracer, trace, } from '@gcorevideo/utils';
|
|
2
2
|
export * from './Player.js';
|
|
3
3
|
export * from './playback.types.js';
|
|
4
4
|
export * from './types.js';
|
package/lib/index.plugins.d.ts
CHANGED
|
@@ -1,36 +1,36 @@
|
|
|
1
1
|
import '../assets/style/main.scss';
|
|
2
|
-
export * from
|
|
3
|
-
export { AudioTracks as AudioSelector } from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
6
|
-
export * from
|
|
7
|
-
export * from
|
|
8
|
-
export * from
|
|
9
|
-
export { NerdStats as ClapprNerdStats } from
|
|
10
|
-
export * from
|
|
11
|
-
export * from
|
|
12
|
-
export * from
|
|
13
|
-
export * from
|
|
14
|
-
export * from
|
|
15
|
-
export * from
|
|
16
|
-
export * from
|
|
17
|
-
export * from
|
|
18
|
-
export * from
|
|
19
|
-
export * from
|
|
20
|
-
export * from
|
|
21
|
-
export * from
|
|
22
|
-
export * from
|
|
23
|
-
export * from
|
|
24
|
-
export { QualityLevels as LevelSelector } from
|
|
25
|
-
export * from
|
|
26
|
-
export * from
|
|
27
|
-
export * from
|
|
28
|
-
export * from
|
|
29
|
-
export { SpinnerThreeBounce as Spinner } from
|
|
30
|
-
export * from
|
|
31
|
-
export * from
|
|
32
|
-
export { ClosedCaptions as Subtitles } from
|
|
33
|
-
export * from
|
|
34
|
-
export * from
|
|
35
|
-
export * from
|
|
2
|
+
export * from './plugins/audio-selector/AudioTracks.js';
|
|
3
|
+
export { AudioTracks as AudioSelector } from './plugins/audio-selector/AudioTracks.js';
|
|
4
|
+
export * from './plugins/big-mute-button/BigMuteButton.js';
|
|
5
|
+
export * from './plugins/bottom-gear/BottomGear.js';
|
|
6
|
+
export * from './plugins/clappr-stats/ClapprStats.js';
|
|
7
|
+
export * from './plugins/cmcd-config/CmcdConfig.js';
|
|
8
|
+
export * from './plugins/clappr-nerd-stats/NerdStats.js';
|
|
9
|
+
export { NerdStats as ClapprNerdStats } from './plugins/clappr-nerd-stats/NerdStats.js';
|
|
10
|
+
export * from './plugins/click-to-pause/ClickToPause.js';
|
|
11
|
+
export * from './plugins/clips/Clips.js';
|
|
12
|
+
export * from './plugins/context-menu/ContextMenu.js';
|
|
13
|
+
export * from './plugins/dvr-controls/DvrControls.js';
|
|
14
|
+
export * from './plugins/error-screen/ErrorScreen.js';
|
|
15
|
+
export * from './plugins/favicon/Favicon.js';
|
|
16
|
+
export * from './plugins/google-analytics/GoogleAnalytics.js';
|
|
17
|
+
export * from './plugins/logo/Logo.js';
|
|
18
|
+
export * from './plugins/media-control/MediaControl.js';
|
|
19
|
+
export * from './plugins/multi-camera/MultiCamera.js';
|
|
20
|
+
export * from './plugins/picture-in-picture/PictureInPicture.js';
|
|
21
|
+
export * from './plugins/playback-rate/PlaybackRate.js';
|
|
22
|
+
export * from './plugins/poster/Poster.js';
|
|
23
|
+
export * from './plugins/level-selector/QualityLevels.js';
|
|
24
|
+
export { QualityLevels as LevelSelector } from './plugins/level-selector/QualityLevels.js';
|
|
25
|
+
export * from './plugins/seek-time/SeekTime.js';
|
|
26
|
+
export * from './plugins/share/Share.js';
|
|
27
|
+
export * from './plugins/skip-time/SkipTime.js';
|
|
28
|
+
export * from './plugins/spinner-three-bounce/SpinnerThreeBounce.js';
|
|
29
|
+
export { SpinnerThreeBounce as Spinner } from './plugins/spinner-three-bounce/SpinnerThreeBounce.js';
|
|
30
|
+
export * from './plugins/source-controller/SourceController.js';
|
|
31
|
+
export * from './plugins/subtitles/ClosedCaptions.js';
|
|
32
|
+
export { ClosedCaptions as Subtitles } from './plugins/subtitles/ClosedCaptions.js';
|
|
33
|
+
export * from './plugins/telemetry/Telemetry.js';
|
|
34
|
+
export * from './plugins/thumbnails/Thumbnails.js';
|
|
35
|
+
export * from './plugins/volume-fade/VolumeFade.js';
|
|
36
36
|
//# sourceMappingURL=index.plugins.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.plugins.d.ts","sourceRoot":"","sources":["../src/index.plugins.ts"],"names":[],"mappings":"AAAA,OAAO,2BAA2B,
|
|
1
|
+
{"version":3,"file":"index.plugins.d.ts","sourceRoot":"","sources":["../src/index.plugins.ts"],"names":[],"mappings":"AAAA,OAAO,2BAA2B,CAAA;AAElC,cAAc,yCAAyC,CAAA;AACvD,OAAO,EAAE,WAAW,IAAI,aAAa,EAAE,MAAM,yCAAyC,CAAA;AACtF,cAAc,4CAA4C,CAAA;AAC1D,cAAc,qCAAqC,CAAA;AACnD,cAAc,uCAAuC,CAAA;AACrD,cAAc,qCAAqC,CAAA;AACnD,cAAc,0CAA0C,CAAA;AACxD,OAAO,EAAE,SAAS,IAAI,eAAe,EAAE,MAAM,0CAA0C,CAAA;AACvF,cAAc,0CAA0C,CAAA;AACxD,cAAc,0BAA0B,CAAA;AACxC,cAAc,uCAAuC,CAAA;AACrD,cAAc,uCAAuC,CAAA;AACrD,cAAc,uCAAuC,CAAA;AACrD,cAAc,8BAA8B,CAAA;AAE5C,cAAc,+CAA+C,CAAA;AAC7D,cAAc,wBAAwB,CAAA;AACtC,cAAc,yCAAyC,CAAA;AACvD,cAAc,uCAAuC,CAAA;AACrD,cAAc,kDAAkD,CAAA;AAChE,cAAc,yCAAyC,CAAA;AACvD,cAAc,4BAA4B,CAAA;AAC1C,cAAc,2CAA2C,CAAA;AACzD,OAAO,EAAE,aAAa,IAAI,aAAa,EAAE,MAAM,2CAA2C,CAAA;AAC1F,cAAc,iCAAiC,CAAA;AAC/C,cAAc,0BAA0B,CAAA;AACxC,cAAc,iCAAiC,CAAA;AAC/C,cAAc,sDAAsD,CAAA;AACpE,OAAO,EAAE,kBAAkB,IAAI,OAAO,EAAE,MAAM,sDAAsD,CAAA;AACpG,cAAc,iDAAiD,CAAA;AAC/D,cAAc,uCAAuC,CAAA;AACrD,OAAO,EAAE,cAAc,IAAI,SAAS,EAAE,MAAM,uCAAuC,CAAA;AACnF,cAAc,kCAAkC,CAAA;AAChD,cAAc,oCAAoC,CAAA;AAGlD,cAAc,qCAAqC,CAAA"}
|
package/lib/index.plugins.js
CHANGED
|
@@ -1,38 +1,38 @@
|
|
|
1
1
|
import '../assets/style/main.scss';
|
|
2
|
-
export * from
|
|
3
|
-
export { AudioTracks as AudioSelector } from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
6
|
-
export * from
|
|
7
|
-
export * from
|
|
8
|
-
export * from
|
|
9
|
-
export { NerdStats as ClapprNerdStats } from
|
|
10
|
-
export * from
|
|
11
|
-
export * from
|
|
12
|
-
export * from
|
|
13
|
-
export * from
|
|
14
|
-
export * from
|
|
15
|
-
export * from
|
|
2
|
+
export * from './plugins/audio-selector/AudioTracks.js';
|
|
3
|
+
export { AudioTracks as AudioSelector } from './plugins/audio-selector/AudioTracks.js';
|
|
4
|
+
export * from './plugins/big-mute-button/BigMuteButton.js';
|
|
5
|
+
export * from './plugins/bottom-gear/BottomGear.js';
|
|
6
|
+
export * from './plugins/clappr-stats/ClapprStats.js';
|
|
7
|
+
export * from './plugins/cmcd-config/CmcdConfig.js';
|
|
8
|
+
export * from './plugins/clappr-nerd-stats/NerdStats.js';
|
|
9
|
+
export { NerdStats as ClapprNerdStats } from './plugins/clappr-nerd-stats/NerdStats.js';
|
|
10
|
+
export * from './plugins/click-to-pause/ClickToPause.js';
|
|
11
|
+
export * from './plugins/clips/Clips.js';
|
|
12
|
+
export * from './plugins/context-menu/ContextMenu.js';
|
|
13
|
+
export * from './plugins/dvr-controls/DvrControls.js';
|
|
14
|
+
export * from './plugins/error-screen/ErrorScreen.js';
|
|
15
|
+
export * from './plugins/favicon/Favicon.js';
|
|
16
16
|
// _ ga-events
|
|
17
|
-
export * from
|
|
18
|
-
export * from
|
|
19
|
-
export * from
|
|
20
|
-
export * from
|
|
21
|
-
export * from
|
|
22
|
-
export * from
|
|
23
|
-
export * from
|
|
24
|
-
export * from
|
|
25
|
-
export { QualityLevels as LevelSelector } from
|
|
26
|
-
export * from
|
|
27
|
-
export * from
|
|
28
|
-
export * from
|
|
29
|
-
export * from
|
|
30
|
-
export { SpinnerThreeBounce as Spinner } from
|
|
31
|
-
export * from
|
|
32
|
-
export * from
|
|
33
|
-
export { ClosedCaptions as Subtitles } from
|
|
34
|
-
export * from
|
|
35
|
-
export * from
|
|
17
|
+
export * from './plugins/google-analytics/GoogleAnalytics.js';
|
|
18
|
+
export * from './plugins/logo/Logo.js';
|
|
19
|
+
export * from './plugins/media-control/MediaControl.js';
|
|
20
|
+
export * from './plugins/multi-camera/MultiCamera.js';
|
|
21
|
+
export * from './plugins/picture-in-picture/PictureInPicture.js';
|
|
22
|
+
export * from './plugins/playback-rate/PlaybackRate.js';
|
|
23
|
+
export * from './plugins/poster/Poster.js';
|
|
24
|
+
export * from './plugins/level-selector/QualityLevels.js';
|
|
25
|
+
export { QualityLevels as LevelSelector } from './plugins/level-selector/QualityLevels.js';
|
|
26
|
+
export * from './plugins/seek-time/SeekTime.js';
|
|
27
|
+
export * from './plugins/share/Share.js';
|
|
28
|
+
export * from './plugins/skip-time/SkipTime.js';
|
|
29
|
+
export * from './plugins/spinner-three-bounce/SpinnerThreeBounce.js';
|
|
30
|
+
export { SpinnerThreeBounce as Spinner } from './plugins/spinner-three-bounce/SpinnerThreeBounce.js';
|
|
31
|
+
export * from './plugins/source-controller/SourceController.js';
|
|
32
|
+
export * from './plugins/subtitles/ClosedCaptions.js';
|
|
33
|
+
export { ClosedCaptions as Subtitles } from './plugins/subtitles/ClosedCaptions.js'; // TODO remove in future versions
|
|
34
|
+
export * from './plugins/telemetry/Telemetry.js';
|
|
35
|
+
export * from './plugins/thumbnails/Thumbnails.js';
|
|
36
36
|
// _ vast-ads
|
|
37
37
|
// _ video360
|
|
38
|
-
export * from
|
|
38
|
+
export * from './plugins/volume-fade/VolumeFade.js';
|
|
@@ -78,6 +78,10 @@ export default class DashPlayback extends BasePlayback {
|
|
|
78
78
|
switchAudioTrack(id: string): void;
|
|
79
79
|
load(srcUrl: string): void;
|
|
80
80
|
private checkAudioTracks;
|
|
81
|
+
/**
|
|
82
|
+
* @override
|
|
83
|
+
*/
|
|
84
|
+
_handleTextTrackChange(): void;
|
|
81
85
|
}
|
|
82
86
|
export {};
|
|
83
87
|
//# sourceMappingURL=DashPlayback.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DashPlayback.d.ts","sourceRoot":"","sources":["../../../src/playback/dash-playback/DashPlayback.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"DashPlayback.d.ts","sourceRoot":"","sources":["../../../src/playback/dash-playback/DashPlayback.ts"],"names":[],"mappings":"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"}
|
|
@@ -493,6 +493,13 @@ export default class DashPlayback extends BasePlayback {
|
|
|
493
493
|
this.trigger(Events.PLAYBACK_AUDIO_AVAILABLE, tracks.map(toClapprTrack));
|
|
494
494
|
}
|
|
495
495
|
}
|
|
496
|
+
/**
|
|
497
|
+
* @override
|
|
498
|
+
*/
|
|
499
|
+
_handleTextTrackChange() {
|
|
500
|
+
super._handleTextTrackChange();
|
|
501
|
+
this._dash?.setTextTrack(this.closedCaptionsTrackId);
|
|
502
|
+
}
|
|
496
503
|
}
|
|
497
504
|
DashPlayback.canPlay = function (resource, mimeType) {
|
|
498
505
|
if (!isDashSource(resource, mimeType)) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/playback/types.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/playback/types.ts"],"names":[],"mappings":"AAAA,oBAAY,cAAc;IACxB;;;;OAIG;IACH,qBAAqB,0BAA0B;CAChD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BottomGear.d.ts","sourceRoot":"","sources":["../../../src/plugins/bottom-gear/BottomGear.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,YAAY,EAKb,MAAM,cAAc,CAAA;AAOrB,OAAO,uCAAuC,CAAA;AAC9C,OAAO,gDAAgD,CAAA;AAGvD,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;AAU5C;;;GAGG;AACH,oBAAY,UAAU;IACpB;;OAEG;IACH,QAAQ,aAAa;CACtB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmEG;AACH,qBAAa,UAAW,SAAQ,YAAY;IAC1C,OAAO,CAAC,EAAE,CAAQ;IAElB,OAAO,CAAC,QAAQ,CAAI;IAEpB,OAAO,CAAC,SAAS,CAAO;IAExB;;OAEG;IACH,IAAI,IAAI,WAEP;IAED;;OAEG;IACH,IAAI,gBAAgB;;MAEnB;IAED;;OAEG;IACH,MAAM,KAAK,OAAO,WAEjB;IAED,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,QAAQ,CAAuB;IAEvD;;OAEG;IACH,IAAa,UAAU;;MAItB;IAED;;OAEG;IACH,IAAa,MAAM;;MAIlB;IAED;;OAEG;IACM,UAAU;IAInB;;;;;;;;;;;;;;;;;;;;;OAqBG;IACH,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,WAAW,GAAG,WAAW;IAyB1D,OAAO,CAAC,mBAAmB;IAc3B,OAAO,CAAC,oBAAoB;IAK5B;;OAEG;IACM,MAAM;IAqBf;;;;OAIG;IACH,OAAO;IAIP,OAAO,CAAC,gBAAgB;IAKxB,OAAO,CAAC,UAAU;IAgBlB,OAAO,CAAC,cAAc;IAKtB,OAAO,CAAC,QAAQ;IAShB,OAAO,CAAC,WAAW;IA6BnB,OAAO,CAAC,sBAAsB;IAI9B,OAAO,CAAC,KAAK;IAKb,OAAO,CAAC,UAAU;
|
|
1
|
+
{"version":3,"file":"BottomGear.d.ts","sourceRoot":"","sources":["../../../src/plugins/bottom-gear/BottomGear.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,YAAY,EAKb,MAAM,cAAc,CAAA;AAOrB,OAAO,uCAAuC,CAAA;AAC9C,OAAO,gDAAgD,CAAA;AAGvD,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;AAU5C;;;GAGG;AACH,oBAAY,UAAU;IACpB;;OAEG;IACH,QAAQ,aAAa;CACtB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmEG;AACH,qBAAa,UAAW,SAAQ,YAAY;IAC1C,OAAO,CAAC,EAAE,CAAQ;IAElB,OAAO,CAAC,QAAQ,CAAI;IAEpB,OAAO,CAAC,SAAS,CAAO;IAExB;;OAEG;IACH,IAAI,IAAI,WAEP;IAED;;OAEG;IACH,IAAI,gBAAgB;;MAEnB;IAED;;OAEG;IACH,MAAM,KAAK,OAAO,WAEjB;IAED,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,QAAQ,CAAuB;IAEvD;;OAEG;IACH,IAAa,UAAU;;MAItB;IAED;;OAEG;IACH,IAAa,MAAM;;MAIlB;IAED;;OAEG;IACM,UAAU;IAInB;;;;;;;;;;;;;;;;;;;;;OAqBG;IACH,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,WAAW,GAAG,WAAW;IAyB1D,OAAO,CAAC,mBAAmB;IAc3B,OAAO,CAAC,oBAAoB;IAK5B;;OAEG;IACM,MAAM;IAqBf;;;;OAIG;IACH,OAAO;IAIP,OAAO,CAAC,gBAAgB;IAKxB,OAAO,CAAC,UAAU;IAgBlB,OAAO,CAAC,cAAc;IAKtB,OAAO,CAAC,QAAQ;IAShB,OAAO,CAAC,WAAW;IA6BnB,OAAO,CAAC,sBAAsB;IAI9B,OAAO,CAAC,KAAK;IAKb,OAAO,CAAC,UAAU;IAUlB,OAAO,CAAC,SAAS,CAA+C;CACjE"}
|
|
@@ -281,7 +281,9 @@ export class BottomGear extends UICorePlugin {
|
|
|
281
281
|
mediaControl.slot('gear', this.$el);
|
|
282
282
|
}
|
|
283
283
|
clampPopup($subMenu) {
|
|
284
|
-
const availableHeight = this.core
|
|
284
|
+
const availableHeight = this.core
|
|
285
|
+
.getPlugin('media_control')
|
|
286
|
+
.getAvailablePopupHeight();
|
|
285
287
|
$subMenu.css('max-height', `${availableHeight}px`);
|
|
286
288
|
$subMenu
|
|
287
289
|
.find('.gear-sub-menu')
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/plugins/clappr-nerd-stats/speedtest/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,MAAM,EAAkC,MAAM,gBAAgB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/plugins/clappr-nerd-stats/speedtest/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,MAAM,EAAkC,MAAM,gBAAgB,CAAA;AAC5E,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAqC7C,wBAAgB,oBAAoB,SA8BnC;AAID,eAAO,MAAM,aAAa,GACxB,eAAe,gBAAgB,KAC9B,OAAO,CAAC,IAAI,CAwFd,CAAA;AAED,eAAO,MAAM,aAAa,YAIzB,CAAA;AAED,eAAO,MAAM,cAAc,YAI1B,CAAA;AAED,eAAO,MAAM,qBAAqB,YAEjC,CAAA;AAED,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,MAAM,EAAE,QAGnD"}
|
|
@@ -57,7 +57,9 @@ export const initSpeedTest = (customMetrics) => {
|
|
|
57
57
|
// const data = await response.json();
|
|
58
58
|
// SPEEDTEST_SERVERS[0].server = `http://${data.Server}.fe.gc.onl/speedtest/`;
|
|
59
59
|
speedTest.onupdate = function (data) {
|
|
60
|
-
|
|
60
|
+
//callback to update data in UI
|
|
61
|
+
if (![0, 1].includes(data.testState) &&
|
|
62
|
+
typeof data.dlStatus === 'number') {
|
|
61
63
|
const dlSpeed = limitDigits(data.dlStatus);
|
|
62
64
|
const el = getElementById('dlText');
|
|
63
65
|
if (el) {
|
|
@@ -94,7 +96,9 @@ export const initSpeedTest = (customMetrics) => {
|
|
|
94
96
|
drawSpeedTestResults();
|
|
95
97
|
};
|
|
96
98
|
speedTest.onend = function (aborted) {
|
|
97
|
-
|
|
99
|
+
//callback for test ended/aborted
|
|
100
|
+
if (aborted) {
|
|
101
|
+
//if the test was aborted, clear the UI and prepare for new test
|
|
98
102
|
// TODO: fix
|
|
99
103
|
const el = getElementById('dlText');
|
|
100
104
|
if (el) {
|
|
@@ -105,11 +109,11 @@ export const initSpeedTest = (customMetrics) => {
|
|
|
105
109
|
const myinfoUrl = 'https://gcore.com/.well-known/cdn-debug/json';
|
|
106
110
|
// await fetch('https://iam.gcdn.co/info/json')
|
|
107
111
|
await fetch(myinfoUrl)
|
|
108
|
-
.then(r => r.json())
|
|
109
|
-
.then(data => {
|
|
112
|
+
.then((r) => r.json())
|
|
113
|
+
.then((data) => {
|
|
110
114
|
// const country = data['Server Country code'].toLowerCase();
|
|
111
115
|
const country = getCountryCodeFromClientHeaders(data.client_headers);
|
|
112
|
-
const server = serversList.find(s => s.country === country) || serversList[0];
|
|
116
|
+
const server = serversList.find((s) => s.country === country) || serversList[0];
|
|
113
117
|
if (!server) {
|
|
114
118
|
throw new Error('Failed to select a server');
|
|
115
119
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/plugins/clappr-nerd-stats/speedtest/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,gBAAgB,GAAG;IAC7B,IAAI,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/plugins/clappr-nerd-stats/speedtest/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,gBAAgB,GAAG;IAC7B,IAAI,EAAE,MAAM,CAAA;IACZ,MAAM,EAAE,MAAM,CAAA;IACd,eAAe,EAAE,MAAM,CAAA;CACxB,CAAA"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ZeptoResult } from
|
|
2
|
-
import { SpeedtestMetrics } from
|
|
1
|
+
import { ZeptoResult } from '../../types';
|
|
2
|
+
import { SpeedtestMetrics } from './speedtest/types';
|
|
3
3
|
export declare const getDownloadQuality: (speedValue: number) => number;
|
|
4
4
|
export declare const getPingQuality: (pingValue: number) => number;
|
|
5
5
|
export declare const generateQualityHtml: (quality: number) => string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/plugins/clips/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AAQrC,wBAAgB,UAAU,CAAC,IAAI,EAAE,MAAM,GAAG,QAAQ,EAAE,CAmBnD;AAED,wBAAgB,QAAQ,
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/plugins/clips/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AAQrC,wBAAgB,UAAU,CAAC,IAAI,EAAE,MAAM,GAAG,QAAQ,EAAE,CAmBnD;AAED,wBAAgB,QAAQ,CACtB,KAAK,EAAE,QAAQ,EAAE,EACjB,QAAQ,EAAE,MAAM,EAChB,QAAQ,EAAE,MAAM,GACf,MAAM,CAwBR"}
|
|
@@ -121,7 +121,7 @@ export class CmcdConfig extends CorePlugin {
|
|
|
121
121
|
}
|
|
122
122
|
generateContentId() {
|
|
123
123
|
const src = this.core.options.source ??
|
|
124
|
-
(typeof this.core.options.sources[0]
|
|
124
|
+
(typeof this.core.options.sources[0] === 'string'
|
|
125
125
|
? this.core.options.sources[0]
|
|
126
126
|
: this.core.options.sources[0].source);
|
|
127
127
|
return new URL(src).pathname.slice(0, 64);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Favicon.d.ts","sourceRoot":"","sources":["../../../src/plugins/favicon/Favicon.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAa,IAAI,EAAa,MAAM,cAAc,
|
|
1
|
+
{"version":3,"file":"Favicon.d.ts","sourceRoot":"","sources":["../../../src/plugins/favicon/Favicon.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAa,IAAI,EAAa,MAAM,cAAc,CAAA;AAYrE;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAA;CACtB;AAED;;;;;GAKG;AACH,qBAAa,OAAQ,SAAQ,UAAU;IACrC,OAAO,CAAC,OAAO,CAAa;IAE5B,OAAO,CAAC,QAAQ,CAA2B;IAE3C,OAAO,CAAC,SAAS,CAA2B;IAE5C,OAAO,CAAC,QAAQ,CAA2B;IAE3C;;OAEG;IACH,IAAI,IAAI,WAEP;IAED;;OAEG;IACH,IAAI,gBAAgB;;MAEnB;IAED;;OAEG;gBACS,IAAI,EAAE,IAAI;IAStB;;OAEG;IACM,UAAU;IAQnB,OAAO,CAAC,gBAAgB;IA6BxB;;OAEG;IACM,OAAO;IAKhB;;OAEG;IACM,OAAO;IAKhB,OAAO,CAAC,UAAU;IAmBlB,OAAO,CAAC,WAAW;IAOnB,OAAO,CAAC,YAAY;IAOpB,OAAO,CAAC,SAAS;IAKjB,OAAO,CAAC,UAAU;CAInB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GoogleAnalytics.d.ts","sourceRoot":"","sources":["../../../src/plugins/google-analytics/GoogleAnalytics.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,SAAS,EAAE,eAAe,EAAU,MAAM,cAAc,
|
|
1
|
+
{"version":3,"file":"GoogleAnalytics.d.ts","sourceRoot":"","sources":["../../../src/plugins/google-analytics/GoogleAnalytics.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,SAAS,EAAE,eAAe,EAAU,MAAM,cAAc,CAAA;AAQjE;;;GAGG;AACH,qBAAa,eAAgB,SAAQ,eAAe;IAClD,OAAO,CAAC,OAAO,CAAa;IAE5B,OAAO,CAAC,WAAW,CAAa;IAEhC,OAAO,CAAC,UAAU,CAAa;IAE/B,OAAO,CAAC,cAAc,CAAoB;IAE1C,IAAI,IAAI,WAEP;IAED,IAAI,gBAAgB;;MAEnB;gBAEW,SAAS,EAAE,SAAS;IAYhC,WAAW;IAeX,iBAAiB;IAmDjB,OAAO;IAIP,MAAM;IAIN,MAAM;IAIN,OAAO;IAIP,WAAW;IAIX,YAAY;IAIZ,OAAO;IAIP,IAAI,CAAC,IAAI,EAAE,OAAO;IASlB,OAAO,CAAC,iBAAiB;IAUzB,KAAK,CAAC,QAAQ,EAAE,OAAO;IAMvB,OAAO;IAIP,MAAM;IAIN,eAAe;IAIf,YAAY;IAIZ,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE;CAKrB"}
|
|
@@ -22,13 +22,16 @@ export class GoogleAnalytics extends ContainerPlugin {
|
|
|
22
22
|
super(container);
|
|
23
23
|
if (this.container.options.gaAccount) {
|
|
24
24
|
this.account = this.container.options.gaAccount;
|
|
25
|
-
this.trackerName =
|
|
25
|
+
this.trackerName = this.container.options.gaTrackerName
|
|
26
|
+
? this.container.options.gaTrackerName + '.'
|
|
27
|
+
: 'Player.';
|
|
26
28
|
this.domainName = this.container.options.gaDomainName;
|
|
27
29
|
this.embedScript();
|
|
28
30
|
}
|
|
29
31
|
}
|
|
30
32
|
embedScript() {
|
|
31
|
-
if (!('_gat' in window)) {
|
|
33
|
+
if (!('_gat' in window)) {
|
|
34
|
+
// TODO
|
|
32
35
|
const script = document.createElement('script');
|
|
33
36
|
script.setAttribute('type', 'text/javascript');
|
|
34
37
|
script.setAttribute('async', 'async');
|
|
@@ -92,7 +95,11 @@ export class GoogleAnalytics extends ContainerPlugin {
|
|
|
92
95
|
}
|
|
93
96
|
onPlaybackChanged(playbackState) {
|
|
94
97
|
if (playbackState.type !== null) {
|
|
95
|
-
this.push([
|
|
98
|
+
this.push([
|
|
99
|
+
'Video',
|
|
100
|
+
'Playback Type - ' + playbackState.type,
|
|
101
|
+
this.container.playback.src,
|
|
102
|
+
]);
|
|
96
103
|
}
|
|
97
104
|
}
|
|
98
105
|
onDVR(dvrInUse) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/plugins/kibo/index.ts"],"names":[],"mappings":"AAIA,KAAK,oBAAoB,GAAG,CAAC,CAAC,EAAE,aAAa,KAAK,OAAO,GAAG,SAAS,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/plugins/kibo/index.ts"],"names":[],"mappings":"AAIA,KAAK,oBAAoB,GAAG,CAAC,CAAC,EAAE,aAAa,KAAK,OAAO,GAAG,SAAS,CAAA;AAOrE,KAAK,MAAM,GAAG,IAAI,GAAG,MAAM,CAAA;AAE3B,qBAAa,IAAI;IAYH,OAAO,CAAC,OAAO;IAX3B,OAAO,CAAC,WAAW,CAAK;IAExB,OAAO,CAAC,aAAa,CAA8B;IAEnD,OAAO,CAAC,QAAQ,CAAqC;IACrD,OAAO,CAAC,MAAM,CAAqC;IAEnD,OAAO,CAAC,WAAW,CAA4B;IAE/C,OAAO,CAAC,SAAS,CAA4B;gBAEzB,OAAO,GAAE,QAAQ,GAAG,OAAyB;IAoBjE,OAAO,CAAC,OAAO;IAgDf,OAAO,CAAC,YAAY;IAgCpB,OAAO,CAAC,cAAc;IAyBtB,GAAG,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,IAAI;IAIlC,QAAQ,CACN,QAAQ,EAAE,MAAM,EAChB,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,EACvB,IAAI,CAAC,EAAE,oBAAoB,GAAG,IAAI,GACjC,IAAI;IAMP,IAAI,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,EAAE,IAAI,CAAC,EAAE,oBAAoB,GAAG,IAAI,GAAG,IAAI;IAIvE,EAAE,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,EAAE,IAAI,CAAC,EAAE,oBAAoB,GAAG,IAAI,GAAG,IAAI;IAIrE,OAAO,CAAC,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO;IAQ5C,mBAAmB;CAQpB"}
|
|
@@ -31,7 +31,8 @@ export class Kibo {
|
|
|
31
31
|
return (e) => {
|
|
32
32
|
this.lastKeyCode = e.keyCode; // TODO
|
|
33
33
|
for (const mod of MODIFIERS) {
|
|
34
|
-
this.lastModifiers[mod] =
|
|
34
|
+
this.lastModifiers[mod] =
|
|
35
|
+
e[(mod + 'Key')];
|
|
35
36
|
}
|
|
36
37
|
// for (i = 0; i < Kibo.MODIFIERS.length; i++) {
|
|
37
38
|
// that.lastModifiers[Kibo.MODIFIERS[i]] = e[Kibo.MODIFIERS[i] + 'Key'];
|
|
@@ -58,7 +59,7 @@ export class Kibo {
|
|
|
58
59
|
const lastModifiersAndKey = this.lastModifiersAndKey();
|
|
59
60
|
if (regKeys[lastModifiersAndKey]) {
|
|
60
61
|
for (const h of regKeys[lastModifiersAndKey]) {
|
|
61
|
-
if (
|
|
62
|
+
if (h(e) === false && e.preventDefault) {
|
|
62
63
|
e.preventDefault();
|
|
63
64
|
}
|
|
64
65
|
// for (i = 0; i < registeredKeys[lastModifiersAndKey].length; i++) {
|
|
@@ -71,7 +72,7 @@ export class Kibo {
|
|
|
71
72
|
}
|
|
72
73
|
registerKeys(upOrDown, newKeys, func) {
|
|
73
74
|
const registeredKeys = upOrDown === 'up' ? this.keysUp : this.keysDown;
|
|
74
|
-
const normKeys = typeof newKeys ===
|
|
75
|
+
const normKeys = typeof newKeys === 'string' ? [newKeys] : newKeys;
|
|
75
76
|
// for (i = 0; i < newKeys.length; i++) {
|
|
76
77
|
// // keys = newKeys[i];
|
|
77
78
|
// keys = modifiersAndKey(keys + '');
|
|
@@ -94,7 +95,7 @@ export class Kibo {
|
|
|
94
95
|
}
|
|
95
96
|
unregisterKeys(upOrDown, newKeys, func = null) {
|
|
96
97
|
const registeredKeys = upOrDown === 'up' ? this.keysUp : this.keysDown;
|
|
97
|
-
const normKeys = typeof newKeys ===
|
|
98
|
+
const normKeys = typeof newKeys === 'string' ? [newKeys] : newKeys;
|
|
98
99
|
for (const k of normKeys) {
|
|
99
100
|
const keys = modifiersAndKey(k);
|
|
100
101
|
if (func === null) {
|
|
@@ -115,7 +116,7 @@ export class Kibo {
|
|
|
115
116
|
return this.unregisterKeys('down', keys, null);
|
|
116
117
|
}
|
|
117
118
|
delegate(upOrDown, keys, func) {
|
|
118
|
-
return
|
|
119
|
+
return func !== null && func !== undefined
|
|
119
120
|
? this.registerKeys(upOrDown, keys, func)
|
|
120
121
|
: this.unregisterKeys(upOrDown, keys, func);
|
|
121
122
|
}
|
|
@@ -132,14 +133,13 @@ export class Kibo {
|
|
|
132
133
|
return this.lastModifiers[modifier];
|
|
133
134
|
}
|
|
134
135
|
lastModifiersAndKey() {
|
|
135
|
-
const result = MODIFIERS.filter(m => this.lastKey(m));
|
|
136
|
+
const result = MODIFIERS.filter((m) => this.lastKey(m));
|
|
136
137
|
const lastKey = keyName(this.lastKeyCode);
|
|
137
138
|
if (lastKey && !result.includes(lastKey)) {
|
|
138
139
|
result.push(lastKey);
|
|
139
140
|
}
|
|
140
141
|
return result.join(' ');
|
|
141
142
|
}
|
|
142
|
-
;
|
|
143
143
|
}
|
|
144
144
|
function registerEvent(element, eventName, func) {
|
|
145
145
|
element.addEventListener(eventName, func, false);
|
|
@@ -148,17 +148,67 @@ function unregisterEvent(element, eventName, func) {
|
|
|
148
148
|
element.removeEventListener(eventName, func, false);
|
|
149
149
|
}
|
|
150
150
|
const KEY_NAMES_BY_CODE = {
|
|
151
|
-
8: 'backspace',
|
|
152
|
-
|
|
151
|
+
8: 'backspace',
|
|
152
|
+
9: 'tab',
|
|
153
|
+
13: 'enter',
|
|
154
|
+
16: 'shift',
|
|
155
|
+
17: 'ctrl',
|
|
156
|
+
18: 'alt',
|
|
153
157
|
20: 'caps_lock',
|
|
154
158
|
27: 'esc',
|
|
155
159
|
32: 'space',
|
|
156
|
-
37: 'left',
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
160
|
+
37: 'left',
|
|
161
|
+
38: 'up',
|
|
162
|
+
39: 'right',
|
|
163
|
+
40: 'down',
|
|
164
|
+
48: '0',
|
|
165
|
+
49: '1',
|
|
166
|
+
50: '2',
|
|
167
|
+
51: '3',
|
|
168
|
+
52: '4',
|
|
169
|
+
53: '5',
|
|
170
|
+
54: '6',
|
|
171
|
+
55: '7',
|
|
172
|
+
56: '8',
|
|
173
|
+
57: '9',
|
|
174
|
+
65: 'a',
|
|
175
|
+
66: 'b',
|
|
176
|
+
67: 'c',
|
|
177
|
+
68: 'd',
|
|
178
|
+
69: 'e',
|
|
179
|
+
70: 'f',
|
|
180
|
+
71: 'g',
|
|
181
|
+
72: 'h',
|
|
182
|
+
73: 'i',
|
|
183
|
+
74: 'j',
|
|
184
|
+
75: 'k',
|
|
185
|
+
76: 'l',
|
|
186
|
+
77: 'm',
|
|
187
|
+
78: 'n',
|
|
188
|
+
79: 'o',
|
|
189
|
+
80: 'p',
|
|
190
|
+
81: 'q',
|
|
191
|
+
82: 'r',
|
|
192
|
+
83: 's',
|
|
193
|
+
84: 't',
|
|
194
|
+
85: 'u',
|
|
195
|
+
86: 'v',
|
|
196
|
+
87: 'w',
|
|
197
|
+
88: 'x',
|
|
198
|
+
89: 'y',
|
|
199
|
+
90: 'z',
|
|
200
|
+
112: 'f1',
|
|
201
|
+
113: 'f2',
|
|
202
|
+
114: 'f3',
|
|
203
|
+
115: 'f4',
|
|
204
|
+
116: 'f5',
|
|
205
|
+
117: 'f6',
|
|
206
|
+
118: 'f7',
|
|
207
|
+
119: 'f8',
|
|
208
|
+
120: 'f9',
|
|
209
|
+
121: 'f10',
|
|
210
|
+
122: 'f11',
|
|
211
|
+
123: 'f12',
|
|
162
212
|
};
|
|
163
213
|
const KEY_CODES_BY_NAME = {};
|
|
164
214
|
(function () {
|
|
@@ -173,14 +223,14 @@ function stringContains(string, substring) {
|
|
|
173
223
|
function neatString(string) {
|
|
174
224
|
return string.replace(/^\s+|\s+$/g, '').replace(/\s+/g, ' ');
|
|
175
225
|
}
|
|
176
|
-
;
|
|
177
226
|
function extractModifiers(keyCombination) {
|
|
178
|
-
return MODIFIERS.filter(m => keyCombination.includes(m));
|
|
227
|
+
return MODIFIERS.filter((m) => keyCombination.includes(m));
|
|
179
228
|
}
|
|
180
229
|
function extractKey(keyCombination) {
|
|
181
|
-
return neatString(keyCombination)
|
|
230
|
+
return neatString(keyCombination)
|
|
231
|
+
.split(' ')
|
|
232
|
+
.find((key) => !MODIFIERS.includes(key));
|
|
182
233
|
}
|
|
183
|
-
;
|
|
184
234
|
function modifiersAndKey(keyCombination) {
|
|
185
235
|
var result, key;
|
|
186
236
|
if (stringContains(keyCombination, 'any')) {
|
|
@@ -196,4 +246,3 @@ function modifiersAndKey(keyCombination) {
|
|
|
196
246
|
function keyName(keyCode) {
|
|
197
247
|
return KEY_NAMES_BY_CODE[keyCode] || '';
|
|
198
248
|
}
|
|
199
|
-
;
|
|
@@ -186,8 +186,8 @@ export class QualityLevels extends UICorePlugin {
|
|
|
186
186
|
get maxLevel() {
|
|
187
187
|
const maxRes = this.pluginOptions.restrictResolution;
|
|
188
188
|
return maxRes
|
|
189
|
-
? this.levels.find((level) => (level.height > level.width ? level.width : level.height) ===
|
|
190
|
-
maxRes)?.level ?? -1
|
|
189
|
+
? (this.levels.find((level) => (level.height > level.width ? level.width : level.height) ===
|
|
190
|
+
maxRes)?.level ?? -1)
|
|
191
191
|
: -1;
|
|
192
192
|
}
|
|
193
193
|
onLevelsAvailable(levels) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Logo.d.ts","sourceRoot":"","sources":["../../../src/plugins/logo/Logo.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"Logo.d.ts","sourceRoot":"","sources":["../../../src/plugins/logo/Logo.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EAGjB,SAAS,EACV,MAAM,cAAc,CAAA;AAOrB,OAAO,uCAAuC,CAAA;AAe9C;;;GAGG;AACH,qBAAa,IAAK,SAAQ,iBAAiB;IACzC,OAAO,CAAC,iBAAiB,CAAQ;IAEjC,OAAO,CAAC,cAAc,CAA2B;IAEjD,IAAI,IAAI,WAEP;IAED,IAAI,gBAAgB;;MAEnB;IAED,IAAI,QAAQ,QAEX;IAED,IAAa,UAAU;;;MAKtB;IAED,OAAO,KAAK,YAAY,GAEvB;IAEQ,UAAU;IAYV,aAAa;IAMtB,OAAO,CAAC,MAAM;IAKd,OAAO,CAAC,MAAM;IAKd,OAAO,CAAC,MAAM;gBAYF,SAAS,EAAE,SAAS;IAYvB,MAAM;IAaf,OAAO,CAAC,eAAe;IAcvB,OAAO,CAAC,YAAY;IAgEpB,OAAO,CAAC,WAAW;IA4CnB,OAAO,CAAC,SAAS;IASjB,OAAO,CAAC,QAAQ;CAUjB"}
|