@micromag/screen-urbania-article 0.4.71 → 0.4.74

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.
Files changed (3) hide show
  1. package/es/index.d.ts +3 -3
  2. package/es/index.js +2128 -915
  3. package/package.json +22 -21
package/es/index.js CHANGED
@@ -1,13 +1,10 @@
1
1
  import { FormattedMessage, defineMessage, useIntl } from 'react-intl';
2
- import _objectSpread from '@babel/runtime/helpers/objectSpread2';
3
- import _slicedToArray from '@babel/runtime/helpers/slicedToArray';
4
- import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
2
+ import { c } from 'react/compiler-runtime';
5
3
  import { getJSON } from '@folklore/fetch';
6
- import React, { useMemo, useState, useEffect, useCallback } from 'react';
4
+ import React, { useState, useEffect } from 'react';
7
5
  import { isTextFilled, isHeaderFilled, isFooterFilled, getFooterProps, getStyleFromColor, mergeRefs, isValidUrl } from '@micromag/core/utils';
8
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
9
6
  import classNames from 'classnames';
10
- import { ScreenElement, Empty, PlaceholderSubtitle, PlaceholderTitle, PlaceholderImage, PlaceholderText } from '@micromag/core/components';
7
+ import { ScreenElement, PlaceholderSubtitle, Empty, PlaceholderTitle, PlaceholderImage, PlaceholderText } from '@micromag/core/components';
11
8
  import { useScreenSize, useScreenRenderContext, useViewerWebView, useViewerContext, useViewerInteraction, usePlaybackContext, usePlaybackMediaRef } from '@micromag/core/contexts';
12
9
  import { useDimensionObserver, useResizeObserver } from '@micromag/core/hooks';
13
10
  import Background from '@micromag/element-background';
@@ -19,62 +16,78 @@ import Text from '@micromag/element-text';
19
16
  import UrbaniaAuthor from '@micromag/element-urbania-author';
20
17
  import Visual from '@micromag/element-visual';
21
18
  import { jsx, jsxs } from 'react/jsx-runtime';
22
- import { useSpring, easings, animated } from '@react-spring/web';
19
+ import { easings, useSpring, animated } from '@react-spring/web';
23
20
  import { useGesture } from '@use-gesture/react';
24
21
  import isString from 'lodash/isString';
25
22
  import queryString from 'query-string';
26
23
  import Layout from '@micromag/element-layout';
27
24
 
