@doyourjob/gravity-ui-page-constructor 5.31.223 → 5.31.224
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/build/cjs/components/Media/Media.js +3 -3
- package/build/cjs/components/VideoBlock/VideoBlock.d.ts +1 -1
- package/build/cjs/components/VideoBlock/VideoBlock.js +3 -3
- package/build/cjs/models/constructor-items/common.d.ts +1 -1
- package/build/esm/components/Media/Media.js +3 -3
- package/build/esm/components/VideoBlock/VideoBlock.d.ts +1 -1
- package/build/esm/components/VideoBlock/VideoBlock.js +3 -3
- package/build/esm/models/constructor-items/common.d.ts +1 -1
- package/package.json +1 -1
- package/server/models/constructor-items/common.d.ts +1 -1
|
@@ -14,7 +14,7 @@ const Image_1 = tslib_1.__importDefault(require("./Image/Image"));
|
|
|
14
14
|
const Video_1 = tslib_1.__importDefault(require("./Video/Video"));
|
|
15
15
|
const b = (0, utils_1.block)('Media');
|
|
16
16
|
const Media = (props) => {
|
|
17
|
-
const { animated, image, video, youtube, videoIframe, dataLens, color, height, previewImg, parallax = false, fullscreen, analyticsEvents, className, imageClassName, videoClassName, youtubeClassName, disableImageSliderForArrayInput, playVideo = true, isBackground, playButton,
|
|
17
|
+
const { animated, image, video, youtube, videoIframe, dataLens, color, height, previewImg, parallax = false, fullscreen, analyticsEvents, className, imageClassName, videoClassName, youtubeClassName, disableImageSliderForArrayInput, playVideo = true, isBackground, playButton, playButtonCorner, customBarControlsClassName, qa, ratio, autoplay, onImageLoad, iframe, margins, videoMicrodata, } = props;
|
|
18
18
|
const [hasVideoFallback, setHasVideoFallback] = (0, react_1.useState)(false);
|
|
19
19
|
const { microdata } = (0, react_1.useContext)(innerContext_1.InnerContext);
|
|
20
20
|
const qaAttributes = (0, utils_1.getQaAttrubutes)(qa, 'video');
|
|
@@ -46,7 +46,7 @@ const Media = (props) => {
|
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
48
|
if (youtube || videoIframe) {
|
|
49
|
-
result = (react_1.default.createElement(VideoBlock_1.default, { className: b('youtube', youtubeClassName), record: youtube, videoIframe: videoIframe, attributes: { color: 'white', rel: '0' }, previewImg: previewImg,
|
|
49
|
+
result = (react_1.default.createElement(VideoBlock_1.default, { className: b('youtube', youtubeClassName), record: youtube, videoIframe: videoIframe, attributes: { color: 'white', rel: '0' }, previewImg: previewImg, playButtonCorner: playButtonCorner, height: height, fullscreen: fullscreen, analyticsEvents: analyticsEvents, autoplay: autoplay, onImageLoad: onImageLoad }));
|
|
50
50
|
}
|
|
51
51
|
if (dataLens) {
|
|
52
52
|
result = react_1.default.createElement(DataLens_1.default, { dataLens: dataLens });
|
|
@@ -81,7 +81,7 @@ const Media = (props) => {
|
|
|
81
81
|
customBarControlsClassName,
|
|
82
82
|
ratio,
|
|
83
83
|
youtubeClassName,
|
|
84
|
-
|
|
84
|
+
playButtonCorner,
|
|
85
85
|
autoplay,
|
|
86
86
|
margins,
|
|
87
87
|
]);
|
|
@@ -14,7 +14,7 @@ export interface VideoBlockProps extends AnalyticsEventsBase {
|
|
|
14
14
|
className?: string;
|
|
15
15
|
previewImg?: string;
|
|
16
16
|
playButton?: React.ReactNode;
|
|
17
|
-
|
|
17
|
+
playButtonCorner?: boolean;
|
|
18
18
|
playButtonId?: string;
|
|
19
19
|
height?: number;
|
|
20
20
|
fullscreen?: boolean;
|
|
@@ -43,7 +43,7 @@ function getHeight(width) {
|
|
|
43
43
|
}
|
|
44
44
|
exports.getHeight = getHeight;
|
|
45
45
|
const VideoBlock = (props) => {
|
|
46
|
-
const { stream, record, videoIframe, attributes, className, id, previewImg, playButton,
|
|
46
|
+
const { stream, record, videoIframe, attributes, className, id, previewImg, playButton, playButtonCorner, playButtonId, height, fullscreen, analyticsEvents, autoplay, onImageLoad, } = props;
|
|
47
47
|
const handleAnalytics = (0, useAnalytics_1.useAnalytics)(common_1.DefaultEventNames.VideoPreview);
|
|
48
48
|
const src = videoIframe ? videoIframe : getYoutubeVideoSrc(stream, record);
|
|
49
49
|
const ref = (0, react_1.useRef)(null);
|
|
@@ -97,7 +97,7 @@ const VideoBlock = (props) => {
|
|
|
97
97
|
iframeContent,
|
|
98
98
|
previewImg && !hidePreview && !fullscreen && (react_1.default.createElement("div", { className: b('preview'), onClick: onPreviewClick, onKeyDown: onPreviewKeyDown, role: "button", tabIndex: 0, "aria-labelledby": playButton ? playButtonId : buttonId },
|
|
99
99
|
react_1.default.createElement(Image_1.default, { src: previewImg, className: b('image'), containerClassName: b('image-wrapper'), onLoad: onImageLoad }),
|
|
100
|
-
playButton || (react_1.default.createElement("button", { title: "Play", id: buttonId, className: b('button', { corner:
|
|
101
|
-
react_1.default.createElement(uikit_1.Icon, { className: b('icon'), data: icons_1.PlayFill, size:
|
|
100
|
+
playButton || (react_1.default.createElement("button", { title: "Play", id: buttonId, className: b('button', { corner: playButtonCorner }) },
|
|
101
|
+
react_1.default.createElement(uikit_1.Icon, { className: b('icon'), data: icons_1.PlayFill, size: playButtonCorner ? 16 : 24 })))))));
|
|
102
102
|
};
|
|
103
103
|
exports.default = VideoBlock;
|
|
@@ -192,7 +192,7 @@ export interface MediaComponentVideoIframeProps {
|
|
|
192
192
|
export interface MediaComponentYoutubeProps {
|
|
193
193
|
youtube: string;
|
|
194
194
|
previewImg?: string;
|
|
195
|
-
|
|
195
|
+
playButtonCorner?: boolean;
|
|
196
196
|
fullscreen?: boolean;
|
|
197
197
|
}
|
|
198
198
|
export interface MediaComponentImageProps {
|
|
@@ -11,7 +11,7 @@ import Video from './Video/Video';
|
|
|
11
11
|
import './Media.css';
|
|
12
12
|
const b = block('Media');
|
|
13
13
|
export const Media = (props) => {
|
|
14
|
-
const { animated, image, video, youtube, videoIframe, dataLens, color, height, previewImg, parallax = false, fullscreen, analyticsEvents, className, imageClassName, videoClassName, youtubeClassName, disableImageSliderForArrayInput, playVideo = true, isBackground, playButton,
|
|
14
|
+
const { animated, image, video, youtube, videoIframe, dataLens, color, height, previewImg, parallax = false, fullscreen, analyticsEvents, className, imageClassName, videoClassName, youtubeClassName, disableImageSliderForArrayInput, playVideo = true, isBackground, playButton, playButtonCorner, customBarControlsClassName, qa, ratio, autoplay, onImageLoad, iframe, margins, videoMicrodata, } = props;
|
|
15
15
|
const [hasVideoFallback, setHasVideoFallback] = useState(false);
|
|
16
16
|
const { microdata } = useContext(InnerContext);
|
|
17
17
|
const qaAttributes = getQaAttrubutes(qa, 'video');
|
|
@@ -43,7 +43,7 @@ export const Media = (props) => {
|
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
if (youtube || videoIframe) {
|
|
46
|
-
result = (React.createElement(IframeVideoBlock, { className: b('youtube', youtubeClassName), record: youtube, videoIframe: videoIframe, attributes: { color: 'white', rel: '0' }, previewImg: previewImg,
|
|
46
|
+
result = (React.createElement(IframeVideoBlock, { className: b('youtube', youtubeClassName), record: youtube, videoIframe: videoIframe, attributes: { color: 'white', rel: '0' }, previewImg: previewImg, playButtonCorner: playButtonCorner, height: height, fullscreen: fullscreen, analyticsEvents: analyticsEvents, autoplay: autoplay, onImageLoad: onImageLoad }));
|
|
47
47
|
}
|
|
48
48
|
if (dataLens) {
|
|
49
49
|
result = React.createElement(DataLens, { dataLens: dataLens });
|
|
@@ -78,7 +78,7 @@ export const Media = (props) => {
|
|
|
78
78
|
customBarControlsClassName,
|
|
79
79
|
ratio,
|
|
80
80
|
youtubeClassName,
|
|
81
|
-
|
|
81
|
+
playButtonCorner,
|
|
82
82
|
autoplay,
|
|
83
83
|
margins,
|
|
84
84
|
]);
|
|
@@ -15,7 +15,7 @@ export interface VideoBlockProps extends AnalyticsEventsBase {
|
|
|
15
15
|
className?: string;
|
|
16
16
|
previewImg?: string;
|
|
17
17
|
playButton?: React.ReactNode;
|
|
18
|
-
|
|
18
|
+
playButtonCorner?: boolean;
|
|
19
19
|
playButtonId?: string;
|
|
20
20
|
height?: number;
|
|
21
21
|
fullscreen?: boolean;
|
|
@@ -39,7 +39,7 @@ export function getHeight(width) {
|
|
|
39
39
|
return (width / 16) * 9;
|
|
40
40
|
}
|
|
41
41
|
const VideoBlock = (props) => {
|
|
42
|
-
const { stream, record, videoIframe, attributes, className, id, previewImg, playButton,
|
|
42
|
+
const { stream, record, videoIframe, attributes, className, id, previewImg, playButton, playButtonCorner, playButtonId, height, fullscreen, analyticsEvents, autoplay, onImageLoad, } = props;
|
|
43
43
|
const handleAnalytics = useAnalytics(DefaultEventNames.VideoPreview);
|
|
44
44
|
const src = videoIframe ? videoIframe : getYoutubeVideoSrc(stream, record);
|
|
45
45
|
const ref = useRef(null);
|
|
@@ -93,7 +93,7 @@ const VideoBlock = (props) => {
|
|
|
93
93
|
iframeContent,
|
|
94
94
|
previewImg && !hidePreview && !fullscreen && (React.createElement("div", { className: b('preview'), onClick: onPreviewClick, onKeyDown: onPreviewKeyDown, role: "button", tabIndex: 0, "aria-labelledby": playButton ? playButtonId : buttonId },
|
|
95
95
|
React.createElement(Image, { src: previewImg, className: b('image'), containerClassName: b('image-wrapper'), onLoad: onImageLoad }),
|
|
96
|
-
playButton || (React.createElement("button", { title: "Play", id: buttonId, className: b('button', { corner:
|
|
97
|
-
React.createElement(Icon, { className: b('icon'), data: PlayFill, size:
|
|
96
|
+
playButton || (React.createElement("button", { title: "Play", id: buttonId, className: b('button', { corner: playButtonCorner }) },
|
|
97
|
+
React.createElement(Icon, { className: b('icon'), data: PlayFill, size: playButtonCorner ? 16 : 24 })))))));
|
|
98
98
|
};
|
|
99
99
|
export default VideoBlock;
|
|
@@ -192,7 +192,7 @@ export interface MediaComponentVideoIframeProps {
|
|
|
192
192
|
export interface MediaComponentYoutubeProps {
|
|
193
193
|
youtube: string;
|
|
194
194
|
previewImg?: string;
|
|
195
|
-
|
|
195
|
+
playButtonCorner?: boolean;
|
|
196
196
|
fullscreen?: boolean;
|
|
197
197
|
}
|
|
198
198
|
export interface MediaComponentImageProps {
|
package/package.json
CHANGED
|
@@ -192,7 +192,7 @@ export interface MediaComponentVideoIframeProps {
|
|
|
192
192
|
export interface MediaComponentYoutubeProps {
|
|
193
193
|
youtube: string;
|
|
194
194
|
previewImg?: string;
|
|
195
|
-
|
|
195
|
+
playButtonCorner?: boolean;
|
|
196
196
|
fullscreen?: boolean;
|
|
197
197
|
}
|
|
198
198
|
export interface MediaComponentImageProps {
|