pds-dev-kit-web-test 2.5.2 → 2.5.3

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.
@@ -54,8 +54,9 @@ function YouTubeIframe(_a) {
54
54
  var CUED = 5;
55
55
  var stateCode = event.data;
56
56
  switch (stateCode) {
57
- case UNSTARTED:
58
57
  case BUFFERING:
58
+ break;
59
+ case UNSTARTED:
59
60
  case CUED:
60
61
  setIsYoutubeLoading(true);
61
62
  break;
@@ -74,8 +75,11 @@ function YouTubeIframe(_a) {
74
75
  var restartVideoSection = function () {
75
76
  event.target.seekTo(section.start);
76
77
  };
77
- var id_1 = setTimeout(restartVideoSection, duration * 1000);
78
- setTimeoutId(id_1);
78
+ var timeout = duration * 1000 - 1000;
79
+ if (timeout > 0) {
80
+ var id_1 = setTimeout(restartVideoSection, duration * 1000 - 1000);
81
+ setTimeoutId(id_1);
82
+ }
79
83
  }
80
84
  break;
81
85
  }
@@ -125,7 +129,6 @@ function YouTubeIframe(_a) {
125
129
  disablekb: 1,
126
130
  playlist: videoId,
127
131
  start: startSeconds
128
- // rel: 0
129
132
  };
130
133
  var player = new window.YT.Player(PLAYER_ID, {
131
134
  videoId: videoId,
@@ -228,9 +231,9 @@ function YouTubeIframe(_a) {
228
231
  youtubeScript === null || youtubeScript === void 0 ? void 0 : youtubeScript.remove();
229
232
  };
230
233
  }, []);
231
- return ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: (0, jsx_runtime_1.jsx)(S_IframeWrapper, { children: (0, jsx_runtime_1.jsx)("div", { id: PLAYER_ID }) }) }));
234
+ return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [isYoutubeLoading && (0, jsx_runtime_1.jsx)(BlackScreen, {}), (0, jsx_runtime_1.jsx)(S_IframeWrapper, { children: (0, jsx_runtime_1.jsx)("div", { id: PLAYER_ID }) })] }));
232
235
  }
233
- var BlackScreen = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n background-color: ", ";\n bottom: 0;\n left: 0;\n position: absolute;\n right: 0;\n top: 0;\n"], ["\n background-color: ", ";\n bottom: 0;\n left: 0;\n position: absolute;\n right: 0;\n top: 0;\n"])), function (_a) {
236
+ var BlackScreen = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n /* background-color: ", "; */\n background-color: red;\n bottom: 0;\n left: 0;\n position: absolute;\n right: 0;\n top: 0;\n"], ["\n /* background-color: ", "; */\n background-color: red;\n bottom: 0;\n left: 0;\n position: absolute;\n right: 0;\n top: 0;\n"])), function (_a) {
234
237
  var theme = _a.theme;
235
238
  return theme.ui_62;
236
239
  });
@@ -846,7 +846,7 @@ exports.youtubeBgSection = {
846
846
  CB_STYLE_PROP_BGMEDIA_SPEC_REPLAY: true,
847
847
  'CB_STYLE_PROP_BGMEDIA_SPEC_REPLAY:MOBILE': null,
848
848
  'CB_STYLE_PROP_BGMEDIA_SPEC_ENDTIME:HOVER': null,
849
- CB_STYLE_PROP_BGMEDIA_SPEC_ENDTIME: 600,
849
+ CB_STYLE_PROP_BGMEDIA_SPEC_ENDTIME: 6,
850
850
  CB_STYLE_PROP_BGMEDIA_SPEC_IMAGEFIT: 'COVER',
851
851
  'CB_STYLE_PROP_BGMEDIA_SPEC_TYPE:HOVER': null,
852
852
  'CB_STYLE_PROP_BGMEDIA_SPEC_STARTTIME:MOBILE': null,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pds-dev-kit-web-test",
3
- "version": "2.5.02",
3
+ "version": "2.5.03",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "main": "dist/index.js",