28
- function Arrow(_ref) {
29
- var _ref$color = _ref.color,
30
- color = _ref$color === void 0 ? 'currentColor' : _ref$color,
31
- _ref$strokeWidth = _ref.strokeWidth,
32
- strokeWidth = _ref$strokeWidth === void 0 ? 3 : _ref$strokeWidth,
33
- _ref$className = _ref.className,
34
- className = _ref$className === void 0 ? null : _ref$className;
35
- return /*#__PURE__*/jsx("svg", {
36
- version: "1.1",
37
- xmlns: "http://www.w3.org/2000/svg",
38
- xmlnsXlink: "http://www.w3.org/1999/xlink",
39
- x: "0",
40
- y: "0px",
41
- width: "48.53px",
42
- height: "12.38px",
43
- viewBox: "0 0 48.53 12.38",
44
- className: className,
45
- xmlSpace: "preserve",
46
- children: /*#__PURE__*/jsx("g", {
25
+ function Arrow(t0) {
26
+ const $ = c(6);
27
+ const {
28
+ color: t1,
29
+ strokeWidth: t2,
30
+ className: t3
31
+ } = t0;
32
+ const color = t1 === undefined ? "currentColor" : t1;
33
+ const strokeWidth = t2 === undefined ? 3 : t2;
34
+ const className = t3 === undefined ? null : t3;
35
+ const t4 = `${strokeWidth}px`;
36
+ let t5;
37
+ if ($[0] !== color || $[1] !== t4) {
38
+ t5 = /*#__PURE__*/jsx("g", {
47
39
  transform: "matrix(1, 0, 0, 1, 0, 0)",
48
40
  children: /*#__PURE__*/jsx("path", {
49
41
  id: "b",
50
42
  fill: "none",
51
43
  stroke: color,
52
- strokeWidth: "".concat(strokeWidth, "px"),
44
+ strokeWidth: t4,
53
45
  strokeLinejoin: "round",
54
46
  strokeLinecap: "round",
55
47
  d: "M1.5,10.88L24.26,1.5l22.77,9.38"
56
48
  })
57
- })
58
- });
49
+ });
50
+ $[0] = color;
51
+ $[1] = t4;
52
+ $[2] = t5;
53
+ } else {
54
+ t5 = $[2];
55
+ }
56
+ let t6;
57
+ if ($[3] !== className || $[4] !== t5) {
58
+ t6 = /*#__PURE__*/jsx("svg", {
59
+ version: "1.1",
60
+ xmlns: "http://www.w3.org/2000/svg",
61
+ xmlnsXlink: "http://www.w3.org/1999/xlink",
62
+ x: "0",
63
+ y: "0px",
64
+ width: "48.53px",
65
+ height: "12.38px",
66
+ viewBox: "0 0 48.53 12.38",
67
+ className: className,
68
+ xmlSpace: "preserve",
69
+ children: t5
70
+ });
71
+ $[3] = className;
72
+ $[4] = t5;
73
+ $[5] = t6;
74
+ } else {
75
+ t6 = $[5];
76
+ }
77
+ return t6;
59
78
  }
60
79
 
61
- function WatchIcon(_ref) {
62
- var _ref$color = _ref.color,
63
- color = _ref$color === void 0 ? '#222' : _ref$color,
64
- _ref$className = _ref.className,
65
- className = _ref$className === void 0 ? null : _ref$className;
66
- return /*#__PURE__*/jsx("svg", {
67
- version: "1.1",
68
- xmlns: "http://www.w3.org/2000/svg",
69
- xmlnsXlink: "http://www.w3.org/1999/xlink",
70
- x: "0",
71
- y: "0px",
72
- width: "17.76px",
73
- height: "17.76px",
74
- viewBox: "0 0 17.76 17.76",
75
- className: className,
76
- xmlSpace: "preserve",
77
- children: /*#__PURE__*/jsxs("g", {
80
+ function WatchIcon(t0) {
81
+ const $ = c(5);
82
+ const {
83
+ color: t1,
84
+ className: t2
85
+ } = t0;
86
+ const color = t1 === undefined ? "#222" : t1;
87
+ const className = t2 === undefined ? null : t2;
88
+ let t3;
89
+ if ($[0] !== color) {
90
+ t3 = /*#__PURE__*/jsxs("g", {
78
91
  transform: "translate(0 0)",
79
92
  children: [/*#__PURE__*/jsx("path", {
80
93
  fill: color,
@@ -83,274 +96,632 @@ function WatchIcon(_ref) {
83
96
  fill: color,
84
97
  d: "M7.42,8.89v-2.61c-.02-.2,.09-.4,.28-.48,.15-.06,.32-.04,.44,.06,.39,.28,.78,.56,1.17,.85,.82,.59,1.63,1.19,2.45,1.78,.22,.11,.3,.38,.19,.59-.04,.08-.11,.15-.19,.19-.6,.45-1.21,.89-1.82,1.33-.59,.43-1.18,.86-1.78,1.29-.16,.17-.43,.17-.6,0-.02-.02-.03-.03-.04-.05-.07-.11-.1-.24-.1-.37,0-.86,0-1.72,0-2.58h0Z"
85
98
  })]
86
- })
87
- });
99
+ });
100
+ $[0] = color;
101
+ $[1] = t3;
102
+ } else {
103
+ t3 = $[1];
104
+ }
105
+ let t4;
106
+ if ($[2] !== className || $[3] !== t3) {
107
+ t4 = /*#__PURE__*/jsx("svg", {
108
+ version: "1.1",
109
+ xmlns: "http://www.w3.org/2000/svg",
110
+ xmlnsXlink: "http://www.w3.org/1999/xlink",
111
+ x: "0",
112
+ y: "0px",
113
+ width: "17.76px",
114
+ height: "17.76px",
115
+ viewBox: "0 0 17.76 17.76",
116
+ className: className,
117
+ xmlSpace: "preserve",
118
+ children: t3
119
+ });
120
+ $[2] = className;
121
+ $[3] = t3;
122
+ $[4] = t4;
123
+ } else {
124
+ t4 = $[4];
125
+ }
126
+ return t4;
88
127
  }
89
128
 
90
129
  var styles$1 = {"container":"micromag-screen-urbania-article-urbania-base-article-container","isPlaceholder":"micromag-screen-urbania-article-urbania-base-article-isPlaceholder","articleContent":"micromag-screen-urbania-article-urbania-base-article-articleContent","visual":"micromag-screen-urbania-article-urbania-base-article-visual","isVideo":"micromag-screen-urbania-article-urbania-base-article-isVideo","title":"micromag-screen-urbania-article-urbania-base-article-title","description":"micromag-screen-urbania-article-urbania-base-article-description","sponsors":"micromag-screen-urbania-article-urbania-base-article-sponsors","callToAction":"micromag-screen-urbania-article-urbania-base-article-callToAction","placeholder":"micromag-screen-urbania-article-urbania-base-article-placeholder","emptyContainer":"micromag-screen-urbania-article-urbania-base-article-emptyContainer","small":"micromag-screen-urbania-article-urbania-base-article-small","empty":"micromag-screen-urbania-article-urbania-base-article-empty","background":"micromag-screen-urbania-article-urbania-base-article-background","video":"micromag-screen-urbania-article-urbania-base-article-video","content":"micromag-screen-urbania-article-urbania-base-article-content","overTitle":"micromag-screen-urbania-article-urbania-base-article-overTitle","authors":"micromag-screen-urbania-article-urbania-base-article-authors","lede":"micromag-screen-urbania-article-urbania-base-article-lede","isAboveDescription":"micromag-screen-urbania-article-urbania-base-article-isAboveDescription","sponsor":"micromag-screen-urbania-article-urbania-base-article-sponsor","quatre95":"micromag-screen-urbania-article-urbania-base-article-quatre95","author":"micromag-screen-urbania-article-urbania-base-article-author","urbania":"micromag-screen-urbania-article-urbania-base-article-urbania","dehors":"micromag-screen-urbania-article-urbania-base-article-dehors","universities":"micromag-screen-urbania-article-urbania-base-article-universities","footerContainer":"micromag-screen-urbania-article-urbania-base-article-footerContainer","footer":"micromag-screen-urbania-article-urbania-base-article-footer","arrow":"micromag-screen-urbania-article-urbania-base-article-arrow","icon":"micromag-screen-urbania-article-urbania-base-article-icon","button":"micromag-screen-urbania-article-urbania-base-article-button","mediaControls":"micromag-screen-urbania-article-urbania-base-article-mediaControls","header":"micromag-screen-urbania-article-urbania-base-article-header","bottom":"micromag-screen-urbania-article-urbania-base-article-bottom","visible":"micromag-screen-urbania-article-urbania-base-article-visible","withGradient":"micromag-screen-urbania-article-urbania-base-article-withGradient","image":"micromag-screen-urbania-article-urbania-base-article-image","isCurrent":"micromag-screen-urbania-article-urbania-base-article-isCurrent","slowZoom":"micromag-screen-urbania-article-urbania-base-article-slowZoom","img":"micromag-screen-urbania-article-urbania-base-article-img"};
91
130
 
92
- var _excluded$1 = ["callToAction"];
93
- function UrbaniaArticle(_ref) {
94
- var _ref$hasArticle = _ref.hasArticle,
95
- hasArticle = _ref$hasArticle === void 0 ? false : _ref$hasArticle,
96
- _ref$type = _ref.type,
97
- type = _ref$type === void 0 ? null : _ref$type,
98
- _ref$image = _ref.image,
99
- image = _ref$image === void 0 ? null : _ref$image,
100
- _ref$title = _ref.title,
101
- title = _ref$title === void 0 ? null : _ref$title,
102
- _ref$description = _ref.description,
103
- description = _ref$description === void 0 ? null : _ref$description,
104
- _ref$overTitle = _ref.overTitle,
105
- overTitle = _ref$overTitle === void 0 ? null : _ref$overTitle,
106
- _ref$author = _ref.author,
107
- author = _ref$author === void 0 ? null : _ref$author,
108
- _ref$sponsors = _ref.sponsors,
109
- sponsors = _ref$sponsors === void 0 ? null : _ref$sponsors,
110
- _ref$sponsorPrefix = _ref.sponsorPrefix,
111
- sponsorPrefix = _ref$sponsorPrefix === void 0 ? null : _ref$sponsorPrefix,
112
- _ref$sponsorColor = _ref.sponsorColor,
113
- sponsorColor = _ref$sponsorColor === void 0 ? null : _ref$sponsorColor,
114
- _ref$site = _ref.site,
115
- site = _ref$site === void 0 ? null : _ref$site,
116
- _ref$header = _ref.header,
117
- header = _ref$header === void 0 ? null : _ref$header,
118
- _ref$footer = _ref.footer,
119
- footer = _ref$footer === void 0 ? null : _ref$footer,
120
- _ref$background = _ref.background,
121
- background = _ref$background === void 0 ? null : _ref$background,
122
- _ref$current = _ref.current,
123
- current = _ref$current === void 0 ? true : _ref$current,
124
- _ref$preload = _ref.preload,
125
- preload = _ref$preload === void 0 ? true : _ref$preload,
126
- _ref$spacing = _ref.spacing,
127
- spacing = _ref$spacing === void 0 ? 20 : _ref$spacing,
128
- _ref$mediaRef = _ref.mediaRef,
129
- customMediaRef = _ref$mediaRef === void 0 ? null : _ref$mediaRef,
130
- _ref$className = _ref.className,
131
- className = _ref$className === void 0 ? null : _ref$className;
132
- var _useScreenSize = useScreenSize(),
133
- width = _useScreenSize.width,
134
- height = _useScreenSize.height,
135
- resolution = _useScreenSize.resolution;
136
- var _useScreenRenderConte = useScreenRenderContext(),
137
- isView = _useScreenRenderConte.isView,
138
- isPreview = _useScreenRenderConte.isPreview,
139
- isPlaceholder = _useScreenRenderConte.isPlaceholder,
140
- isEdit = _useScreenRenderConte.isEdit,
141
- isStatic = _useScreenRenderConte.isStatic,
142
- isCapture = _useScreenRenderConte.isCapture;
143
- var _ref2 = background || {},
144
- _ref2$color = _ref2.color,
145
- backgroundColor = _ref2$color === void 0 ? null : _ref2$color;
146
- var _useViewerWebView = useViewerWebView(),
147
- openedWebView = _useViewerWebView.opened,
148
- openWebView = _useViewerWebView.open;
149
- var _useViewerContext = useViewerContext(),
150
- viewerBottomSidesWidth = _useViewerContext.bottomSidesWidth,
151
- viewerTopHeight = _useViewerContext.topHeight;
152
- var _useViewerInteraction = useViewerInteraction(),
153
- enableInteraction = _useViewerInteraction.enableInteraction,
154
- disableInteraction = _useViewerInteraction.disableInteraction;
155
- var _usePlaybackContext = usePlaybackContext(),
156
- muted = _usePlaybackContext.muted,
157
- playing = _usePlaybackContext.playing;
158
- var _useDimensionObserver = useDimensionObserver(),
159
- contentRef = _useDimensionObserver.ref,
160
- contentRect = _useDimensionObserver.entry.contentRect,
161
- contentHeight = _useDimensionObserver.height;
162
- var _ref3 = contentRect || {},
163
- contentTop = _ref3.top;
164
- var _useMemo = useMemo(function () {
165
- // const defaultImageHeight = width * 0.8;
166
- var difference = height - contentHeight - contentTop + 1;
167
- return {
168
- imageHeight: difference
169
- };
170
- }, [contentTop, contentHeight, width, height]),
171
- _useMemo$minContentHe = _useMemo.minContentHeight,
172
- minContentHeight = _useMemo$minContentHe === void 0 ? null : _useMemo$minContentHe;
173
- var isVideo = type === 'video';
174
- var hasOverTitle = isTextFilled(overTitle);
175
- var hasTitle = isTextFilled(title);
176
- var hasDescription = isTextFilled(description);
177
- var hasSponsor = (sponsors || []).length > 0 && isTextFilled(sponsors[0]);
178
- var _ref4 = author || {},
179
- authorFullName = _ref4.name;
180
- var hasAuthor = isTextFilled(authorFullName);
181
- var _ref5 = image || {},
182
- _ref5$url = _ref5.url,
183
- url = _ref5$url === void 0 ? null : _ref5$url,
184
- _ref5$type = _ref5.type,
185
- imageType = _ref5$type === void 0 ? null : _ref5$type;
186
- var hasImage = url !== null;
187
- var hasHeader = isHeaderFilled(header);
188
- var hasFooter = isFooterFilled(footer) || hasArticle;
189
- var footerCta = {
190
- buttonClassName: styles$1.button,
191
- labelClassName: styles$1.label,
192
- arrowClassName: styles$1.arrow,
193
- arrow: /*#__PURE__*/jsx(Arrow, {}),
194
- icon: type === 'video' ? /*#__PURE__*/jsx(WatchIcon, {
131
+ function UrbaniaArticle(t0) {
132
+ const $ = c(173);
133
+ const {
134
+ hasArticle: t1,
135
+ type: t2,
136
+ image: t3,
137
+ title: t4,
138
+ description: t5,
139
+ overTitle: t6,
140
+ author: t7,
141
+ sponsors: t8,
142
+ sponsorPrefix: t9,
143
+ sponsorColor: t10,
144
+ site: t11,
145
+ header: t12,
146
+ footer: t13,
147
+ background: t14,
148
+ current: t15,
149
+ preload: t16,
150
+ spacing: t17,
151
+ mediaRef: t18,
152
+ className: t19
153
+ } = t0;
154
+ const hasArticle = t1 === undefined ? false : t1;
155
+ const type = t2 === undefined ? null : t2;
156
+ const image = t3 === undefined ? null : t3;
157
+ const title = t4 === undefined ? null : t4;
158
+ const description = t5 === undefined ? null : t5;
159
+ const overTitle = t6 === undefined ? null : t6;
160
+ const author = t7 === undefined ? null : t7;
161
+ const sponsors = t8 === undefined ? null : t8;
162
+ const sponsorPrefix = t9 === undefined ? null : t9;
163
+ const sponsorColor = t10 === undefined ? null : t10;
164
+ const site = t11 === undefined ? null : t11;
165
+ const header = t12 === undefined ? null : t12;
166
+ const footer = t13 === undefined ? null : t13;
167
+ const background = t14 === undefined ? null : t14;
168
+ const current = t15 === undefined ? true : t15;
169
+ const preload = t16 === undefined ? true : t16;
170
+ const spacing = t17 === undefined ? 20 : t17;
171
+ const customMediaRef = t18 === undefined ? null : t18;
172
+ const className = t19 === undefined ? null : t19;
173
+ const {
174
+ width,
175
+ height,
176
+ resolution
177
+ } = useScreenSize();
178
+ const {
179
+ isView,
180
+ isPreview,
181
+ isPlaceholder,
182
+ isEdit,
183
+ isStatic,
184
+ isCapture
185
+ } = useScreenRenderContext();
186
+ let t20;
187
+ if ($[0] !== background) {
188
+ t20 = background || {};
189
+ $[0] = background;
190
+ $[1] = t20;
191
+ } else {
192
+ t20 = $[1];
193
+ }
194
+ const {
195
+ color: t21
196
+ } = t20;
197
+ const backgroundColor = t21 === undefined ? null : t21;
198
+ const {
199
+ opened: openedWebView,
200
+ open: openWebView
201
+ } = useViewerWebView();
202
+ const {
203
+ bottomSidesWidth: viewerBottomSidesWidth,
204
+ topHeight: viewerTopHeight
205
+ } = useViewerContext();
206
+ const {
207
+ enableInteraction,
208
+ disableInteraction
209
+ } = useViewerInteraction();
210
+ const {
211
+ muted,
212
+ playing
213
+ } = usePlaybackContext();
214
+ const {
215
+ ref: contentRef,
216
+ entry: t22,
217
+ height: contentHeight
218
+ } = useDimensionObserver();
219
+ const {
220
+ contentRect
221
+ } = t22;
222
+ let t23;
223
+ if ($[2] !== contentRect) {
224
+ t23 = contentRect || {};
225
+ $[2] = contentRect;
226
+ $[3] = t23;
227
+ } else {
228
+ t23 = $[3];
229
+ }
230
+ const {
231
+ top: contentTop
232
+ } = t23;
233
+ const difference = height - contentHeight - contentTop + 1;
234
+ let t24;
235
+ if ($[4] !== difference) {
236
+ t24 = {
237
+ imageHeight: difference
238
+ };
239
+ $[4] = difference;
240
+ $[5] = t24;
241
+ } else {
242
+ t24 = $[5];
243
+ }
244
+ const {
245
+ minContentHeight: t25
246
+ } = t24;
247
+ const minContentHeight = t25 === undefined ? null : t25;
248
+ const isVideo = type === "video";
249
+ let t26;
250
+ if ($[6] !== overTitle) {
251
+ t26 = isTextFilled(overTitle);
252
+ $[6] = overTitle;
253
+ $[7] = t26;
254
+ } else {
255
+ t26 = $[7];
256
+ }
257
+ const hasOverTitle = t26;
258
+ let t27;
259
+ if ($[8] !== title) {
260
+ t27 = isTextFilled(title);
261
+ $[8] = title;
262
+ $[9] = t27;
263
+ } else {
264
+ t27 = $[9];
265
+ }
266
+ const hasTitle = t27;
267
+ const hasDescription = isTextFilled(description);
268
+ let t28;
269
+ if ($[10] !== sponsors) {
270
+ t28 = (sponsors || []).length > 0 && isTextFilled(sponsors[0]);
271
+ $[10] = sponsors;
272
+ $[11] = t28;
273
+ } else {
274
+ t28 = $[11];
275
+ }
276
+ const hasSponsor = t28;
277
+ let t29;
278
+ if ($[12] !== author) {
279
+ t29 = author || {};
280
+ $[12] = author;
281
+ $[13] = t29;
282
+ } else {
283
+ t29 = $[13];
284
+ }
285
+ const {
286
+ name: authorFullName
287
+ } = t29;
288
+ let t30;
289
+ if ($[14] !== authorFullName) {
290
+ t30 = isTextFilled(authorFullName);
291
+ $[14] = authorFullName;
292
+ $[15] = t30;
293
+ } else {
294
+ t30 = $[15];
295
+ }
296
+ const hasAuthor = t30;
297
+ let t31;
298
+ if ($[16] !== image) {
299
+ t31 = image || {};
300
+ $[16] = image;
301
+ $[17] = t31;
302
+ } else {
303
+ t31 = $[17];
304
+ }
305
+ const {
306
+ url: t32,
307
+ type: t33
308
+ } = t31;
309
+ const url = t32 === undefined ? null : t32;
310
+ const imageType = t33 === undefined ? null : t33;
311
+ const hasImage = url !== null;
312
+ let t34;
313
+ if ($[18] !== header) {
314
+ t34 = isHeaderFilled(header);
315
+ $[18] = header;
316
+ $[19] = t34;
317
+ } else {
318
+ t34 = $[19];
319
+ }
320
+ const hasHeader = t34;
321
+ let t35;
322
+ if ($[20] !== footer || $[21] !== hasArticle) {
323
+ t35 = isFooterFilled(footer) || hasArticle;
324
+ $[20] = footer;
325
+ $[21] = hasArticle;
326
+ $[22] = t35;
327
+ } else {
328
+ t35 = $[22];
329
+ }
330
+ const hasFooter = t35;
331
+ let t36;
332
+ if ($[23] === Symbol.for("react.memo_cache_sentinel")) {
333
+ t36 = /*#__PURE__*/jsx(Arrow, {});
334
+ $[23] = t36;
335
+ } else {
336
+ t36 = $[23];
337
+ }
338
+ let t37;
339
+ if ($[24] !== type) {
340
+ t37 = type === "video" ? /*#__PURE__*/jsx(WatchIcon, {
195
341
  className: styles$1.icon
196
- }) : null
197
- };
198
- var _ref6 = footer || {},
199
- _ref6$callToAction = _ref6.callToAction,
200
- callToAction = _ref6$callToAction === void 0 ? null : _ref6$callToAction,
201
- otherFooterProps = _objectWithoutProperties(_ref6, _excluded$1);
202
- var footerProps = getFooterProps(_objectSpread(_objectSpread({}, otherFooterProps), {}, {
203
- callToAction: _objectSpread(_objectSpread({}, callToAction), footerCta)
204
- }), {
205
- isView: isView,
206
- current: current,
207
- openWebView: openWebView,
208
- isPreview: isPreview,
209
- animationDisabled: isPreview,
210
- focusable: current && isView,
211
- enableInteraction: enableInteraction,
212
- disableInteraction: disableInteraction
213
- });
214
- var _ref7 = background || {},
215
- _ref7$video = _ref7.video,
216
- backgroundVideo = _ref7$video === void 0 ? null : _ref7$video;
217
- var hasVideoBackground = backgroundVideo !== null;
218
- var mediaShouldLoad = current || preload;
219
- var finalPlaying = playing && current;
220
- var isVideoBackground = imageType !== 'video' && hasVideoBackground;
221
- var _usePlaybackMediaRef = usePlaybackMediaRef(current, isVideoBackground),
222
- mediaRef = _usePlaybackMediaRef.ref,
223
- _usePlaybackMediaRef$ = _usePlaybackMediaRef.isCurrent,
224
- isCurrentMedia = _usePlaybackMediaRef$ === void 0 ? false : _usePlaybackMediaRef$;
225
- var backgroundPlaying = current && !openedWebView && (isView || isEdit) && (isCurrentMedia || !isView);
226
- var items = [/*#__PURE__*/jsx(ScreenElement, {
227
- placeholder: /*#__PURE__*/jsx(PlaceholderSubtitle, {
342
+ }) : null;
343
+ $[24] = type;
344
+ $[25] = t37;
345
+ } else {
346
+ t37 = $[25];
347
+ }
348
+ let t38;
349
+ if ($[26] !== current || $[27] !== disableInteraction || $[28] !== enableInteraction || $[29] !== footer || $[30] !== isPreview || $[31] !== isView || $[32] !== openWebView || $[33] !== t37) {
350
+ const footerCta = {
351
+ buttonClassName: styles$1.button,
352
+ labelClassName: styles$1.label,
353
+ arrowClassName: styles$1.arrow,
354
+ arrow: t36,
355
+ icon: t37
356
+ };
357
+ const {
358
+ callToAction: t39,
359
+ ...otherFooterProps
360
+ } = footer || {};
361
+ const callToAction = t39 === undefined ? null : t39;
362
+ t38 = getFooterProps({
363
+ ...otherFooterProps,
364
+ callToAction: {
365
+ ...callToAction,
366
+ ...footerCta
367
+ }
368
+ }, {
369
+ isView,
370
+ current,
371
+ openWebView,
372
+ isPreview,
373
+ animationDisabled: isPreview,
374
+ focusable: current && isView,
375
+ enableInteraction,
376
+ disableInteraction
377
+ });
378
+ $[26] = current;
379
+ $[27] = disableInteraction;
380
+ $[28] = enableInteraction;
381
+ $[29] = footer;
382
+ $[30] = isPreview;
383
+ $[31] = isView;
384
+ $[32] = openWebView;
385
+ $[33] = t37;
386
+ $[34] = t38;
387
+ } else {
388
+ t38 = $[34];
389
+ }
390
+ const footerProps = t38;
391
+ let t39;
392
+ if ($[35] !== background) {
393
+ t39 = background || {};
394
+ $[35] = background;
395
+ $[36] = t39;
396
+ } else {
397
+ t39 = $[36];
398
+ }
399
+ const {
400
+ video: t40
401
+ } = t39;
402
+ const backgroundVideo = t40 === undefined ? null : t40;
403
+ const hasVideoBackground = backgroundVideo !== null;
404
+ const mediaShouldLoad = current || preload;
405
+ const finalPlaying = playing && current;
406
+ const isVideoBackground = imageType !== "video" && hasVideoBackground;
407
+ const {
408
+ ref: mediaRef,
409
+ isCurrent: t41
410
+ } = usePlaybackMediaRef(current, isVideoBackground);
411
+ const isCurrentMedia = t41 === undefined ? false : t41;
412
+ const backgroundPlaying = current && !openedWebView && (isView || isEdit) && (isCurrentMedia || !isView);
413
+ let t42;
414
+ let t43;
415
+ if ($[37] === Symbol.for("react.memo_cache_sentinel")) {
416
+ t42 = /*#__PURE__*/jsx(PlaceholderSubtitle, {
228
417
  className: styles$1.placeholder
229
- }),
230
- empty: /*#__PURE__*/jsx("div", {
231
- className: classNames([styles$1.emptyContainer, styles$1.small]),
418
+ });
419
+ t43 = classNames([styles$1.emptyContainer, styles$1.small]);
420
+ $[37] = t42;
421
+ $[38] = t43;
422
+ } else {
423
+ t42 = $[37];
424
+ t43 = $[38];
425
+ }
426
+ let t44;
427
+ if ($[39] === Symbol.for("react.memo_cache_sentinel")) {
428
+ t44 = /*#__PURE__*/jsx("div", {
429
+ className: t43,
232
430
  children: /*#__PURE__*/jsx(Empty, {
233
431
  className: styles$1.empty,
234
432
  children: /*#__PURE__*/jsx(FormattedMessage, {
235
433
  id: "pRzSQ7",
236
- defaultMessage: [{
237
- "type": 0,
238
- "value": "Overtitle"
239
- }]
434
+ defaultMessage: "Overtitle"
240
435
  })
241
436
  })
242
- }),
243
- isEmpty: !hasOverTitle,
244
- children: hasOverTitle ? /*#__PURE__*/jsx(Heading, _objectSpread({
245
- className: classNames([styles$1.overTitle])
246
- }, overTitle)) : null
247
- }, "overTitle"), /*#__PURE__*/jsx(ScreenElement, {
248
- placeholder: /*#__PURE__*/jsx(PlaceholderTitle, {
437
+ });
438
+ $[39] = t44;
439
+ } else {
440
+ t44 = $[39];
441
+ }
442
+ const t45 = !hasOverTitle;
443
+ let t46;
444
+ if ($[40] !== hasOverTitle || $[41] !== overTitle) {
445
+ t46 = hasOverTitle ? /*#__PURE__*/jsx(Heading, {
446
+ className: classNames([styles$1.overTitle]),
447
+ ...overTitle
448
+ }) : null;
449
+ $[40] = hasOverTitle;
450
+ $[41] = overTitle;
451
+ $[42] = t46;
452
+ } else {
453
+ t46 = $[42];
454
+ }
455
+ let t47;
456
+ if ($[43] !== t45 || $[44] !== t46) {
457
+ t47 = /*#__PURE__*/jsx(ScreenElement, {
458
+ placeholder: t42,
459
+ empty: t44,
460
+ isEmpty: t45,
461
+ children: t46
462
+ }, "overTitle");
463
+ $[43] = t45;
464
+ $[44] = t46;
465
+ $[45] = t47;
466
+ } else {
467
+ t47 = $[45];
468
+ }
469
+ let t48;
470
+ if ($[46] === Symbol.for("react.memo_cache_sentinel")) {
471
+ t48 = /*#__PURE__*/jsx(PlaceholderTitle, {
249
472
  className: styles$1.placeholder
250
- }),
251
- empty: /*#__PURE__*/jsx("div", {
473
+ });
474
+ $[46] = t48;
475
+ } else {
476
+ t48 = $[46];
477
+ }
478
+ let t49;
479
+ if ($[47] === Symbol.for("react.memo_cache_sentinel")) {
480
+ t49 = /*#__PURE__*/jsx("div", {
252
481
  className: styles$1.emptyContainer,
253
482
  children: /*#__PURE__*/jsx(Empty, {
254
483
  className: styles$1.empty,
255
484
  children: /*#__PURE__*/jsx(FormattedMessage, {
256
485
  id: "2ZOPe+",
257
- defaultMessage: [{
258
- "type": 0,
259
- "value": "Title"
260
- }]
486
+ defaultMessage: "Title"
261
487
  })
262
488
  })
263
- }),
264
- isEmpty: !hasTitle,
265
- children: hasTitle ? /*#__PURE__*/jsx(Heading, _objectSpread({
266
- className: classNames([styles$1.title])
267
- }, title)) : null
268
- }, "title"), /*#__PURE__*/jsx(ScreenElement, {
269
- empty: /*#__PURE__*/jsx("div", {
489
+ });
490
+ $[47] = t49;
491
+ } else {
492
+ t49 = $[47];
493
+ }
494
+ const t50 = !hasTitle;
495
+ let t51;
496
+ if ($[48] !== hasTitle || $[49] !== title) {
497
+ t51 = hasTitle ? /*#__PURE__*/jsx(Heading, {
498
+ className: classNames([styles$1.title]),
499
+ ...title
500
+ }) : null;
501
+ $[48] = hasTitle;
502
+ $[49] = title;
503
+ $[50] = t51;
504
+ } else {
505
+ t51 = $[50];
506
+ }
507
+ let t52;
508
+ if ($[51] !== t50 || $[52] !== t51) {
509
+ t52 = /*#__PURE__*/jsx(ScreenElement, {
510
+ placeholder: t48,
511
+ empty: t49,
512
+ isEmpty: t50,
513
+ children: t51
514
+ }, "title");
515
+ $[51] = t50;
516
+ $[52] = t51;
517
+ $[53] = t52;
518
+ } else {
519
+ t52 = $[53];
520
+ }
521
+ const T0 = ScreenElement;
522
+ const t53 = "authors";
523
+ let t54;
524
+ if ($[54] === Symbol.for("react.memo_cache_sentinel")) {
525
+ t54 = /*#__PURE__*/jsx("div", {
270
526
  className: styles$1.emptyContainer,
271
527
  children: /*#__PURE__*/jsx(Empty, {
272
528
  className: styles$1.empty,
273
529
  children: /*#__PURE__*/jsx(FormattedMessage, {
274
530
  id: "6jX5Tb",
275
- defaultMessage: [{
276
- "type": 0,
277
- "value": "Authors"
278
- }]
531
+ defaultMessage: "Authors"
279
532
  })
280
533
  })
281
- }),
282
- isEmpty: !hasAuthor,
283
- children: hasAuthor ? /*#__PURE__*/jsx("div", {
284
- className: classNames([styles$1.authors, _defineProperty({}, styles$1.isAboveDescription, hasDescription)]),
285
- children: /*#__PURE__*/jsx(UrbaniaAuthor, {
286
- author: author,
287
- shouldLoad: mediaShouldLoad
288
- })
289
- }) : null
290
- }, "authors"), /*#__PURE__*/jsx(ScreenElement, {
291
- empty: /*#__PURE__*/jsx("div", {
534
+ });
535
+ $[54] = t54;
536
+ } else {
537
+ t54 = $[54];
538
+ }
539
+ const t55 = !hasAuthor;
540
+ const t56 = hasAuthor ? /*#__PURE__*/jsx("div", {
541
+ className: classNames([styles$1.authors, {
542
+ [styles$1.isAboveDescription]: hasDescription
543
+ }]),
544
+ children: /*#__PURE__*/jsx(UrbaniaAuthor, {
545
+ author: author,
546
+ shouldLoad: mediaShouldLoad
547
+ })
548
+ }) : null;
549
+ let t57;
550
+ if ($[55] !== T0 || $[56] !== t54 || $[57] !== t55 || $[58] !== t56) {
551
+ t57 = /*#__PURE__*/jsx(T0, {
552
+ empty: t54,
553
+ isEmpty: t55,
554
+ children: t56
555
+ }, t53);
556
+ $[55] = T0;
557
+ $[56] = t54;
558
+ $[57] = t55;
559
+ $[58] = t56;
560
+ $[59] = t57;
561
+ } else {
562
+ t57 = $[59];
563
+ }
564
+ let t58;
565
+ if ($[60] === Symbol.for("react.memo_cache_sentinel")) {
566
+ t58 = /*#__PURE__*/jsx("div", {
292
567
  className: styles$1.emptyContainer,
293
568
  children: /*#__PURE__*/jsx(Empty, {
294
569
  className: styles$1.empty,
295
570
  children: /*#__PURE__*/jsx(FormattedMessage, {
296
571
  id: "zl6zsZ",
297
- defaultMessage: [{
298
- "type": 0,
299
- "value": "Lede"
300
- }]
572
+ defaultMessage: "Lede"
301
573
  })
302
574
  })
303
- }),
304
- isEmpty: !hasDescription && !hasArticle,
305
- children: hasDescription ? /*#__PURE__*/jsx("div", {
575
+ });
576
+ $[60] = t58;
577
+ } else {
578
+ t58 = $[60];
579
+ }
580
+ const t59 = !hasDescription && !hasArticle;
581
+ let t60;
582
+ if ($[61] !== description || $[62] !== hasDescription) {
583
+ t60 = hasDescription ? /*#__PURE__*/jsx("div", {
306
584
  className: classNames([styles$1.description]),
307
- children: /*#__PURE__*/jsx(Text, _objectSpread({
308
- className: classNames([styles$1.lede])
309
- }, description))
310
- }) : null
311
- }, "description"), /*#__PURE__*/jsx(ScreenElement, {
312
- empty: /*#__PURE__*/jsx("div", {
313
- className: classNames([styles$1.emptyContainer, styles$1.small]),
585
+ children: /*#__PURE__*/jsx(Text, {
586
+ className: classNames([styles$1.lede]),
587
+ ...description
588
+ })
589
+ }) : null;
590
+ $[61] = description;
591
+ $[62] = hasDescription;
592
+ $[63] = t60;
593
+ } else {
594
+ t60 = $[63];
595
+ }
596
+ let t61;
597
+ if ($[64] !== t59 || $[65] !== t60) {
598
+ t61 = /*#__PURE__*/jsx(ScreenElement, {
599
+ empty: t58,
600
+ isEmpty: t59,
601
+ children: t60
602
+ }, "description");
603
+ $[64] = t59;
604
+ $[65] = t60;
605
+ $[66] = t61;
606
+ } else {
607
+ t61 = $[66];
608
+ }
609
+ let t62;
610
+ if ($[67] === Symbol.for("react.memo_cache_sentinel")) {
611
+ t62 = classNames([styles$1.emptyContainer, styles$1.small]);
612
+ $[67] = t62;
613
+ } else {
614
+ t62 = $[67];
615
+ }
616
+ let t63;
617
+ if ($[68] === Symbol.for("react.memo_cache_sentinel")) {
618
+ t63 = /*#__PURE__*/jsx("div", {
619
+ className: t62,
314
620
  children: /*#__PURE__*/jsx(Empty, {
315
621
  className: styles$1.empty,
316
622
  children: /*#__PURE__*/jsx(FormattedMessage, {
317
623
  id: "zGIcdn",
318
- defaultMessage: [{
319
- "type": 0,
320
- "value": "Sponsors"
321
- }]
624
+ defaultMessage: "Sponsors"
322
625
  })
323
626
  })
324
- }),
325
- isEmpty: !hasSponsor && !hasArticle,
326
- children: hasSponsor ? /*#__PURE__*/jsx("div", {
627
+ });
628
+ $[68] = t63;
629
+ } else {
630
+ t63 = $[68];
631
+ }
632
+ const t64 = !hasSponsor && !hasArticle;
633
+ let t65;
634
+ if ($[69] !== hasSponsor || $[70] !== sponsorColor || $[71] !== sponsorPrefix || $[72] !== sponsors) {
635
+ t65 = hasSponsor ? /*#__PURE__*/jsx("div", {
327
636
  className: styles$1.sponsors,
328
- style: _objectSpread({}, getStyleFromColor(sponsorColor)),
329
- children: sponsors.map(function () {
330
- var sponsor = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
331
- var _ref9 = sponsor || {},
332
- _ref9$body = _ref9.body,
333
- body = _ref9$body === void 0 ? '' : _ref9$body;
637
+ style: {
638
+ ...getStyleFromColor(sponsorColor)
639
+ },
640
+ children: sponsors.map(t66 => {
641
+ const sponsor = t66 === undefined ? null : t66;
642
+ const {
643
+ body: t67
644
+ } = sponsor || {};
645
+ const body = t67 === undefined ? "" : t67;
334
646
  return /*#__PURE__*/jsxs(React.Fragment, {
335
647
  children: [sponsorPrefix !== null ? /*#__PURE__*/jsx("span", {
336
648
  className: styles$1.sponsor,
337
649
  children: sponsorPrefix
338
650
  }) : null, /*#__PURE__*/jsx("span", {
339
651
  children: "\xA0"
340
- }), /*#__PURE__*/jsx(Heading, _objectSpread({
652
+ }), /*#__PURE__*/jsx(Heading, {
341
653
  className: styles$1.sponsor,
342
- size: "6"
343
- }, sponsor))]
654
+ size: "6",
655
+ ...sponsor
656
+ })]
344
657
  }, body);
345
658
  })
346
- }) : null
347
- }, "sponsors")].filter(function (it) {
348
- return it !== null;
349
- });
350
- return /*#__PURE__*/jsxs("div", {
351
- className: classNames([styles$1.container, className, _defineProperty(_defineProperty(_defineProperty(_defineProperty({}, styles$1.isCurrent, current), styles$1.isVideo, isVideo), styles$1.hasVideoBackground, hasVideoBackground), styles$1.isPlaceholder, isPlaceholder)]),
352
- "data-screen-ready": isStatic || isCapture,
353
- children: [/*#__PURE__*/jsx(Background, {
659
+ }) : null;
660
+ $[69] = hasSponsor;
661
+ $[70] = sponsorColor;
662
+ $[71] = sponsorPrefix;
663
+ $[72] = sponsors;
664
+ $[73] = t65;
665
+ } else {
666
+ t65 = $[73];
667
+ }
668
+ let t66;
669
+ if ($[74] !== t64 || $[75] !== t65) {
670
+ t66 = /*#__PURE__*/jsx(ScreenElement, {
671
+ empty: t63,
672
+ isEmpty: t64,
673
+ children: t65
674
+ }, "sponsors");
675
+ $[74] = t64;
676
+ $[75] = t65;
677
+ $[76] = t66;
678
+ } else {
679
+ t66 = $[76];
680
+ }
681
+ let t67;
682
+ if ($[77] !== t47 || $[78] !== t52 || $[79] !== t57 || $[80] !== t61 || $[81] !== t66) {
683
+ t67 = [t47, t52, t57, t61, t66].filter(_temp$2);
684
+ $[77] = t47;
685
+ $[78] = t52;
686
+ $[79] = t57;
687
+ $[80] = t61;
688
+ $[81] = t66;
689
+ $[82] = t67;
690
+ } else {
691
+ t67 = $[82];
692
+ }
693
+ const items = t67;
694
+ let t68;
695
+ if ($[83] !== className || $[84] !== current || $[85] !== hasVideoBackground || $[86] !== isPlaceholder || $[87] !== isVideo) {
696
+ t68 = classNames([styles$1.container, className, {
697
+ [styles$1.isCurrent]: current,
698
+ [styles$1.isVideo]: isVideo,
699
+ [styles$1.hasVideoBackground]: hasVideoBackground,
700
+ [styles$1.isPlaceholder]: isPlaceholder
701
+ }]);
702
+ $[83] = className;
703
+ $[84] = current;
704
+ $[85] = hasVideoBackground;
705
+ $[86] = isPlaceholder;
706
+ $[87] = isVideo;
707
+ $[88] = t68;
708
+ } else {
709
+ t68 = $[88];
710
+ }
711
+ const t69 = isStatic || isCapture;
712
+ let t70;
713
+ if ($[89] !== customMediaRef || $[90] !== isVideoBackground || $[91] !== mediaRef) {
714
+ t70 = isVideoBackground ? mergeRefs(mediaRef, customMediaRef) : null;
715
+ $[89] = customMediaRef;
716
+ $[90] = isVideoBackground;
717
+ $[91] = mediaRef;
718
+ $[92] = t70;
719
+ } else {
720
+ t70 = $[92];
721
+ }
722
+ let t71;
723
+ if ($[93] !== background || $[94] !== backgroundPlaying || $[95] !== height || $[96] !== isPreview || $[97] !== mediaShouldLoad || $[98] !== muted || $[99] !== resolution || $[100] !== t70 || $[101] !== width) {
724
+ t71 = /*#__PURE__*/jsx(Background, {
354
725
  className: styles$1.background,
355
726
  background: background,
356
727
  width: width,
@@ -359,274 +730,755 @@ function UrbaniaArticle(_ref) {
359
730
  playing: backgroundPlaying,
360
731
  muted: muted,
361
732
  shouldLoad: mediaShouldLoad,
362
- mediaRef: isVideoBackground ? mergeRefs(mediaRef, customMediaRef) : null,
733
+ mediaRef: t70,
363
734
  withoutVideo: isPreview
364
- }), /*#__PURE__*/jsxs(Container, {
735
+ });
736
+ $[93] = background;
737
+ $[94] = backgroundPlaying;
738
+ $[95] = height;
739
+ $[96] = isPreview;
740
+ $[97] = mediaShouldLoad;
741
+ $[98] = muted;
742
+ $[99] = resolution;
743
+ $[100] = t70;
744
+ $[101] = width;
745
+ $[102] = t71;
746
+ } else {
747
+ t71 = $[102];
748
+ }
749
+ let t72;
750
+ if ($[103] !== hasHeader || $[104] !== header || $[105] !== isPlaceholder || $[106] !== isPreview || $[107] !== spacing || $[108] !== viewerTopHeight) {
751
+ t72 = !isPlaceholder && hasHeader ? /*#__PURE__*/jsx("div", {
752
+ className: styles$1.header,
753
+ style: {
754
+ paddingTop: spacing / 2,
755
+ paddingLeft: spacing,
756
+ paddingRight: spacing,
757
+ transform: !isPreview ? `translate(0, ${viewerTopHeight}px)` : null
758
+ },
759
+ children: /*#__PURE__*/jsx(Header, {
760
+ ...header
761
+ })
762
+ }, "header") : null;
763
+ $[103] = hasHeader;
764
+ $[104] = header;
765
+ $[105] = isPlaceholder;
766
+ $[106] = isPreview;
767
+ $[107] = spacing;
768
+ $[108] = viewerTopHeight;
769
+ $[109] = t72;
770
+ } else {
771
+ t72 = $[109];
772
+ }
773
+ const t73 = styles$1[`${site}`];
774
+ const t74 = site !== null;
775
+ let t75;
776
+ if ($[110] !== t73 || $[111] !== t74) {
777
+ t75 = classNames([styles$1.articleContent, {
778
+ [t73]: t74
779
+ }]);
780
+ $[110] = t73;
781
+ $[111] = t74;
782
+ $[112] = t75;
783
+ } else {
784
+ t75 = $[112];
785
+ }
786
+ let t76;
787
+ if ($[113] !== backgroundColor || $[114] !== isVideo) {
788
+ t76 = !isVideo ? getStyleFromColor(backgroundColor, "backgroundColor") : null;
789
+ $[113] = backgroundColor;
790
+ $[114] = isVideo;
791
+ $[115] = t76;
792
+ } else {
793
+ t76 = $[115];
794
+ }
795
+ let t77;
796
+ if ($[116] !== minContentHeight || $[117] !== spacing || $[118] !== t76) {
797
+ t77 = {
798
+ paddingTop: spacing,
799
+ minHeight: minContentHeight,
800
+ ...t76
801
+ };
802
+ $[116] = minContentHeight;
803
+ $[117] = spacing;
804
+ $[118] = t76;
805
+ $[119] = t77;
806
+ } else {
807
+ t77 = $[119];
808
+ }
809
+ let t78;
810
+ if ($[120] !== contentRef || $[121] !== items || $[122] !== t75 || $[123] !== t77) {
811
+ t78 = /*#__PURE__*/jsx("div", {
812
+ className: t75,
813
+ style: t77,
814
+ ref: contentRef,
815
+ children: items
816
+ });
817
+ $[120] = contentRef;
818
+ $[121] = items;
819
+ $[122] = t75;
820
+ $[123] = t77;
821
+ $[124] = t78;
822
+ } else {
823
+ t78 = $[124];
824
+ }
825
+ let t79;
826
+ if ($[125] === Symbol.for("react.memo_cache_sentinel")) {
827
+ t79 = /*#__PURE__*/jsx(PlaceholderImage, {
828
+ className: styles$1.placeholder
829
+ });
830
+ $[125] = t79;
831
+ } else {
832
+ t79 = $[125];
833
+ }
834
+ let t80;
835
+ if ($[126] === Symbol.for("react.memo_cache_sentinel")) {
836
+ t80 = /*#__PURE__*/jsx("div", {
837
+ className: styles$1.emptyContainer,
838
+ children: /*#__PURE__*/jsx(Empty, {
839
+ className: styles$1.empty,
840
+ children: /*#__PURE__*/jsx(FormattedMessage, {
841
+ id: "ebsPd4",
842
+ defaultMessage: "Image"
843
+ })
844
+ })
845
+ });
846
+ $[126] = t80;
847
+ } else {
848
+ t80 = $[126];
849
+ }
850
+ const t81 = !hasImage && !hasArticle;
851
+ let t82;
852
+ if ($[127] !== hasImage || $[128] !== height || $[129] !== image || $[130] !== isVideo || $[131] !== mediaShouldLoad || $[132] !== resolution || $[133] !== width) {
853
+ t82 = hasImage && !isVideo ? /*#__PURE__*/jsx(Visual, {
854
+ className: styles$1.image,
855
+ imageClassName: styles$1.img,
856
+ media: image,
857
+ width: width,
858
+ height: height,
859
+ resolution: resolution,
860
+ objectFit: {
861
+ fit: "cover"
862
+ },
863
+ shouldLoad: mediaShouldLoad
864
+ }) : null;
865
+ $[127] = hasImage;
866
+ $[128] = height;
867
+ $[129] = image;
868
+ $[130] = isVideo;
869
+ $[131] = mediaShouldLoad;
870
+ $[132] = resolution;
871
+ $[133] = width;
872
+ $[134] = t82;
873
+ } else {
874
+ t82 = $[134];
875
+ }
876
+ let t83;
877
+ if ($[135] !== customMediaRef || $[136] !== finalPlaying || $[137] !== hasImage || $[138] !== hasVideoBackground || $[139] !== height || $[140] !== image || $[141] !== isPreview || $[142] !== isVideo || $[143] !== mediaRef || $[144] !== mediaShouldLoad || $[145] !== muted || $[146] !== resolution || $[147] !== width) {
878
+ t83 = hasImage && isVideo && !hasVideoBackground ? /*#__PURE__*/jsx(Visual, {
879
+ className: styles$1.video,
880
+ media: image,
881
+ width: width,
882
+ height: height,
883
+ resolution: resolution,
884
+ objectFit: {
885
+ fit: "cover"
886
+ },
887
+ shouldLoad: mediaShouldLoad,
888
+ playing: finalPlaying,
889
+ muted: muted,
890
+ withoutVideo: isPreview,
891
+ mediaRef: mergeRefs(mediaRef, customMediaRef),
892
+ autoPlay: true
893
+ }) : null;
894
+ $[135] = customMediaRef;
895
+ $[136] = finalPlaying;
896
+ $[137] = hasImage;
897
+ $[138] = hasVideoBackground;
898
+ $[139] = height;
899
+ $[140] = image;
900
+ $[141] = isPreview;
901
+ $[142] = isVideo;
902
+ $[143] = mediaRef;
903
+ $[144] = mediaShouldLoad;
904
+ $[145] = muted;
905
+ $[146] = resolution;
906
+ $[147] = width;
907
+ $[148] = t83;
908
+ } else {
909
+ t83 = $[148];
910
+ }
911
+ let t84;
912
+ if ($[149] !== t81 || $[150] !== t82 || $[151] !== t83) {
913
+ t84 = /*#__PURE__*/jsx("div", {
914
+ className: styles$1.visual,
915
+ children: /*#__PURE__*/jsxs(ScreenElement, {
916
+ placeholder: t79,
917
+ empty: t80,
918
+ isEmpty: t81,
919
+ children: [t82, t83]
920
+ }, "image")
921
+ });
922
+ $[149] = t81;
923
+ $[150] = t82;
924
+ $[151] = t83;
925
+ $[152] = t84;
926
+ } else {
927
+ t84 = $[152];
928
+ }
929
+ let t85;
930
+ if ($[153] !== footerProps || $[154] !== hasFooter || $[155] !== isPlaceholder || $[156] !== spacing || $[157] !== viewerBottomSidesWidth) {
931
+ t85 = !isPlaceholder && hasFooter ? /*#__PURE__*/jsx("div", {
932
+ style: {
933
+ paddingTop: spacing,
934
+ paddingLeft: Math.max(0, viewerBottomSidesWidth - spacing),
935
+ paddingRight: Math.max(0, viewerBottomSidesWidth - spacing)
936
+ },
937
+ className: styles$1.footer,
938
+ children: /*#__PURE__*/jsx(Footer, {
939
+ ...footerProps
940
+ })
941
+ }) : null;
942
+ $[153] = footerProps;
943
+ $[154] = hasFooter;
944
+ $[155] = isPlaceholder;
945
+ $[156] = spacing;
946
+ $[157] = viewerBottomSidesWidth;
947
+ $[158] = t85;
948
+ } else {
949
+ t85 = $[158];
950
+ }
951
+ let t86;
952
+ if ($[159] !== t85) {
953
+ t86 = /*#__PURE__*/jsx("div", {
954
+ className: styles$1.footerContainer,
955
+ children: t85
956
+ });
957
+ $[159] = t85;
958
+ $[160] = t86;
959
+ } else {
960
+ t86 = $[160];
961
+ }
962
+ let t87;
963
+ if ($[161] !== height || $[162] !== t72 || $[163] !== t78 || $[164] !== t84 || $[165] !== t86 || $[166] !== width) {
964
+ t87 = /*#__PURE__*/jsxs(Container, {
365
965
  className: styles$1.content,
366
966
  width: width,
367
967
  height: height,
368
- children: [!isPlaceholder && hasHeader ? /*#__PURE__*/jsx("div", {
369
- className: styles$1.header,
370
- style: {
371
- paddingTop: spacing / 2,
372
- paddingLeft: spacing,
373
- paddingRight: spacing,
374
- transform: !isPreview ? "translate(0, ".concat(viewerTopHeight, "px)") : null
375
- },
376
- children: /*#__PURE__*/jsx(Header, _objectSpread({}, header))
377
- }, "header") : null, /*#__PURE__*/jsx("div", {
378
- className: classNames([styles$1.articleContent, _defineProperty({}, styles$1["".concat(site)], site !== null)]),
379
- style: _objectSpread({
380
- paddingTop: spacing,
381
- minHeight: minContentHeight
382
- }, !isVideo ? getStyleFromColor(backgroundColor, 'backgroundColor') : null),
383
- ref: contentRef,
384
- children: items
385
- }), /*#__PURE__*/jsx("div", {
386
- className: styles$1.visual,
387
- children: /*#__PURE__*/jsxs(ScreenElement, {
388
- placeholder: /*#__PURE__*/jsx(PlaceholderImage, {
389
- className: styles$1.placeholder
390
- }),
391
- empty: /*#__PURE__*/jsx("div", {
392
- className: styles$1.emptyContainer,
393
- children: /*#__PURE__*/jsx(Empty, {
394
- className: styles$1.empty,
395
- children: /*#__PURE__*/jsx(FormattedMessage, {
396
- id: "ebsPd4",
397
- defaultMessage: [{
398
- "type": 0,
399
- "value": "Image"
400
- }]
401
- })
402
- })
403
- }),
404
- isEmpty: !hasImage && !hasArticle,
405
- children: [hasImage && !isVideo ? /*#__PURE__*/jsx(Visual, {
406
- className: styles$1.image,
407
- imageClassName: styles$1.img,
408
- media: image,
409
- width: width,
410
- height: height,
411
- resolution: resolution,
412
- objectFit: {
413
- fit: 'cover'
414
- },
415
- shouldLoad: mediaShouldLoad
416
- }) : null, hasImage && isVideo && !hasVideoBackground ? /*#__PURE__*/jsx(Visual, {
417
- className: styles$1.video,
418
- media: image,
419
- width: width,
420
- height: height,
421
- resolution: resolution,
422
- objectFit: {
423
- fit: 'cover'
424
- },
425
- shouldLoad: mediaShouldLoad,
426
- playing: finalPlaying,
427
- muted: muted,
428
- withoutVideo: isPreview,
429
- mediaRef: mergeRefs(mediaRef, customMediaRef),
430
- autoPlay: true
431
- }) : null]
432
- }, "image")
433
- }), /*#__PURE__*/jsx("div", {
434
- className: styles$1.footerContainer,
435
- children: !isPlaceholder && hasFooter ? /*#__PURE__*/jsx("div", {
436
- style: {
437
- paddingTop: spacing,
438
- paddingLeft: Math.max(0, viewerBottomSidesWidth - spacing),
439
- paddingRight: Math.max(0, viewerBottomSidesWidth - spacing)
440
- },
441
- className: styles$1.footer,
442
- children: /*#__PURE__*/jsx(Footer, _objectSpread({}, footerProps))
443
- }) : null
444
- })]
445
- })]
446
- });
968
+ children: [t72, t78, t84, t86]
969
+ });
970
+ $[161] = height;
971
+ $[162] = t72;
972
+ $[163] = t78;
973
+ $[164] = t84;
974
+ $[165] = t86;
975
+ $[166] = width;
976
+ $[167] = t87;
977
+ } else {
978
+ t87 = $[167];
979
+ }
980
+ let t88;
981
+ if ($[168] !== t68 || $[169] !== t69 || $[170] !== t71 || $[171] !== t87) {
982
+ t88 = /*#__PURE__*/jsxs("div", {
983
+ className: t68,
984
+ "data-screen-ready": t69,
985
+ children: [t71, t87]
986
+ });
987
+ $[168] = t68;
988
+ $[169] = t69;
989
+ $[170] = t71;
990
+ $[171] = t87;
991
+ $[172] = t88;
992
+ } else {
993
+ t88 = $[172];
994
+ }
995
+ return t88;
996
+ }
997
+ function _temp$2(it) {
998
+ return it !== null;
447
999
  }
448
1000
 
449
- var _excluded = ["component", "title", "articleType", "overTitle", "sponsorLabel", "author", "image", "header", "footer", "url", "article"];
450
- function UrbaniaLoader(_ref) {
451
- var _ref$component = _ref.component,
452
- Component = _ref$component === void 0 ? UrbaniaArticle : _ref$component,
453
- _ref$title = _ref.title,
454
- title = _ref$title === void 0 ? null : _ref$title,
455
- _ref$articleType = _ref.articleType,
456
- articleType = _ref$articleType === void 0 ? null : _ref$articleType,
457
- _ref$overTitle = _ref.overTitle,
458
- overTitle = _ref$overTitle === void 0 ? null : _ref$overTitle,
459
- _ref$sponsorLabel = _ref.sponsorLabel,
460
- sponsorLabel = _ref$sponsorLabel === void 0 ? null : _ref$sponsorLabel,
461
- _ref$author = _ref.author,
462
- author = _ref$author === void 0 ? null : _ref$author,
463
- _ref$image = _ref.image,
464
- image = _ref$image === void 0 ? null : _ref$image,
465
- _ref$header = _ref.header,
466
- header = _ref$header === void 0 ? null : _ref$header,
467
- _ref$footer = _ref.footer,
468
- footer = _ref$footer === void 0 ? null : _ref$footer,
469
- _ref$url = _ref.url,
470
- url = _ref$url === void 0 ? null : _ref$url,
471
- _ref$article = _ref.article,
472
- initialArticle = _ref$article === void 0 ? null : _ref$article,
473
- props = _objectWithoutProperties(_ref, _excluded);
474
- var _useState = useState(initialArticle),
475
- _useState2 = _slicedToArray(_useState, 2),
476
- article = _useState2[0],
477
- setArticle = _useState2[1];
478
- var finalUrl = url !== null && isValidUrl(url) ? url.replace(/^https?:\/\/([^.]+\.)?urbania\.(ca|ƒr)\//, 'https://urbania.$2/') : null;
479
- useEffect(function () {
480
- if (finalUrl !== null) {
481
- getJSON("https://api.urbania.ca/documents?uri=".concat(finalUrl), {
482
- mode: 'cors'
483
- }).then(function (art) {
484
- // console.log('art loaded', art);
485
- setArticle(art || null);
486
- })["catch"](function (_e) {
487
- // console.log('art error', e);
488
- setArticle(null);
489
- });
490
- }
491
- }, [url, finalUrl, setArticle]);
492
- var values = useMemo(function () {
493
- var _ref2 = image || {},
494
- _ref2$url = _ref2.url,
495
- imageUrl = _ref2$url === void 0 ? null : _ref2$url;
496
- var _ref3 = footer || {},
497
- _ref3$callToAction = _ref3.callToAction,
498
- callToAction = _ref3$callToAction === void 0 ? null : _ref3$callToAction;
499
- var _ref4 = callToAction || {},
500
- _ref4$url = _ref4.url,
501
- ctaUrl = _ref4$url === void 0 ? null : _ref4$url;
502
-
503
- // Straight from article
504
- var _ref5 = article || {},
505
- _ref5$type = _ref5.type,
506
- type = _ref5$type === void 0 ? null : _ref5$type,
507
- _ref5$title = _ref5.title,
508
- articleTitle = _ref5$title === void 0 ? null : _ref5$title,
509
- _ref5$image = _ref5.image,
510
- articleImage = _ref5$image === void 0 ? null : _ref5$image,
511
- _ref5$metadata = _ref5.metadata,
512
- metadata = _ref5$metadata === void 0 ? {} : _ref5$metadata;
513
- var hasArticle = article !== null;
514
- var _ref6 = metadata || {},
515
- _ref6$authors = _ref6.authors,
516
- authors = _ref6$authors === void 0 ? [] : _ref6$authors,
517
- _ref6$sponsors = _ref6.sponsors,
518
- sponsors = _ref6$sponsors === void 0 ? [] : _ref6$sponsors,
519
- _ref6$brands = _ref6.brands,
520
- brands = _ref6$brands === void 0 ? [] : _ref6$brands;
521
- var _ref7 = authors || [],
522
- _ref8 = _slicedToArray(_ref7, 1),
523
- _ref8$ = _ref8[0],
524
- creditAuthor = _ref8$ === void 0 ? null : _ref8$;
525
- var _ref9 = brands || [],
526
- _ref0 = _slicedToArray(_ref9, 1),
527
- _ref0$ = _ref0[0],
528
- _ref0$2 = _ref0$ === void 0 ? {} : _ref0$,
529
- _ref0$2$handle = _ref0$2.handle,
530
- site = _ref0$2$handle === void 0 ? null : _ref0$2$handle;
531
- var _ref1 = articleImage || {},
532
- _ref1$sizes = _ref1.sizes,
533
- sizes = _ref1$sizes === void 0 ? {} : _ref1$sizes;
534
- var _ref10 = sizes || {},
535
- _ref10$medium = _ref10.medium,
536
- medium = _ref10$medium === void 0 ? {} : _ref10$medium,
537
- _ref10$large = _ref10.large,
538
- large = _ref10$large === void 0 ? {} : _ref10$large;
539
- var _ref11 = creditAuthor || {},
540
- _ref11$name = _ref11.name,
541
- authorName = _ref11$name === void 0 ? null : _ref11$name,
542
- _ref11$image = _ref11.image,
543
- authorImage = _ref11$image === void 0 ? null : _ref11$image;
544
- var hasCreditAuthorName = authorName !== null && authorName !== '';
545
- var finalArticleAuthor = _objectSpread(_objectSpread({}, hasCreditAuthorName ? {
546
- name: {
547
- body: "<p>".concat(authorName, "</p>")
1001
+ function UrbaniaLoader(t0) {
1002
+ const $ = c(101);
1003
+ let props;
1004
+ let t1;
1005
+ let t10;
1006
+ let t11;
1007
+ let t2;
1008
+ let t3;
1009
+ let t4;
1010
+ let t5;
1011
+ let t6;
1012
+ let t7;
1013
+ let t8;
1014
+ let t9;
1015
+ if ($[0] !== t0) {
1016
+ ({
1017
+ component: t1,
1018
+ title: t2,
1019
+ articleType: t3,
1020
+ overTitle: t4,
1021
+ sponsorLabel: t5,
1022
+ author: t6,
1023
+ image: t7,
1024
+ header: t8,
1025
+ footer: t9,
1026
+ url: t10,
1027
+ article: t11,
1028
+ ...props
1029
+ } = t0);
1030
+ $[0] = t0;
1031
+ $[1] = props;
1032
+ $[2] = t1;
1033
+ $[3] = t10;
1034
+ $[4] = t11;
1035
+ $[5] = t2;
1036
+ $[6] = t3;
1037
+ $[7] = t4;
1038
+ $[8] = t5;
1039
+ $[9] = t6;
1040
+ $[10] = t7;
1041
+ $[11] = t8;
1042
+ $[12] = t9;
1043
+ } else {
1044
+ props = $[1];
1045
+ t1 = $[2];
1046
+ t10 = $[3];
1047
+ t11 = $[4];
1048
+ t2 = $[5];
1049
+ t3 = $[6];
1050
+ t4 = $[7];
1051
+ t5 = $[8];
1052
+ t6 = $[9];
1053
+ t7 = $[10];
1054
+ t8 = $[11];
1055
+ t9 = $[12];
1056
+ }
1057
+ const Component = t1 === undefined ? UrbaniaArticle : t1;
1058
+ const title = t2 === undefined ? null : t2;
1059
+ const articleType = t3 === undefined ? null : t3;
1060
+ const overTitle = t4 === undefined ? null : t4;
1061
+ const sponsorLabel = t5 === undefined ? null : t5;
1062
+ const author = t6 === undefined ? null : t6;
1063
+ const image = t7 === undefined ? null : t7;
1064
+ const header = t8 === undefined ? null : t8;
1065
+ const footer = t9 === undefined ? null : t9;
1066
+ const url = t10 === undefined ? null : t10;
1067
+ const initialArticle = t11 === undefined ? null : t11;
1068
+ const [article, setArticle] = useState(initialArticle);
1069
+ let t12;
1070
+ if ($[13] !== url) {
1071
+ t12 = url !== null && isValidUrl(url) ? url.replace(/^https?:\/\/([^.]+\.)?urbania\.(ca|ƒr)\//, "https://urbania.$2/") : null;
1072
+ $[13] = url;
1073
+ $[14] = t12;
1074
+ } else {
1075
+ t12 = $[14];
1076
+ }
1077
+ const finalUrl = t12;
1078
+ let t13;
1079
+ if ($[15] !== finalUrl) {
1080
+ t13 = () => {
1081
+ if (finalUrl !== null) {
1082
+ getJSON(`https://api.urbania.ca/documents?uri=${finalUrl}`, {
1083
+ mode: "cors"
1084
+ }).then(art => {
1085
+ setArticle(art || null);
1086
+ }).catch(_e => {
1087
+ setArticle(null);
1088
+ });
548
1089
  }
549
- } : null), authorImage !== null ? {
550
- image: authorImage
551
- } : null);
552
-
553
- // Type
554
- var defaultType = articleType || type;
555
-
556
- // Sponsors
557
- var defaultSponsor = (sponsors || []).length > 0 ? (sponsors || []).map(function (_ref12) {
558
- var _ref12$organisation = _ref12.organisation,
559
- _ref12$organisation2 = _ref12$organisation === void 0 ? {} : _ref12$organisation,
560
- _ref12$organisation2$ = _ref12$organisation2.name,
561
- name = _ref12$organisation2$ === void 0 ? null : _ref12$organisation2$;
562
- return name;
563
- }).filter(function (name) {
564
- return name !== null;
565
- }).join(', ').trim() : null;
566
-
567
- // Content
568
- var hasTitle = isTextFilled(title);
569
- var hasOverTitle = isTextFilled(overTitle);
570
- var hasSponsorProps = isTextFilled(sponsorLabel);
571
- var hasAuthorProps = author !== null && author.name !== null && isTextFilled(author.name);
572
- var sponsorPrefix = !hasSponsorProps && defaultSponsor !== null ? /*#__PURE__*/jsx(FormattedMessage, {
1090
+ };
1091
+ $[15] = finalUrl;
1092
+ $[16] = t13;
1093
+ } else {
1094
+ t13 = $[16];
1095
+ }
1096
+ let t14;
1097
+ if ($[17] !== finalUrl || $[18] !== url) {
1098
+ t14 = [url, finalUrl, setArticle];
1099
+ $[17] = finalUrl;
1100
+ $[18] = url;
1101
+ $[19] = t14;
1102
+ } else {
1103
+ t14 = $[19];
1104
+ }
1105
+ useEffect(t13, t14);
1106
+ let t15;
1107
+ if ($[20] !== image) {
1108
+ t15 = image || {};
1109
+ $[20] = image;
1110
+ $[21] = t15;
1111
+ } else {
1112
+ t15 = $[21];
1113
+ }
1114
+ const {
1115
+ url: t16
1116
+ } = t15;
1117
+ const imageUrl = t16 === undefined ? null : t16;
1118
+ let t17;
1119
+ if ($[22] !== footer) {
1120
+ t17 = footer || {};
1121
+ $[22] = footer;
1122
+ $[23] = t17;
1123
+ } else {
1124
+ t17 = $[23];
1125
+ }
1126
+ const {
1127
+ callToAction: t18
1128
+ } = t17;
1129
+ const callToAction = t18 === undefined ? null : t18;
1130
+ let t19;
1131
+ if ($[24] !== callToAction) {
1132
+ t19 = callToAction || {};
1133
+ $[24] = callToAction;
1134
+ $[25] = t19;
1135
+ } else {
1136
+ t19 = $[25];
1137
+ }
1138
+ const {
1139
+ url: t20
1140
+ } = t19;
1141
+ const ctaUrl = t20 === undefined ? null : t20;
1142
+ let articleImage;
1143
+ let articleTitle;
1144
+ let defaultType;
1145
+ let finalArticleAuthor;
1146
+ let hasArticle;
1147
+ let large;
1148
+ let medium;
1149
+ let site;
1150
+ let t21;
1151
+ if ($[26] !== article || $[27] !== articleType) {
1152
+ const {
1153
+ type: t22,
1154
+ title: t23,
1155
+ image: t24,
1156
+ metadata: t25
1157
+ } = article || {};
1158
+ const type = t22 === undefined ? null : t22;
1159
+ articleTitle = t23 === undefined ? null : t23;
1160
+ articleImage = t24 === undefined ? null : t24;
1161
+ const metadata = t25 === undefined ? {} : t25;
1162
+ hasArticle = article !== null;
1163
+ const {
1164
+ authors: t26,
1165
+ sponsors: t27,
1166
+ brands: t28
1167
+ } = metadata || {};
1168
+ const authors = t26 === undefined ? [] : t26;
1169
+ const sponsors = t27 === undefined ? [] : t27;
1170
+ const brands = t28 === undefined ? [] : t28;
1171
+ const [t29] = authors || [];
1172
+ const creditAuthor = t29 === undefined ? null : t29;
1173
+ const [t30] = brands || [];
1174
+ const {
1175
+ handle: t31
1176
+ } = t30 === undefined ? {} : t30;
1177
+ site = t31 === undefined ? null : t31;
1178
+ const {
1179
+ sizes: t32
1180
+ } = articleImage || {};
1181
+ const sizes = t32 === undefined ? {} : t32;
1182
+ const {
1183
+ medium: t33,
1184
+ large: t34
1185
+ } = sizes || {};
1186
+ medium = t33 === undefined ? {} : t33;
1187
+ large = t34 === undefined ? {} : t34;
1188
+ const {
1189
+ name: t35,
1190
+ image: t36
1191
+ } = creditAuthor || {};
1192
+ const authorName = t35 === undefined ? null : t35;
1193
+ const authorImage = t36 === undefined ? null : t36;
1194
+ const hasCreditAuthorName = authorName !== null && authorName !== "";
1195
+ finalArticleAuthor = {
1196
+ ...(hasCreditAuthorName ? {
1197
+ name: {
1198
+ body: `<p>${authorName}</p>`
1199
+ }
1200
+ } : null),
1201
+ ...(authorImage !== null ? {
1202
+ image: authorImage
1203
+ } : null)
1204
+ };
1205
+ defaultType = articleType || type;
1206
+ t21 = (sponsors || []).length > 0 ? (sponsors || []).map(_temp$1).filter(_temp2$1).join(", ").trim() : null;
1207
+ $[26] = article;
1208
+ $[27] = articleType;
1209
+ $[28] = articleImage;
1210
+ $[29] = articleTitle;
1211
+ $[30] = defaultType;
1212
+ $[31] = finalArticleAuthor;
1213
+ $[32] = hasArticle;
1214
+ $[33] = large;
1215
+ $[34] = medium;
1216
+ $[35] = site;
1217
+ $[36] = t21;
1218
+ } else {
1219
+ articleImage = $[28];
1220
+ articleTitle = $[29];
1221
+ defaultType = $[30];
1222
+ finalArticleAuthor = $[31];
1223
+ hasArticle = $[32];
1224
+ large = $[33];
1225
+ medium = $[34];
1226
+ site = $[35];
1227
+ t21 = $[36];
1228
+ }
1229
+ const defaultSponsor = t21;
1230
+ let t22;
1231
+ if ($[37] !== title) {
1232
+ t22 = isTextFilled(title);
1233
+ $[37] = title;
1234
+ $[38] = t22;
1235
+ } else {
1236
+ t22 = $[38];
1237
+ }
1238
+ const hasTitle = t22;
1239
+ let t23;
1240
+ if ($[39] !== overTitle) {
1241
+ t23 = isTextFilled(overTitle);
1242
+ $[39] = overTitle;
1243
+ $[40] = t23;
1244
+ } else {
1245
+ t23 = $[40];
1246
+ }
1247
+ const hasOverTitle = t23;
1248
+ let t24;
1249
+ if ($[41] !== sponsorLabel) {
1250
+ t24 = isTextFilled(sponsorLabel);
1251
+ $[41] = sponsorLabel;
1252
+ $[42] = t24;
1253
+ } else {
1254
+ t24 = $[42];
1255
+ }
1256
+ const hasSponsorProps = t24;
1257
+ const hasAuthorProps = author !== null && author.name !== null && isTextFilled(author.name);
1258
+ let t25;
1259
+ if ($[43] !== defaultSponsor || $[44] !== hasSponsorProps) {
1260
+ t25 = !hasSponsorProps && defaultSponsor !== null ? /*#__PURE__*/jsx(FormattedMessage, {
573
1261
  id: "+TPjd4",
574
- defaultMessage: [{
575
- "type": 0,
576
- "value": "Presented by"
577
- }]
1262
+ defaultMessage: "Presented by"
578
1263
  }) : null;
579
- return {
1264
+ $[43] = defaultSponsor;
1265
+ $[44] = hasSponsorProps;
1266
+ $[45] = t25;
1267
+ } else {
1268
+ t25 = $[45];
1269
+ }
1270
+ const sponsorPrefix = t25;
1271
+ let t26;
1272
+ if ($[46] !== articleTitle || $[47] !== hasTitle || $[48] !== title) {
1273
+ t26 = hasTitle ? title : {
1274
+ ...title,
1275
+ body: articleTitle
1276
+ };
1277
+ $[46] = articleTitle;
1278
+ $[47] = hasTitle;
1279
+ $[48] = title;
1280
+ $[49] = t26;
1281
+ } else {
1282
+ t26 = $[49];
1283
+ }
1284
+ let t27;
1285
+ if ($[50] !== hasOverTitle || $[51] !== overTitle) {
1286
+ t27 = hasOverTitle ? overTitle : {
1287
+ ...overTitle,
1288
+ body: "En vedette"
1289
+ };
1290
+ $[50] = hasOverTitle;
1291
+ $[51] = overTitle;
1292
+ $[52] = t27;
1293
+ } else {
1294
+ t27 = $[52];
1295
+ }
1296
+ const t28 = hasAuthorProps ? author : null;
1297
+ let t29;
1298
+ if ($[53] !== finalArticleAuthor || $[54] !== t28) {
1299
+ t29 = {
1300
+ ...finalArticleAuthor,
1301
+ ...t28
1302
+ };
1303
+ $[53] = finalArticleAuthor;
1304
+ $[54] = t28;
1305
+ $[55] = t29;
1306
+ } else {
1307
+ t29 = $[55];
1308
+ }
1309
+ let t30;
1310
+ if ($[56] !== defaultSponsor || $[57] !== hasSponsorProps || $[58] !== sponsorLabel) {
1311
+ t30 = defaultSponsor !== null && !hasSponsorProps ? [{
1312
+ ...sponsorLabel,
1313
+ body: `<strong>${defaultSponsor}</strong>`
1314
+ }] : [sponsorLabel];
1315
+ $[56] = defaultSponsor;
1316
+ $[57] = hasSponsorProps;
1317
+ $[58] = sponsorLabel;
1318
+ $[59] = t30;
1319
+ } else {
1320
+ t30 = $[59];
1321
+ }
1322
+ let t31;
1323
+ if ($[60] !== articleImage || $[61] !== image || $[62] !== imageUrl || $[63] !== large || $[64] !== medium) {
1324
+ t31 = imageUrl !== null && image !== null ? image : {
1325
+ type: "image",
1326
+ ...articleImage,
1327
+ sizes: {
1328
+ medium,
1329
+ large
1330
+ }
1331
+ };
1332
+ $[60] = articleImage;
1333
+ $[61] = image;
1334
+ $[62] = imageUrl;
1335
+ $[63] = large;
1336
+ $[64] = medium;
1337
+ $[65] = t31;
1338
+ } else {
1339
+ t31 = $[65];
1340
+ }
1341
+ let t32;
1342
+ if ($[66] !== defaultType) {
1343
+ t32 = defaultType === "video" ? {
1344
+ body: "Regarder"
1345
+ } : {
1346
+ body: "Lire"
1347
+ };
1348
+ $[66] = defaultType;
1349
+ $[67] = t32;
1350
+ } else {
1351
+ t32 = $[67];
1352
+ }
1353
+ let t33;
1354
+ if ($[68] !== finalUrl || $[69] !== hasArticle) {
1355
+ t33 = hasArticle ? {
1356
+ active: finalUrl !== null
1357
+ } : null;
1358
+ $[68] = finalUrl;
1359
+ $[69] = hasArticle;
1360
+ $[70] = t33;
1361
+ } else {
1362
+ t33 = $[70];
1363
+ }
1364
+ const t34 = ctaUrl || finalUrl;
1365
+ let t35;
1366
+ if ($[71] !== callToAction || $[72] !== t32 || $[73] !== t33 || $[74] !== t34) {
1367
+ t35 = {
1368
+ type: "swipe-up",
1369
+ label: t32,
1370
+ inWebView: true,
1371
+ ...callToAction,
1372
+ ...t33,
1373
+ url: t34
1374
+ };
1375
+ $[71] = callToAction;
1376
+ $[72] = t32;
1377
+ $[73] = t33;
1378
+ $[74] = t34;
1379
+ $[75] = t35;
1380
+ } else {
1381
+ t35 = $[75];
1382
+ }
1383
+ let t36;
1384
+ if ($[76] !== footer || $[77] !== t35) {
1385
+ t36 = {
1386
+ ...footer,
1387
+ callToAction: t35
1388
+ };
1389
+ $[76] = footer;
1390
+ $[77] = t35;
1391
+ $[78] = t36;
1392
+ } else {
1393
+ t36 = $[78];
1394
+ }
1395
+ let t37;
1396
+ if ($[79] !== articleTitle || $[80] !== defaultType || $[81] !== finalUrl || $[82] !== header || $[83] !== site || $[84] !== sponsorPrefix || $[85] !== t26 || $[86] !== t27 || $[87] !== t29 || $[88] !== t30 || $[89] !== t31 || $[90] !== t36) {
1397
+ t37 = {
580
1398
  type: defaultType,
581
- title: hasTitle ? title : _objectSpread(_objectSpread({}, title), {}, {
582
- body: articleTitle
583
- }),
584
- articleTitle: articleTitle,
585
- overTitle: hasOverTitle ? overTitle : _objectSpread(_objectSpread({}, overTitle), {}, {
586
- body: 'En vedette'
587
- }),
588
- author: _objectSpread(_objectSpread({}, finalArticleAuthor), hasAuthorProps ? author : null),
589
- sponsors: defaultSponsor !== null && !hasSponsorProps ? [_objectSpread(_objectSpread({}, sponsorLabel), {}, {
590
- body: "<strong>".concat(defaultSponsor, "</strong>")
591
- })] : [sponsorLabel],
592
- sponsorPrefix: sponsorPrefix,
593
- site: site,
594
- image: imageUrl !== null && image !== null ? image : _objectSpread(_objectSpread({
595
- type: 'image'
596
- }, articleImage), {}, {
597
- sizes: {
598
- medium: medium,
599
- large: large
600
- }
601
- }),
1399
+ title: t26,
1400
+ articleTitle,
1401
+ overTitle: t27,
1402
+ author: t29,
1403
+ sponsors: t30,
1404
+ sponsorPrefix,
1405
+ site,
1406
+ image: t31,
602
1407
  url: finalUrl,
603
- header: header,
604
- footer: _objectSpread(_objectSpread({}, footer), {}, {
605
- callToAction: _objectSpread(_objectSpread(_objectSpread({
606
- type: 'swipe-up',
607
- label: defaultType === 'video' ? {
608
- body: 'Regarder'
609
- } : {
610
- body: 'Lire'
611
- },
612
- inWebView: true
613
- }, callToAction), hasArticle ? {
614
- active: finalUrl !== null
615
- } : null), {}, {
616
- url: ctaUrl || finalUrl
617
- })
618
- })
1408
+ header,
1409
+ footer: t36
619
1410
  };
620
- }, [article, url, title, finalUrl, props, articleType, overTitle, sponsorLabel, author, image, header, footer]);
621
- var _ref13 = values || {},
622
- _ref13$title = _ref13.title,
623
- articleTitle = _ref13$title === void 0 ? null : _ref13$title;
624
- var _ref14 = articleTitle || {},
625
- _ref14$body = _ref14.body,
626
- titleBody = _ref14$body === void 0 ? null : _ref14$body;
627
- return /*#__PURE__*/jsx(Component, _objectSpread(_objectSpread(_objectSpread({}, props), values), {}, {
628
- hasArticle: titleBody !== null
629
- }));
1411
+ $[79] = articleTitle;
1412
+ $[80] = defaultType;
1413
+ $[81] = finalUrl;
1414
+ $[82] = header;
1415
+ $[83] = site;
1416
+ $[84] = sponsorPrefix;
1417
+ $[85] = t26;
1418
+ $[86] = t27;
1419
+ $[87] = t29;
1420
+ $[88] = t30;
1421
+ $[89] = t31;
1422
+ $[90] = t36;
1423
+ $[91] = t37;
1424
+ } else {
1425
+ t37 = $[91];
1426
+ }
1427
+ const values = t37;
1428
+ let t38;
1429
+ if ($[92] !== values) {
1430
+ t38 = values || {};
1431
+ $[92] = values;
1432
+ $[93] = t38;
1433
+ } else {
1434
+ t38 = $[93];
1435
+ }
1436
+ const {
1437
+ title: t39
1438
+ } = t38;
1439
+ const articleTitle_0 = t39 === undefined ? null : t39;
1440
+ let t40;
1441
+ if ($[94] !== articleTitle_0) {
1442
+ t40 = articleTitle_0 || {};
1443
+ $[94] = articleTitle_0;
1444
+ $[95] = t40;
1445
+ } else {
1446
+ t40 = $[95];
1447
+ }
1448
+ const {
1449
+ body: t41
1450
+ } = t40;
1451
+ const titleBody = t41 === undefined ? null : t41;
1452
+ const t42 = titleBody !== null;
1453
+ let t43;
1454
+ if ($[96] !== Component || $[97] !== props || $[98] !== t42 || $[99] !== values) {
1455
+ t43 = /*#__PURE__*/jsx(Component, {
1456
+ ...props,
1457
+ ...values,
1458
+ hasArticle: t42
1459
+ });
1460
+ $[96] = Component;
1461
+ $[97] = props;
1462
+ $[98] = t42;
1463
+ $[99] = values;
1464
+ $[100] = t43;
1465
+ } else {
1466
+ t43 = $[100];
1467
+ }
1468
+ return t43;
1469
+ }
1470
+ function _temp2$1(name_0) {
1471
+ return name_0 !== null;
1472
+ }
1473
+ function _temp$1(t0) {
1474
+ const {
1475
+ organisation: t1
1476
+ } = t0;
1477
+ const {
1478
+ name: t2
1479
+ } = t1 === undefined ? {} : t1;
1480
+ const name = t2 === undefined ? null : t2;
1481
+ return name;
630
1482
  }
631
1483
 
632
1484
  // import * as transforms from './transforms/index';
@@ -638,19 +1490,13 @@ var definition = {
638
1490
  group: {
639
1491
  label: defineMessage({
640
1492
  id: "oPjl8f",
641
- defaultMessage: [{
642
- "type": 0,
643
- "value": "Urbania"
644
- }]
1493
+ defaultMessage: "Urbania"
645
1494
  }),
646
1495
  order: 10
647
1496
  },
648
1497
  title: defineMessage({
649
1498
  id: "nJgzwC",
650
- defaultMessage: [{
651
- "type": 0,
652
- "value": "Urbania article"
653
- }]
1499
+ defaultMessage: "Urbania article"
654
1500
  }),
655
1501
  component: UrbaniaLoader,
656
1502
  fields: [{
@@ -658,38 +1504,26 @@ var definition = {
658
1504
  type: 'url',
659
1505
  label: defineMessage({
660
1506
  id: "2pO2Cj",
661
- defaultMessage: [{
662
- "type": 0,
663
- "value": "Url"
664
- }]
1507
+ defaultMessage: "Url"
665
1508
  })
666
1509
  }, {
667
1510
  name: 'articleType',
668
1511
  type: 'select',
669
1512
  label: defineMessage({
670
1513
  id: "ppq6CK",
671
- defaultMessage: [{
672
- "type": 0,
673
- "value": "Type"
674
- }]
1514
+ defaultMessage: "Type"
675
1515
  }),
676
1516
  options: [{
677
1517
  value: 'article',
678
1518
  label: defineMessage({
679
1519
  id: "pE7UhY",
680
- defaultMessage: [{
681
- "type": 0,
682
- "value": "Article"
683
- }]
1520
+ defaultMessage: "Article"
684
1521
  })
685
1522
  }, {
686
1523
  value: 'video',
687
1524
  label: defineMessage({
688
1525
  id: "J9e9Qb",
689
- defaultMessage: [{
690
- "type": 0,
691
- "value": "Video"
692
- }]
1526
+ defaultMessage: "Video"
693
1527
  })
694
1528
  }]
695
1529
  }, {
@@ -700,90 +1534,63 @@ var definition = {
700
1534
  },
701
1535
  label: defineMessage({
702
1536
  id: "z2I2bJ",
703
- defaultMessage: [{
704
- "type": 0,
705
- "value": "Overtitle"
706
- }]
1537
+ defaultMessage: "Overtitle"
707
1538
  })
708
1539
  }, {
709
1540
  name: 'title',
710
1541
  type: 'heading-element',
711
1542
  label: defineMessage({
712
1543
  id: "N25iDO",
713
- defaultMessage: [{
714
- "type": 0,
715
- "value": "Title"
716
- }]
1544
+ defaultMessage: "Title"
717
1545
  })
718
1546
  }, {
719
1547
  name: 'description',
720
1548
  type: 'text-element',
721
1549
  label: defineMessage({
722
1550
  id: "cuKSQz",
723
- defaultMessage: [{
724
- "type": 0,
725
- "value": "Lede"
726
- }]
1551
+ defaultMessage: "Lede"
727
1552
  })
728
1553
  }, {
729
1554
  name: 'author',
730
1555
  type: 'author-element',
731
1556
  label: defineMessage({
732
1557
  id: "73hxYw",
733
- defaultMessage: [{
734
- "type": 0,
735
- "value": "Author"
736
- }]
1558
+ defaultMessage: "Author"
737
1559
  })
738
1560
  }, {
739
1561
  name: 'sponsorLabel',
740
1562
  type: 'heading-element',
741
1563
  label: defineMessage({
742
1564
  id: "hzvEim",
743
- defaultMessage: [{
744
- "type": 0,
745
- "value": "Sponsor Label"
746
- }]
1565
+ defaultMessage: "Sponsor Label"
747
1566
  })
748
1567
  }, {
749
1568
  name: 'sponsorColor',
750
1569
  type: 'color',
751
1570
  label: defineMessage({
752
1571
  id: "Qw8cb5",
753
- defaultMessage: [{
754
- "type": 0,
755
- "value": "Sponsor color"
756
- }]
1572
+ defaultMessage: "Sponsor color"
757
1573
  })
758
1574
  }, {
759
1575
  name: 'image',
760
1576
  type: 'visual',
761
1577
  label: defineMessage({
762
1578
  id: "k+coTi",
763
- defaultMessage: [{
764
- "type": 0,
765
- "value": "Image"
766
- }]
1579
+ defaultMessage: "Image"
767
1580
  })
768
1581
  }, {
769
1582
  name: 'background',
770
1583
  type: 'background',
771
1584
  label: defineMessage({
772
1585
  id: "+MPZRu",
773
- defaultMessage: [{
774
- "type": 0,
775
- "value": "Background"
776
- }]
1586
+ defaultMessage: "Background"
777
1587
  })
778
1588
  }, {
779
1589
  name: 'header',
780
1590
  type: 'header',
781
1591
  label: defineMessage({
782
1592
  id: "rhuDxI",
783
- defaultMessage: [{
784
- "type": 0,
785
- "value": "Header"
786
- }]
1593
+ defaultMessage: "Header"
787
1594
  }),
788
1595
  theme: {
789
1596
  badge: {
@@ -798,10 +1605,7 @@ var definition = {
798
1605
  type: 'footer',
799
1606
  label: defineMessage({
800
1607
  id: "g4nybp",
801
- defaultMessage: [{
802
- "type": 0,
803
- "value": "Footer"
804
- }]
1608
+ defaultMessage: "Footer"
805
1609
  }),
806
1610
  theme: {
807
1611
  callToAction: {
@@ -816,327 +1620,763 @@ var definition = {
816
1620
 
817
1621
  var styles = {"container":"micromag-screen-urbania-article-urbania-base-article-card-container","background":"micromag-screen-urbania-article-urbania-base-article-card-background","content":"micromag-screen-urbania-article-urbania-base-article-card-content","layout":"micromag-screen-urbania-article-urbania-base-article-card-layout","text":"micromag-screen-urbania-article-urbania-base-article-card-text","cardContainer":"micromag-screen-urbania-article-urbania-base-article-card-cardContainer","isPlaceholder":"micromag-screen-urbania-article-urbania-base-article-card-isPlaceholder","card":"micromag-screen-urbania-article-urbania-base-article-card-card","callToAction":"micromag-screen-urbania-article-urbania-base-article-card-callToAction","arrow":"micromag-screen-urbania-article-urbania-base-article-card-arrow","ctaText":"micromag-screen-urbania-article-urbania-base-article-card-ctaText","cardInner":"micromag-screen-urbania-article-urbania-base-article-card-cardInner","pulse":"micromag-screen-urbania-article-urbania-base-article-card-pulse","dragHandle":"micromag-screen-urbania-article-urbania-base-article-card-dragHandle","articlePreview":"micromag-screen-urbania-article-urbania-base-article-card-articlePreview","articlePreviewInner":"micromag-screen-urbania-article-urbania-base-article-card-articlePreviewInner","articleTitle":"micromag-screen-urbania-article-urbania-base-article-card-articleTitle","placeholder":"micromag-screen-urbania-article-urbania-base-article-card-placeholder","empty":"micromag-screen-urbania-article-urbania-base-article-card-empty","header":"micromag-screen-urbania-article-urbania-base-article-card-header"};
818
1622
 
819
- function UrbaniaArticleCard(_ref) {
820
- var _ref$hasArticle = _ref.hasArticle,
821
- hasArticle = _ref$hasArticle === void 0 ? false : _ref$hasArticle,
822
- _ref$url = _ref.url,
823
- url = _ref$url === void 0 ? null : _ref$url,
824
- _ref$title = _ref.title,
825
- title = _ref$title === void 0 ? null : _ref$title,
826
- _ref$author = _ref.author,
827
- author = _ref$author === void 0 ? null : _ref$author,
828
- _ref$text = _ref.text,
829
- text = _ref$text === void 0 ? null : _ref$text,
830
- _ref$image = _ref.image,
831
- image = _ref$image === void 0 ? null : _ref$image,
832
- _ref$header = _ref.header,
833
- header = _ref$header === void 0 ? null : _ref$header,
834
- _ref$background = _ref.background,
835
- background = _ref$background === void 0 ? null : _ref$background,
836
- _ref$callToAction = _ref.callToAction,
837
- callToAction = _ref$callToAction === void 0 ? null : _ref$callToAction,
838
- _ref$current = _ref.current,
839
- current = _ref$current === void 0 ? true : _ref$current,
840
- _ref$preload = _ref.preload,
841
- preload = _ref$preload === void 0 ? true : _ref$preload,
842
- _ref$spacing = _ref.spacing,
843
- spacing = _ref$spacing === void 0 ? 20 : _ref$spacing,
844
- _ref$mediaRef = _ref.mediaRef,
845
- customMediaRef = _ref$mediaRef === void 0 ? null : _ref$mediaRef,
846
- _ref$className = _ref.className,
847
- className = _ref$className === void 0 ? null : _ref$className;
848
- var intl = useIntl();
849
- var finalBackground = background !== null && (typeof background.color !== 'undefined' && background.color !== null || typeof background.image !== 'undefined' && background.image !== null || typeof background.video !== 'undefined' && background.video !== null) ? background : {
850
- image: image
851
- };
852
- var _ref2 = finalBackground || {},
853
- _ref2$video = _ref2.video,
854
- backgroundVideo = _ref2$video === void 0 ? null : _ref2$video;
855
- var isBackgroundVideo = backgroundVideo !== null;
856
- var _useScreenSize = useScreenSize(),
857
- width = _useScreenSize.width,
858
- height = _useScreenSize.height,
859
- resolution = _useScreenSize.resolution;
860
- var _useScreenRenderConte = useScreenRenderContext(),
861
- isView = _useScreenRenderConte.isView,
862
- isPreview = _useScreenRenderConte.isPreview,
863
- isPlaceholder = _useScreenRenderConte.isPlaceholder,
864
- isEdit = _useScreenRenderConte.isEdit,
865
- isStatic = _useScreenRenderConte.isStatic,
866
- isCapture = _useScreenRenderConte.isCapture;
867
- var _useViewerWebView = useViewerWebView(),
868
- openWebView = _useViewerWebView.open,
869
- _useViewerWebView$ope = _useViewerWebView.opened,
870
- webviewOpened = _useViewerWebView$ope === void 0 ? false : _useViewerWebView$ope,
871
- _useViewerWebView$clo = _useViewerWebView.close,
872
- closeWebView = _useViewerWebView$clo === void 0 ? null : _useViewerWebView$clo;
873
- var _useViewerContext = useViewerContext(),
874
- viewerTopHeight = _useViewerContext.topHeight,
875
- viewerBottomHeight = _useViewerContext.bottomHeight;
876
- var _useViewerInteraction = useViewerInteraction(),
877
- enableInteraction = _useViewerInteraction.enableInteraction,
878
- disableInteraction = _useViewerInteraction.disableInteraction;
879
- var _usePlaybackContext = usePlaybackContext(),
880
- playing = _usePlaybackContext.playing,
881
- muted = _usePlaybackContext.muted,
882
- setControls = _usePlaybackContext.setControls,
883
- setControlsTheme = _usePlaybackContext.setControlsTheme,
884
- setControlsSuggestPlay = _usePlaybackContext.setControlsSuggestPlay,
885
- setPlaying = _usePlaybackContext.setPlaying;
886
- var _ref3 = author || {},
887
- _ref3$name = _ref3.name,
888
- authorName = _ref3$name === void 0 ? null : _ref3$name;
889
- var hasUrl = url !== null && isString(url) && url.length > 0;
890
- var hasHeader = isHeaderFilled(header);
891
- var hasText = isTextFilled(text);
892
- var hasTitle = isTextFilled(title);
893
- var hasAuthorName = isTextFilled(authorName);
894
- var hasCta = isTextFilled(callToAction);
895
-
896
- // const isSimple = hasUrl && url.indexOf('simple.urbania.ca') !== -1;
897
- var finalUrl = useMemo(function () {
898
- var cleanedUrl = hasUrl ? url.replace(/^https?:\/\/([^.]+\.)?urbania\.(fr|ca)\//, 'https://urbania.$2/') : url;
899
- var currentQueryString = queryString.parse(cleanedUrl !== null && cleanedUrl.indexOf('?') !== -1 ? cleanedUrl.split('?')[1] : '');
900
- return cleanedUrl !== null ? "".concat(cleanedUrl.split('?')[0], "?").concat(queryString.stringify(_objectSpread({
1623
+ function UrbaniaArticleCard(t0) {
1624
+ const $ = c(148);
1625
+ const {
1626
+ hasArticle: t1,
1627
+ url: t2,
1628
+ title: t3,
1629
+ author: t4,
1630
+ text: t5,
1631
+ image: t6,
1632
+ header: t7,
1633
+ background: t8,
1634
+ callToAction: t9,
1635
+ current: t10,
1636
+ preload: t11,
1637
+ spacing: t12,
1638
+ mediaRef: t13,
1639
+ className: t14
1640
+ } = t0;
1641
+ const hasArticle = t1 === undefined ? false : t1;
1642
+ const url = t2 === undefined ? null : t2;
1643
+ const title = t3 === undefined ? null : t3;
1644
+ const author = t4 === undefined ? null : t4;
1645
+ const text = t5 === undefined ? null : t5;
1646
+ const image = t6 === undefined ? null : t6;
1647
+ const header = t7 === undefined ? null : t7;
1648
+ const background = t8 === undefined ? null : t8;
1649
+ const callToAction = t9 === undefined ? null : t9;
1650
+ const current = t10 === undefined ? true : t10;
1651
+ const preload = t11 === undefined ? true : t11;
1652
+ const spacing = t12 === undefined ? 20 : t12;
1653
+ const customMediaRef = t13 === undefined ? null : t13;
1654
+ const className = t14 === undefined ? null : t14;
1655
+ const intl = useIntl();
1656
+ let t15;
1657
+ if ($[0] !== background || $[1] !== image) {
1658
+ t15 = background !== null && (typeof background.color !== "undefined" && background.color !== null || typeof background.image !== "undefined" && background.image !== null || typeof background.video !== "undefined" && background.video !== null) ? background : {
1659
+ image
1660
+ };
1661
+ $[0] = background;
1662
+ $[1] = image;
1663
+ $[2] = t15;
1664
+ } else {
1665
+ t15 = $[2];
1666
+ }
1667
+ const finalBackground = t15;
1668
+ let t16;
1669
+ if ($[3] !== finalBackground) {
1670
+ t16 = finalBackground || {};
1671
+ $[3] = finalBackground;
1672
+ $[4] = t16;
1673
+ } else {
1674
+ t16 = $[4];
1675
+ }
1676
+ const {
1677
+ video: t17
1678
+ } = t16;
1679
+ const backgroundVideo = t17 === undefined ? null : t17;
1680
+ const isBackgroundVideo = backgroundVideo !== null;
1681
+ const {
1682
+ width,
1683
+ height,
1684
+ resolution
1685
+ } = useScreenSize();
1686
+ const {
1687
+ isView,
1688
+ isPreview,
1689
+ isPlaceholder,
1690
+ isEdit,
1691
+ isStatic,
1692
+ isCapture
1693
+ } = useScreenRenderContext();
1694
+ const {
1695
+ open: openWebView,
1696
+ opened: t18,
1697
+ close: t19
1698
+ } = useViewerWebView();
1699
+ const webviewOpened = t18 === undefined ? false : t18;
1700
+ const closeWebView = t19 === undefined ? null : t19;
1701
+ const {
1702
+ topHeight: viewerTopHeight,
1703
+ bottomHeight: viewerBottomHeight
1704
+ } = useViewerContext();
1705
+ const {
1706
+ enableInteraction,
1707
+ disableInteraction
1708
+ } = useViewerInteraction();
1709
+ const {
1710
+ playing,
1711
+ muted,
1712
+ setControls,
1713
+ setControlsTheme,
1714
+ setControlsSuggestPlay,
1715
+ setPlaying
1716
+ } = usePlaybackContext();
1717
+ let t20;
1718
+ if ($[5] !== author) {
1719
+ t20 = author || {};
1720
+ $[5] = author;
1721
+ $[6] = t20;
1722
+ } else {
1723
+ t20 = $[6];
1724
+ }
1725
+ const {
1726
+ name: t21
1727
+ } = t20;
1728
+ const authorName = t21 === undefined ? null : t21;
1729
+ let t22;
1730
+ if ($[7] !== url) {
1731
+ t22 = url !== null && isString(url) && url.length > 0;
1732
+ $[7] = url;
1733
+ $[8] = t22;
1734
+ } else {
1735
+ t22 = $[8];
1736
+ }
1737
+ const hasUrl = t22;
1738
+ let t23;
1739
+ if ($[9] !== header) {
1740
+ t23 = isHeaderFilled(header);
1741
+ $[9] = header;
1742
+ $[10] = t23;
1743
+ } else {
1744
+ t23 = $[10];
1745
+ }
1746
+ const hasHeader = t23;
1747
+ let t24;
1748
+ if ($[11] !== text) {
1749
+ t24 = isTextFilled(text);
1750
+ $[11] = text;
1751
+ $[12] = t24;
1752
+ } else {
1753
+ t24 = $[12];
1754
+ }
1755
+ const hasText = t24;
1756
+ let t25;
1757
+ if ($[13] !== title) {
1758
+ t25 = isTextFilled(title);
1759
+ $[13] = title;
1760
+ $[14] = t25;
1761
+ } else {
1762
+ t25 = $[14];
1763
+ }
1764
+ const hasTitle = t25;
1765
+ let t26;
1766
+ if ($[15] !== authorName) {
1767
+ t26 = isTextFilled(authorName);
1768
+ $[15] = authorName;
1769
+ $[16] = t26;
1770
+ } else {
1771
+ t26 = $[16];
1772
+ }
1773
+ const hasAuthorName = t26;
1774
+ let t27;
1775
+ if ($[17] !== callToAction) {
1776
+ t27 = isTextFilled(callToAction);
1777
+ $[17] = callToAction;
1778
+ $[18] = t27;
1779
+ } else {
1780
+ t27 = $[18];
1781
+ }
1782
+ const hasCta = t27;
1783
+ let t28;
1784
+ if ($[19] !== hasUrl || $[20] !== url) {
1785
+ const cleanedUrl = hasUrl ? url.replace(/^https?:\/\/([^.]+\.)?urbania\.(fr|ca)\//, "https://urbania.$2/") : url;
1786
+ const currentQueryString = queryString.parse(cleanedUrl !== null && cleanedUrl.indexOf("?") !== -1 ? cleanedUrl.split("?")[1] : "");
1787
+ t28 = cleanedUrl !== null ? `${cleanedUrl.split("?")[0]}?${queryString.stringify({
901
1788
  reader: true,
902
- _ref: 'micromag'
903
- }, currentQueryString))) : url;
904
- }, [hasUrl, url]);
905
- var mediaShouldLoad = current || preload;
906
- var _usePlaybackMediaRef = usePlaybackMediaRef(current && !webviewOpened, true),
907
- mediaRef = _usePlaybackMediaRef.ref,
908
- _usePlaybackMediaRef$ = _usePlaybackMediaRef.isCurrent,
909
- isCurrentMedia = _usePlaybackMediaRef$ === void 0 ? false : _usePlaybackMediaRef$;
910
- var backgroundPlaying = current && (isView || isEdit) && (isCurrentMedia || !isView);
911
-
912
- // card animations
913
- var withCardAnimation = !isPlaceholder && !isPreview && !isStatic;
914
- var slideInDelay = withCardAnimation && isBackgroundVideo && backgroundPlaying;
915
- var withCardBounce = withCardAnimation && current;
916
- useEffect(function () {
917
- if (!current) {
918
- return function () {};
919
- }
920
- setControlsTheme({
921
- seekBarOnly: true
922
- });
923
- if (isBackgroundVideo && !webviewOpened) {
924
- setControls(true);
925
- } else {
926
- setControls(false);
927
- }
928
- return function () {
1789
+ _ref: "micromag",
1790
+ ...currentQueryString
1791
+ })}` : url;
1792
+ $[19] = hasUrl;
1793
+ $[20] = url;
1794
+ $[21] = t28;
1795
+ } else {
1796
+ t28 = $[21];
1797
+ }
1798
+ const finalUrl = t28;
1799
+ const mediaShouldLoad = current || preload;
1800
+ const {
1801
+ ref: mediaRef,
1802
+ isCurrent: t29
1803
+ } = usePlaybackMediaRef(current && !webviewOpened, true);
1804
+ const isCurrentMedia = t29 === undefined ? false : t29;
1805
+ const backgroundPlaying = current && (isView || isEdit) && (isCurrentMedia || !isView);
1806
+ const withCardAnimation = !isPlaceholder && !isPreview && !isStatic;
1807
+ const slideInDelay = withCardAnimation && isBackgroundVideo && backgroundPlaying;
1808
+ const withCardBounce = withCardAnimation && current;
1809
+ let t30;
1810
+ let t31;
1811
+ if ($[22] !== current || $[23] !== isBackgroundVideo || $[24] !== setControls || $[25] !== setControlsTheme || $[26] !== webviewOpened) {
1812
+ t30 = () => {
1813
+ if (!current) {
1814
+ return _temp;
1815
+ }
1816
+ setControlsTheme({
1817
+ seekBarOnly: true
1818
+ });
929
1819
  if (isBackgroundVideo && !webviewOpened) {
1820
+ setControls(true);
1821
+ } else {
930
1822
  setControls(false);
931
1823
  }
1824
+ return () => {
1825
+ if (isBackgroundVideo && !webviewOpened) {
1826
+ setControls(false);
1827
+ }
1828
+ };
932
1829
  };
933
- }, [current, setControls, isBackgroundVideo, webviewOpened, setControls, setControlsTheme]);
934
- var toggleCard = useCallback(function () {
935
- var newOpened = !webviewOpened;
936
- if (newOpened) {
937
- openWebView(finalUrl);
938
- // console.log('web open');
939
- disableInteraction();
940
- } else {
941
- enableInteraction();
942
- // console.log('web not open');
943
- }
944
- }, [webviewOpened, disableInteraction, enableInteraction, openWebView, finalUrl]);
945
- var bindGesture = useGesture({
946
- onDrag: function onDrag(_ref4) {
947
- var _ref4$movement = _slicedToArray(_ref4.movement, 2),
948
- my = _ref4$movement[1];
949
- if (!webviewOpened && my < 0 || webviewOpened && my > 0) {
950
- toggleCard();
1830
+ t31 = [current, setControls, isBackgroundVideo, webviewOpened, setControls, setControlsTheme];
1831
+ $[22] = current;
1832
+ $[23] = isBackgroundVideo;
1833
+ $[24] = setControls;
1834
+ $[25] = setControlsTheme;
1835
+ $[26] = webviewOpened;
1836
+ $[27] = t30;
1837
+ $[28] = t31;
1838
+ } else {
1839
+ t30 = $[27];
1840
+ t31 = $[28];
1841
+ }
1842
+ useEffect(t30, t31);
1843
+ let t32;
1844
+ if ($[29] !== disableInteraction || $[30] !== enableInteraction || $[31] !== finalUrl || $[32] !== openWebView || $[33] !== webviewOpened) {
1845
+ t32 = () => {
1846
+ const newOpened = !webviewOpened;
1847
+ if (newOpened) {
1848
+ openWebView(finalUrl);
1849
+ disableInteraction();
1850
+ } else {
1851
+ enableInteraction();
951
1852
  }
952
- },
953
- onWheel: function onWheel(_ref5) {
954
- var _ref5$movement = _slicedToArray(_ref5.movement, 2),
955
- my = _ref5$movement[1];
956
- if (!webviewOpened && my > 0 || webviewOpened && my < 0) {
957
- toggleCard();
1853
+ };
1854
+ $[29] = disableInteraction;
1855
+ $[30] = enableInteraction;
1856
+ $[31] = finalUrl;
1857
+ $[32] = openWebView;
1858
+ $[33] = webviewOpened;
1859
+ $[34] = t32;
1860
+ } else {
1861
+ t32 = $[34];
1862
+ }
1863
+ const toggleCard = t32;
1864
+ let t33;
1865
+ if ($[35] !== toggleCard || $[36] !== webviewOpened) {
1866
+ t33 = {
1867
+ onDrag: t34 => {
1868
+ const {
1869
+ movement: t35
1870
+ } = t34;
1871
+ const [, my] = t35;
1872
+ if (!webviewOpened && my < 0 || webviewOpened && my > 0) {
1873
+ toggleCard();
1874
+ }
1875
+ },
1876
+ onWheel: t36 => {
1877
+ const {
1878
+ movement: t37
1879
+ } = t36;
1880
+ const [, my_0] = t37;
1881
+ if (!webviewOpened && my_0 > 0 || webviewOpened && my_0 < 0) {
1882
+ toggleCard();
1883
+ }
958
1884
  }
959
- }
960
- }, {
961
- drag: {
962
- axis: 'y',
963
- filterTaps: true,
964
- preventDefault: true
965
- },
966
- wheel: {
967
- axis: 'y'
968
- }
969
- });
970
- var _useResizeObserver = useResizeObserver({
971
- disabled: !webviewOpened
972
- }),
973
- articlePreviewRef = _useResizeObserver.ref,
974
- _useResizeObserver$en = _useResizeObserver.entry.contentRect,
975
- articlePreviewContentRect = _useResizeObserver$en === void 0 ? null : _useResizeObserver$en;
976
- var _ref6 = articlePreviewContentRect || {},
977
- _ref6$height = _ref6.height,
978
- articlePreviewHeight = _ref6$height === void 0 ? 0 : _ref6$height;
979
-
980
- // Think about this
981
- var minimumVisibility = 20;
982
- var y = 100;
1885
+ };
1886
+ $[35] = toggleCard;
1887
+ $[36] = webviewOpened;
1888
+ $[37] = t33;
1889
+ } else {
1890
+ t33 = $[37];
1891
+ }
1892
+ let t34;
1893
+ if ($[38] === Symbol.for("react.memo_cache_sentinel")) {
1894
+ t34 = {
1895
+ drag: {
1896
+ axis: "y",
1897
+ filterTaps: true,
1898
+ preventDefault: true
1899
+ },
1900
+ wheel: {
1901
+ axis: "y"
1902
+ }
1903
+ };
1904
+ $[38] = t34;
1905
+ } else {
1906
+ t34 = $[38];
1907
+ }
1908
+ const bindGesture = useGesture(t33, t34);
1909
+ const t35 = !webviewOpened;
1910
+ let t36;
1911
+ if ($[39] !== t35) {
1912
+ t36 = {
1913
+ disabled: t35
1914
+ };
1915
+ $[39] = t35;
1916
+ $[40] = t36;
1917
+ } else {
1918
+ t36 = $[40];
1919
+ }
1920
+ const {
1921
+ ref: articlePreviewRef,
1922
+ entry: t37
1923
+ } = useResizeObserver(t36);
1924
+ const {
1925
+ contentRect: t38
1926
+ } = t37;
1927
+ const articlePreviewContentRect = t38 === undefined ? null : t38;
1928
+ let t39;
1929
+ if ($[41] !== articlePreviewContentRect) {
1930
+ t39 = articlePreviewContentRect || {};
1931
+ $[41] = articlePreviewContentRect;
1932
+ $[42] = t39;
1933
+ } else {
1934
+ t39 = $[42];
1935
+ }
1936
+ const {
1937
+ height: t40
1938
+ } = t39;
1939
+ const articlePreviewHeight = t40 === undefined ? 0 : t40;
1940
+ let y = 100;
983
1941
  if (current) {
984
- y = 100 - Math.max(articlePreviewHeight / height * 100, minimumVisibility);
1942
+ y = 100 - Math.max(articlePreviewHeight / height * 100, 20);
985
1943
  }
986
- var springStyle = useSpring({
987
- from: {
988
- y: isPreview ? y : 100
989
- },
990
- to: {
991
- y: y
992
- },
993
- delay: slideInDelay ? 1500 : 0,
994
- config: {
1944
+ const t41 = isPreview ? y : 100;
1945
+ let t42;
1946
+ if ($[43] !== t41) {
1947
+ t42 = {
1948
+ y: t41
1949
+ };
1950
+ $[43] = t41;
1951
+ $[44] = t42;
1952
+ } else {
1953
+ t42 = $[44];
1954
+ }
1955
+ let t43;
1956
+ if ($[45] !== y) {
1957
+ t43 = {
1958
+ y
1959
+ };
1960
+ $[45] = y;
1961
+ $[46] = t43;
1962
+ } else {
1963
+ t43 = $[46];
1964
+ }
1965
+ const t44 = slideInDelay ? 1500 : 0;
1966
+ const t45 = y === 100 ? 1000 : 400;
1967
+ let t46;
1968
+ if ($[47] !== t45) {
1969
+ t46 = {
995
1970
  easing: easings.easeInOutSine,
996
- duration: y === 100 ? 1000 : 400
997
- }
998
- });
999
-
1000
- // TODIO: current switches on/off for a split second and fucks this up
1001
- useEffect(function () {
1002
- }, [current, webviewOpened, closeWebView, enableInteraction]);
1003
- var onPlayError = useCallback(function () {
1004
- if (isView && playing && current && isBackgroundVideo) {
1005
- setPlaying(false);
1006
- setControlsSuggestPlay(true);
1007
- }
1008
- }, [isView, current, playing, isBackgroundVideo, setPlaying, setControlsSuggestPlay]);
1009
- return /*#__PURE__*/jsxs("div", {
1010
- className: classNames([styles.container, className, _defineProperty(_defineProperty({}, styles.isCurrent, current), styles.isPlaceholder, isPlaceholder)]),
1011
- "data-screen-ready": isStatic || isCapture,
1012
- children: [/*#__PURE__*/jsx(Background, {
1971
+ duration: t45
1972
+ };
1973
+ $[47] = t45;
1974
+ $[48] = t46;
1975
+ } else {
1976
+ t46 = $[48];
1977
+ }
1978
+ let t47;
1979
+ if ($[49] !== t42 || $[50] !== t43 || $[51] !== t44 || $[52] !== t46) {
1980
+ t47 = {
1981
+ from: t42,
1982
+ to: t43,
1983
+ delay: t44,
1984
+ config: t46
1985
+ };
1986
+ $[49] = t42;
1987
+ $[50] = t43;
1988
+ $[51] = t44;
1989
+ $[52] = t46;
1990
+ $[53] = t47;
1991
+ } else {
1992
+ t47 = $[53];
1993
+ }
1994
+ const springStyle = useSpring(t47);
1995
+ let t48;
1996
+ if ($[54] !== closeWebView || $[55] !== current || $[56] !== webviewOpened) {
1997
+ t48 = () => {
1998
+ };
1999
+ $[54] = closeWebView;
2000
+ $[55] = current;
2001
+ $[56] = webviewOpened;
2002
+ $[57] = t48;
2003
+ } else {
2004
+ t48 = $[57];
2005
+ }
2006
+ let t49;
2007
+ if ($[58] !== closeWebView || $[59] !== current || $[60] !== enableInteraction || $[61] !== webviewOpened) {
2008
+ t49 = [current, webviewOpened, closeWebView, enableInteraction];
2009
+ $[58] = closeWebView;
2010
+ $[59] = current;
2011
+ $[60] = enableInteraction;
2012
+ $[61] = webviewOpened;
2013
+ $[62] = t49;
2014
+ } else {
2015
+ t49 = $[62];
2016
+ }
2017
+ useEffect(t48, t49);
2018
+ let t50;
2019
+ if ($[63] !== current || $[64] !== isBackgroundVideo || $[65] !== isView || $[66] !== playing || $[67] !== setControlsSuggestPlay || $[68] !== setPlaying) {
2020
+ t50 = () => {
2021
+ if (isView && playing && current && isBackgroundVideo) {
2022
+ setPlaying(false);
2023
+ setControlsSuggestPlay(true);
2024
+ }
2025
+ };
2026
+ $[63] = current;
2027
+ $[64] = isBackgroundVideo;
2028
+ $[65] = isView;
2029
+ $[66] = playing;
2030
+ $[67] = setControlsSuggestPlay;
2031
+ $[68] = setPlaying;
2032
+ $[69] = t50;
2033
+ } else {
2034
+ t50 = $[69];
2035
+ }
2036
+ const onPlayError = t50;
2037
+ let t51;
2038
+ if ($[70] !== className || $[71] !== current || $[72] !== isPlaceholder) {
2039
+ t51 = classNames([styles.container, className, {
2040
+ [styles.isCurrent]: current,
2041
+ [styles.isPlaceholder]: isPlaceholder
2042
+ }]);
2043
+ $[70] = className;
2044
+ $[71] = current;
2045
+ $[72] = isPlaceholder;
2046
+ $[73] = t51;
2047
+ } else {
2048
+ t51 = $[73];
2049
+ }
2050
+ const t52 = isStatic || isCapture;
2051
+ const t53 = backgroundPlaying && !webviewOpened;
2052
+ let t54;
2053
+ if ($[74] !== customMediaRef || $[75] !== mediaRef) {
2054
+ t54 = mergeRefs(mediaRef, customMediaRef);
2055
+ $[74] = customMediaRef;
2056
+ $[75] = mediaRef;
2057
+ $[76] = t54;
2058
+ } else {
2059
+ t54 = $[76];
2060
+ }
2061
+ let t55;
2062
+ if ($[77] !== finalBackground || $[78] !== height || $[79] !== isPreview || $[80] !== mediaShouldLoad || $[81] !== muted || $[82] !== onPlayError || $[83] !== resolution || $[84] !== t53 || $[85] !== t54 || $[86] !== width) {
2063
+ t55 = /*#__PURE__*/jsx(Background, {
1013
2064
  className: styles.background,
1014
2065
  background: finalBackground,
1015
2066
  width: width,
1016
2067
  height: height,
1017
2068
  resolution: resolution,
1018
- playing: backgroundPlaying && !webviewOpened,
2069
+ playing: t53,
1019
2070
  muted: muted,
1020
- mediaRef: mergeRefs(mediaRef, customMediaRef),
2071
+ mediaRef: t54,
1021
2072
  onPlayError: onPlayError,
1022
2073
  shouldLoad: mediaShouldLoad,
1023
2074
  withoutVideo: isPreview
1024
- }), /*#__PURE__*/jsxs(Container, {
1025
- className: styles.content,
1026
- width: width,
1027
- height: height,
1028
- children: [!isPlaceholder && hasHeader ? /*#__PURE__*/jsx("div", {
1029
- className: styles.header,
1030
- style: {
1031
- paddingTop: spacing / 2,
1032
- paddingLeft: spacing,
1033
- paddingRight: spacing,
1034
- transform: !isPreview ? "translate(0, ".concat(viewerTopHeight, "px)") : null
1035
- },
1036
- children: /*#__PURE__*/jsx(Header, _objectSpread({}, header))
1037
- }, "header") : null, /*#__PURE__*/jsx(Layout, {
1038
- className: styles.layout,
1039
- height: height * 0.65,
1040
- children: /*#__PURE__*/jsx(ScreenElement, {
1041
- empty: /*#__PURE__*/jsx(Empty, {
1042
- className: styles.emptyText,
1043
- children: /*#__PURE__*/jsx(FormattedMessage, {
1044
- id: "z4CiV1",
1045
- defaultMessage: [{
1046
- "type": 0,
1047
- "value": "Text"
1048
- }]
1049
- })
1050
- }),
1051
- placeholder: /*#__PURE__*/jsx(PlaceholderText, {
1052
- className: styles.placeholderText
1053
- }),
1054
- children: hasText ? /*#__PURE__*/jsx(Text, _objectSpread({
1055
- className: styles.text
1056
- }, text)) : null
1057
- }, "text")
1058
- }), /*#__PURE__*/jsx(Container, {
1059
- className: classNames([styles.cardContainer, _defineProperty({}, styles.isPlaceholder, isPlaceholder)]),
1060
- children: /*#__PURE__*/jsx(ScreenElement, {
1061
- placeholderProps: {
1062
- className: styles.placeholder
1063
- },
1064
- emptyLabel: /*#__PURE__*/jsx(FormattedMessage, {
1065
- id: "yMpGIc",
1066
- defaultMessage: [{
1067
- "type": 0,
1068
- "value": "Article"
1069
- }]
1070
- }),
1071
- emptyClassName: styles.empty,
1072
- isEmpty: !hasUrl || !hasArticle,
1073
- children: !isPlaceholder && hasArticle ? /*#__PURE__*/jsxs(animated.div, {
1074
- className: styles.card,
2075
+ });
2076
+ $[77] = finalBackground;
2077
+ $[78] = height;
2078
+ $[79] = isPreview;
2079
+ $[80] = mediaShouldLoad;
2080
+ $[81] = muted;
2081
+ $[82] = onPlayError;
2082
+ $[83] = resolution;
2083
+ $[84] = t53;
2084
+ $[85] = t54;
2085
+ $[86] = width;
2086
+ $[87] = t55;
2087
+ } else {
2088
+ t55 = $[87];
2089
+ }
2090
+ let t56;
2091
+ if ($[88] !== hasHeader || $[89] !== header || $[90] !== isPlaceholder || $[91] !== isPreview || $[92] !== spacing || $[93] !== viewerTopHeight) {
2092
+ t56 = !isPlaceholder && hasHeader ? /*#__PURE__*/jsx("div", {
2093
+ className: styles.header,
2094
+ style: {
2095
+ paddingTop: spacing / 2,
2096
+ paddingLeft: spacing,
2097
+ paddingRight: spacing,
2098
+ transform: !isPreview ? `translate(0, ${viewerTopHeight}px)` : null
2099
+ },
2100
+ children: /*#__PURE__*/jsx(Header, {
2101
+ ...header
2102
+ })
2103
+ }, "header") : null;
2104
+ $[88] = hasHeader;
2105
+ $[89] = header;
2106
+ $[90] = isPlaceholder;
2107
+ $[91] = isPreview;
2108
+ $[92] = spacing;
2109
+ $[93] = viewerTopHeight;
2110
+ $[94] = t56;
2111
+ } else {
2112
+ t56 = $[94];
2113
+ }
2114
+ const t57 = height * 0.65;
2115
+ let t58;
2116
+ let t59;
2117
+ if ($[95] === Symbol.for("react.memo_cache_sentinel")) {
2118
+ t58 = /*#__PURE__*/jsx(Empty, {
2119
+ className: styles.emptyText,
2120
+ children: /*#__PURE__*/jsx(FormattedMessage, {
2121
+ id: "z4CiV1",
2122
+ defaultMessage: "Text"
2123
+ })
2124
+ });
2125
+ t59 = /*#__PURE__*/jsx(PlaceholderText, {
2126
+ className: styles.placeholderText
2127
+ });
2128
+ $[95] = t58;
2129
+ $[96] = t59;
2130
+ } else {
2131
+ t58 = $[95];
2132
+ t59 = $[96];
2133
+ }
2134
+ let t60;
2135
+ if ($[97] !== hasText || $[98] !== text) {
2136
+ t60 = hasText ? /*#__PURE__*/jsx(Text, {
2137
+ className: styles.text,
2138
+ ...text
2139
+ }) : null;
2140
+ $[97] = hasText;
2141
+ $[98] = text;
2142
+ $[99] = t60;
2143
+ } else {
2144
+ t60 = $[99];
2145
+ }
2146
+ let t61;
2147
+ if ($[100] !== t60) {
2148
+ t61 = /*#__PURE__*/jsx(ScreenElement, {
2149
+ empty: t58,
2150
+ placeholder: t59,
2151
+ children: t60
2152
+ }, "text");
2153
+ $[100] = t60;
2154
+ $[101] = t61;
2155
+ } else {
2156
+ t61 = $[101];
2157
+ }
2158
+ let t62;
2159
+ if ($[102] !== t57 || $[103] !== t61) {
2160
+ t62 = /*#__PURE__*/jsx(Layout, {
2161
+ className: styles.layout,
2162
+ height: t57,
2163
+ children: t61
2164
+ });
2165
+ $[102] = t57;
2166
+ $[103] = t61;
2167
+ $[104] = t62;
2168
+ } else {
2169
+ t62 = $[104];
2170
+ }
2171
+ let t63;
2172
+ if ($[105] !== isPlaceholder) {
2173
+ t63 = classNames([styles.cardContainer, {
2174
+ [styles.isPlaceholder]: isPlaceholder
2175
+ }]);
2176
+ $[105] = isPlaceholder;
2177
+ $[106] = t63;
2178
+ } else {
2179
+ t63 = $[106];
2180
+ }
2181
+ let t64;
2182
+ let t65;
2183
+ if ($[107] === Symbol.for("react.memo_cache_sentinel")) {
2184
+ t64 = {
2185
+ className: styles.placeholder
2186
+ };
2187
+ t65 = /*#__PURE__*/jsx(FormattedMessage, {
2188
+ id: "yMpGIc",
2189
+ defaultMessage: "Article"
2190
+ });
2191
+ $[107] = t64;
2192
+ $[108] = t65;
2193
+ } else {
2194
+ t64 = $[107];
2195
+ t65 = $[108];
2196
+ }
2197
+ const t66 = !hasUrl || !hasArticle;
2198
+ let t67;
2199
+ if ($[109] !== articlePreviewRef || $[110] !== author || $[111] !== bindGesture || $[112] !== callToAction || $[113] !== current || $[114] !== hasArticle || $[115] !== hasAuthorName || $[116] !== hasCta || $[117] !== hasTitle || $[118] !== height || $[119] !== intl || $[120] !== isPlaceholder || $[121] !== isPreview || $[122] !== mediaShouldLoad || $[123] !== springStyle || $[124] !== title || $[125] !== toggleCard || $[126] !== viewerBottomHeight || $[127] !== webviewOpened || $[128] !== width || $[129] !== withCardBounce) {
2200
+ t67 = !isPlaceholder && hasArticle ? /*#__PURE__*/jsxs(animated.div, {
2201
+ className: styles.card,
2202
+ style: {
2203
+ height,
2204
+ width,
2205
+ transform: !isPreview ? springStyle.y.to(_temp2) : "translateY(80%)"
2206
+ },
2207
+ children: [/*#__PURE__*/jsx("button", {
2208
+ type: "button",
2209
+ onClick: toggleCard,
2210
+ className: styles.dragHandle,
2211
+ tabIndex: !current ? -1 : 0,
2212
+ "aria-label": intl.formatMessage({
2213
+ id: "IoMJgw",
2214
+ defaultMessage: "Toggle article"
2215
+ }),
2216
+ "aria-pressed": webviewOpened,
2217
+ ...(current ? bindGesture() : null)
2218
+ }), /*#__PURE__*/jsxs("div", {
2219
+ className: classNames([styles.cardInner, {
2220
+ [styles.pulse]: withCardBounce
2221
+ }]),
2222
+ children: [hasCta ? /*#__PURE__*/jsxs("div", {
2223
+ className: styles.callToAction,
2224
+ children: [/*#__PURE__*/jsx(Arrow, {
2225
+ strokeWidth: 1,
2226
+ className: styles.arrow
2227
+ }), /*#__PURE__*/jsx(Text, {
2228
+ className: styles.ctaText,
2229
+ ...callToAction
2230
+ })]
2231
+ }) : null, /*#__PURE__*/jsx("div", {
2232
+ className: styles.articlePreview,
2233
+ ref: articlePreviewRef,
2234
+ children: /*#__PURE__*/jsxs("div", {
2235
+ className: styles.articlePreviewInner,
1075
2236
  style: {
1076
- height: height,
1077
- width: width,
1078
- transform: !isPreview ? springStyle.y.to(function (value) {
1079
- return "translateY(".concat(value, "%");
1080
- }) : "translateY(".concat(100 - minimumVisibility, "%)")
2237
+ paddingBottom: current && !isPreview ? Math.max(viewerBottomHeight, 20) : null
1081
2238
  },
1082
- children: [/*#__PURE__*/jsx("button", _objectSpread({
1083
- type: "button",
1084
- onClick: toggleCard,
1085
- className: styles.dragHandle,
1086
- tabIndex: !current ? -1 : 0,
1087
- "aria-label": intl.formatMessage({
1088
- id: "IoMJgw",
1089
- defaultMessage: [{
1090
- "type": 0,
1091
- "value": "Toggle article"
1092
- }]
1093
- }),
1094
- "aria-pressed": webviewOpened
1095
- }, current ? bindGesture() : null)), /*#__PURE__*/jsxs("div", {
1096
- className: classNames([styles.cardInner, _defineProperty({}, styles.pulse, withCardBounce)]),
1097
- children: [hasCta ? /*#__PURE__*/jsxs("div", {
1098
- className: styles.callToAction,
1099
- children: [/*#__PURE__*/jsx(Arrow, {
1100
- strokeWidth: 1,
1101
- className: styles.arrow
1102
- }), /*#__PURE__*/jsx(Text, _objectSpread({
1103
- className: styles.ctaText
1104
- }, callToAction))]
1105
- }) : null, /*#__PURE__*/jsx("div", {
1106
- className: styles.articlePreview,
1107
- ref: articlePreviewRef,
1108
- children: /*#__PURE__*/jsxs("div", {
1109
- className: styles.articlePreviewInner,
1110
- style: {
1111
- paddingBottom: current && !isPreview ? Math.max(viewerBottomHeight, 20) : null
1112
- },
1113
- children: [hasTitle ? /*#__PURE__*/jsx(Heading, _objectSpread({
1114
- className: classNames([styles.articleTitle])
1115
- }, title)) : null, hasAuthorName ? /*#__PURE__*/jsx(UrbaniaAuthor, {
1116
- isSmall: true,
1117
- withoutBackground: true,
1118
- author: author,
1119
- shouldLoad: mediaShouldLoad,
1120
- className: styles.author
1121
- }) : null]
1122
- })
1123
- })]
1124
- })]
1125
- }) : null
1126
- })
2239
+ children: [hasTitle ? /*#__PURE__*/jsx(Heading, {
2240
+ className: classNames([styles.articleTitle]),
2241
+ ...title
2242
+ }) : null, hasAuthorName ? /*#__PURE__*/jsx(UrbaniaAuthor, {
2243
+ isSmall: true,
2244
+ withoutBackground: true,
2245
+ author: author,
2246
+ shouldLoad: mediaShouldLoad,
2247
+ className: styles.author
2248
+ }) : null]
2249
+ })
2250
+ })]
1127
2251
  })]
1128
- })]
1129
- });
2252
+ }) : null;
2253
+ $[109] = articlePreviewRef;
2254
+ $[110] = author;
2255
+ $[111] = bindGesture;
2256
+ $[112] = callToAction;
2257
+ $[113] = current;
2258
+ $[114] = hasArticle;
2259
+ $[115] = hasAuthorName;
2260
+ $[116] = hasCta;
2261
+ $[117] = hasTitle;
2262
+ $[118] = height;
2263
+ $[119] = intl;
2264
+ $[120] = isPlaceholder;
2265
+ $[121] = isPreview;
2266
+ $[122] = mediaShouldLoad;
2267
+ $[123] = springStyle;
2268
+ $[124] = title;
2269
+ $[125] = toggleCard;
2270
+ $[126] = viewerBottomHeight;
2271
+ $[127] = webviewOpened;
2272
+ $[128] = width;
2273
+ $[129] = withCardBounce;
2274
+ $[130] = t67;
2275
+ } else {
2276
+ t67 = $[130];
2277
+ }
2278
+ let t68;
2279
+ if ($[131] !== t66 || $[132] !== t67) {
2280
+ t68 = /*#__PURE__*/jsx(ScreenElement, {
2281
+ placeholderProps: t64,
2282
+ emptyLabel: t65,
2283
+ emptyClassName: styles.empty,
2284
+ isEmpty: t66,
2285
+ children: t67
2286
+ });
2287
+ $[131] = t66;
2288
+ $[132] = t67;
2289
+ $[133] = t68;
2290
+ } else {
2291
+ t68 = $[133];
2292
+ }
2293
+ let t69;
2294
+ if ($[134] !== t63 || $[135] !== t68) {
2295
+ t69 = /*#__PURE__*/jsx(Container, {
2296
+ className: t63,
2297
+ children: t68
2298
+ });
2299
+ $[134] = t63;
2300
+ $[135] = t68;
2301
+ $[136] = t69;
2302
+ } else {
2303
+ t69 = $[136];
2304
+ }
2305
+ let t70;
2306
+ if ($[137] !== height || $[138] !== t56 || $[139] !== t62 || $[140] !== t69 || $[141] !== width) {
2307
+ t70 = /*#__PURE__*/jsxs(Container, {
2308
+ className: styles.content,
2309
+ width: width,
2310
+ height: height,
2311
+ children: [t56, t62, t69]
2312
+ });
2313
+ $[137] = height;
2314
+ $[138] = t56;
2315
+ $[139] = t62;
2316
+ $[140] = t69;
2317
+ $[141] = width;
2318
+ $[142] = t70;
2319
+ } else {
2320
+ t70 = $[142];
2321
+ }
2322
+ let t71;
2323
+ if ($[143] !== t51 || $[144] !== t52 || $[145] !== t55 || $[146] !== t70) {
2324
+ t71 = /*#__PURE__*/jsxs("div", {
2325
+ className: t51,
2326
+ "data-screen-ready": t52,
2327
+ children: [t55, t70]
2328
+ });
2329
+ $[143] = t51;
2330
+ $[144] = t52;
2331
+ $[145] = t55;
2332
+ $[146] = t70;
2333
+ $[147] = t71;
2334
+ } else {
2335
+ t71 = $[147];
2336
+ }
2337
+ return t71;
1130
2338
  }
2339
+ function _temp2(value) {
2340
+ return `translateY(${value}%`;
2341
+ }
2342
+ function _temp() {}
1131
2343
 
1132
2344
  function UrbaniaCardLoader(props) {
1133
- var _ref = props || {},
1134
- _ref$cardCallToAction = _ref.cardCallToAction,
1135
- cardCallToAction = _ref$cardCallToAction === void 0 ? {} : _ref$cardCallToAction;
1136
- return /*#__PURE__*/jsx(UrbaniaLoader, _objectSpread({
1137
- component: UrbaniaArticleCard,
1138
- callToAction: cardCallToAction
1139
- }, props));
2345
+ const $ = c(7);
2346
+ let t0;
2347
+ if ($[0] !== props) {
2348
+ t0 = props || {};
2349
+ $[0] = props;
2350
+ $[1] = t0;
2351
+ } else {
2352
+ t0 = $[1];
2353
+ }
2354
+ const {
2355
+ cardCallToAction: t1
2356
+ } = t0;
2357
+ let t2;
2358
+ if ($[2] !== t1) {
2359
+ t2 = t1 === undefined ? {} : t1;
2360
+ $[2] = t1;
2361
+ $[3] = t2;
2362
+ } else {
2363
+ t2 = $[3];
2364
+ }
2365
+ const cardCallToAction = t2;
2366
+ let t3;
2367
+ if ($[4] !== cardCallToAction || $[5] !== props) {
2368
+ t3 = /*#__PURE__*/jsx(UrbaniaLoader, {
2369
+ component: UrbaniaArticleCard,
2370
+ callToAction: cardCallToAction,
2371
+ ...props
2372
+ });
2373
+ $[4] = cardCallToAction;
2374
+ $[5] = props;
2375
+ $[6] = t3;
2376
+ } else {
2377
+ t3 = $[6];
2378
+ }
2379
+ return t3;
1140
2380
  }
1141
2381
 
1142
2382
  var definitionCard = {
@@ -1146,19 +2386,13 @@ var definitionCard = {
1146
2386
  group: {
1147
2387
  label: defineMessage({
1148
2388
  id: "oPjl8f",
1149
- defaultMessage: [{
1150
- "type": 0,
1151
- "value": "Urbania"
1152
- }]
2389
+ defaultMessage: "Urbania"
1153
2390
  }),
1154
2391
  order: 10
1155
2392
  },
1156
2393
  title: defineMessage({
1157
2394
  id: "nJgzwC",
1158
- defaultMessage: [{
1159
- "type": 0,
1160
- "value": "Urbania article"
1161
- }]
2395
+ defaultMessage: "Urbania article"
1162
2396
  }),
1163
2397
  component: UrbaniaCardLoader,
1164
2398
  fields: [{
@@ -1166,30 +2400,21 @@ var definitionCard = {
1166
2400
  type: 'url',
1167
2401
  label: defineMessage({
1168
2402
  id: "2pO2Cj",
1169
- defaultMessage: [{
1170
- "type": 0,
1171
- "value": "Url"
1172
- }]
2403
+ defaultMessage: "Url"
1173
2404
  })
1174
2405
  }, {
1175
2406
  name: 'title',
1176
2407
  type: 'heading-element',
1177
2408
  label: defineMessage({
1178
2409
  id: "N25iDO",
1179
- defaultMessage: [{
1180
- "type": 0,
1181
- "value": "Title"
1182
- }]
2410
+ defaultMessage: "Title"
1183
2411
  })
1184
2412
  }, {
1185
2413
  name: 'author',
1186
2414
  type: 'author-element',
1187
2415
  label: defineMessage({
1188
2416
  id: "73hxYw",
1189
- defaultMessage: [{
1190
- "type": 0,
1191
- "value": "Author"
1192
- }]
2417
+ defaultMessage: "Author"
1193
2418
  })
1194
2419
  }, {
1195
2420
  name: 'text',
@@ -1201,20 +2426,14 @@ var definitionCard = {
1201
2426
  },
1202
2427
  label: defineMessage({
1203
2428
  id: "4E2gbX",
1204
- defaultMessage: [{
1205
- "type": 0,
1206
- "value": "Text"
1207
- }]
2429
+ defaultMessage: "Text"
1208
2430
  })
1209
2431
  }, {
1210
2432
  name: 'background',
1211
2433
  type: 'background',
1212
2434
  label: defineMessage({
1213
2435
  id: "+MPZRu",
1214
- defaultMessage: [{
1215
- "type": 0,
1216
- "value": "Background"
1217
- }]
2436
+ defaultMessage: "Background"
1218
2437
  })
1219
2438
  }, {
1220
2439
  name: 'cardCallToAction',
@@ -1226,20 +2445,14 @@ var definitionCard = {
1226
2445
  },
1227
2446
  label: defineMessage({
1228
2447
  id: "eBFxNl",
1229
- defaultMessage: [{
1230
- "type": 0,
1231
- "value": "Call to Action"
1232
- }]
2448
+ defaultMessage: "Call to Action"
1233
2449
  })
1234
2450
  }, {
1235
2451
  name: 'header',
1236
2452
  type: 'header',
1237
2453
  label: defineMessage({
1238
2454
  id: "rhuDxI",
1239
- defaultMessage: [{
1240
- "type": 0,
1241
- "value": "Header"
1242
- }]
2455
+ defaultMessage: "Header"
1243
2456
  }),
1244
2457
  theme: {
1245
2458
  badge: {