@mjhls/mjh-framework 1.0.730 → 1.0.731-isi-test
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +168 -168
- package/dist/cjs/ConferenceArticleCard.js +15 -15
- package/dist/cjs/DeckContent.js +8 -8
- package/dist/cjs/EventsDeck.js +18 -18
- package/dist/cjs/ExternalResources.js +1 -1
- package/dist/cjs/HamMagazine.js +9 -9
- package/dist/cjs/IssueLanding.js +29 -29
- package/dist/cjs/KMTracker.js +15 -15
- package/dist/cjs/MasterDeck.js +8 -8
- package/dist/cjs/NavMagazine.js +10 -10
- package/dist/cjs/NavNative.js +9 -9
- package/dist/cjs/PublicationLanding.js +33 -33
- package/dist/cjs/RelatedContent.js +28 -28
- package/dist/cjs/RelatedTopicsDropdown.js +10 -10
- package/dist/cjs/SideFooter.js +2 -2
- package/dist/cjs/VideoSeriesCard.js +1 -1
- package/dist/cjs/View.js +77 -5
- package/dist/cjs/YoutubeGroup.js +4 -4
- package/dist/cjs/{getTargeting-497b581d.js → getTargeting-963303c6.js} +9 -9
- package/dist/cjs/getTargeting.js +1 -1
- package/dist/cjs/{index-4d74ffd6.js → index-cb6ed1fc.js} +29 -29
- package/dist/cjs/index.js +2 -2
- package/dist/esm/ConferenceArticleCard.js +15 -15
- package/dist/esm/DeckContent.js +8 -8
- package/dist/esm/EventsDeck.js +18 -18
- package/dist/esm/ExternalResources.js +1 -1
- package/dist/esm/HamMagazine.js +9 -9
- package/dist/esm/IssueLanding.js +29 -29
- package/dist/esm/KMTracker.js +15 -15
- package/dist/esm/MasterDeck.js +8 -8
- package/dist/esm/NavMagazine.js +10 -10
- package/dist/esm/NavNative.js +9 -9
- package/dist/esm/PublicationLanding.js +33 -33
- package/dist/esm/RelatedContent.js +28 -28
- package/dist/esm/RelatedTopicsDropdown.js +10 -10
- package/dist/esm/SideFooter.js +2 -2
- package/dist/esm/VideoSeriesCard.js +1 -1
- package/dist/esm/View.js +77 -5
- package/dist/esm/YoutubeGroup.js +4 -4
- package/dist/esm/{getTargeting-2d402d66.js → getTargeting-85315091.js} +9 -9
- package/dist/esm/getTargeting.js +1 -1
- package/dist/esm/{index-ccb770c7.js → index-750a7380.js} +29 -29
- package/dist/esm/index.js +2 -2
- package/package.json +105 -105
|
@@ -380,39 +380,39 @@ module.exports = { "default": set, __esModule: true };
|
|
|
380
380
|
|
|
381
381
|
var _Set = _commonjsHelpers.unwrapExports(set$1);
|
|
382
382
|
|
|
383
|
-
/* usage & query
|
|
384
|
-
const Publication = (props) => {
|
|
385
|
-
const { cache, pub, year } = props
|
|
386
|
-
|
|
387
|
-
const targeting = {
|
|
388
|
-
content_placement: [`/journals/${pub.identifier.current}`],
|
|
389
|
-
document_url: [`/journals/${pub.identifier.current}`],
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
return (
|
|
393
|
-
<Shell title={pub.name} cache={cache} settings={Settings} targeting={targeting} ads={Ads} layout='3'>
|
|
394
|
-
<PublicationLanding publication={pub} year={year} href={'journals'} />
|
|
395
|
-
</Shell>
|
|
396
|
-
)
|
|
397
|
-
}
|
|
398
|
-
|
|
399
|
-
Publication.getInitialProps = async (ctx) => {
|
|
400
|
-
const { query } = ctx
|
|
401
|
-
const {
|
|
402
|
-
query: { year },
|
|
403
|
-
} = ctx
|
|
404
|
-
const pub = await client.fetch(getQuery('publication'), query)
|
|
405
|
-
const builder = imageUrlBuilder(client)
|
|
406
|
-
const urlFor = (source) => {
|
|
407
|
-
return builder.image(source)
|
|
408
|
-
}
|
|
409
|
-
pub.issues.map((issue) => {
|
|
410
|
-
issue.thumbnail = urlFor(issue.thumbnail).url()
|
|
411
|
-
})
|
|
412
|
-
return { pub, year }
|
|
413
|
-
}
|
|
414
|
-
|
|
415
|
-
export default Publication
|
|
383
|
+
/* usage & query
|
|
384
|
+
const Publication = (props) => {
|
|
385
|
+
const { cache, pub, year } = props
|
|
386
|
+
|
|
387
|
+
const targeting = {
|
|
388
|
+
content_placement: [`/journals/${pub.identifier.current}`],
|
|
389
|
+
document_url: [`/journals/${pub.identifier.current}`],
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
return (
|
|
393
|
+
<Shell title={pub.name} cache={cache} settings={Settings} targeting={targeting} ads={Ads} layout='3'>
|
|
394
|
+
<PublicationLanding publication={pub} year={year} href={'journals'} />
|
|
395
|
+
</Shell>
|
|
396
|
+
)
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
Publication.getInitialProps = async (ctx) => {
|
|
400
|
+
const { query } = ctx
|
|
401
|
+
const {
|
|
402
|
+
query: { year },
|
|
403
|
+
} = ctx
|
|
404
|
+
const pub = await client.fetch(getQuery('publication'), query)
|
|
405
|
+
const builder = imageUrlBuilder(client)
|
|
406
|
+
const urlFor = (source) => {
|
|
407
|
+
return builder.image(source)
|
|
408
|
+
}
|
|
409
|
+
pub.issues.map((issue) => {
|
|
410
|
+
issue.thumbnail = urlFor(issue.thumbnail).url()
|
|
411
|
+
})
|
|
412
|
+
return { pub, year }
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
export default Publication
|
|
416
416
|
*/
|
|
417
417
|
|
|
418
418
|
var generateContentPlacements = function generateContentPlacements(issues) {
|
|
@@ -13,34 +13,34 @@ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'defau
|
|
|
13
13
|
|
|
14
14
|
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
|
15
15
|
|
|
16
|
-
/*
|
|
17
|
-
Sample query
|
|
18
|
-
let references = ''
|
|
19
|
-
if(article.taxonomyMapping.length > 0){
|
|
20
|
-
article.taxonomyMapping.forEach((ref, index) => {
|
|
21
|
-
references = references + `references('${ref._ref}') `
|
|
22
|
-
if(index+1 !== article.taxonomyMapping.length){
|
|
23
|
-
references = references + ` && `
|
|
24
|
-
}
|
|
25
|
-
})
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
const relatedArticlesQuery = `*[!(_id in path("drafts.**")) && _type == "article" && title !='${article.title}' && defined(title) && is_visible == true && ( references('article.documentGroup._id') || ${references} ) && published <= '${today}'] | order(published desc) [0...4] {
|
|
29
|
-
...,
|
|
30
|
-
title,
|
|
31
|
-
summary,
|
|
32
|
-
thumbnail,
|
|
33
|
-
url,
|
|
34
|
-
published,
|
|
35
|
-
authorMapping[]->,
|
|
36
|
-
contentCategory->
|
|
37
|
-
}`
|
|
38
|
-
const relatedArticles = await client.fetch(relatedArticlesQuery)
|
|
39
|
-
|
|
40
|
-
Sample usage
|
|
41
|
-
<RelatedContent dataRecord={props.relatedArticles} client={client} showAuthor showPublished reverse/>
|
|
42
|
-
|
|
43
|
-
|
|
16
|
+
/*
|
|
17
|
+
Sample query
|
|
18
|
+
let references = ''
|
|
19
|
+
if(article.taxonomyMapping.length > 0){
|
|
20
|
+
article.taxonomyMapping.forEach((ref, index) => {
|
|
21
|
+
references = references + `references('${ref._ref}') `
|
|
22
|
+
if(index+1 !== article.taxonomyMapping.length){
|
|
23
|
+
references = references + ` && `
|
|
24
|
+
}
|
|
25
|
+
})
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
const relatedArticlesQuery = `*[!(_id in path("drafts.**")) && _type == "article" && title !='${article.title}' && defined(title) && is_visible == true && ( references('article.documentGroup._id') || ${references} ) && published <= '${today}'] | order(published desc) [0...4] {
|
|
29
|
+
...,
|
|
30
|
+
title,
|
|
31
|
+
summary,
|
|
32
|
+
thumbnail,
|
|
33
|
+
url,
|
|
34
|
+
published,
|
|
35
|
+
authorMapping[]->,
|
|
36
|
+
contentCategory->
|
|
37
|
+
}`
|
|
38
|
+
const relatedArticles = await client.fetch(relatedArticlesQuery)
|
|
39
|
+
|
|
40
|
+
Sample usage
|
|
41
|
+
<RelatedContent dataRecord={props.relatedArticles} client={client} showAuthor showPublished reverse/>
|
|
42
|
+
|
|
43
|
+
|
|
44
44
|
*/
|
|
45
45
|
var RelatedContent = function RelatedContent(props) {
|
|
46
46
|
var client = props.client,
|
|
@@ -22,16 +22,16 @@ var RelatedTopicsDropdown = function RelatedTopicsDropdown(_ref) {
|
|
|
22
22
|
_ref$className = _ref.className,
|
|
23
23
|
className = _ref$className === undefined ? '' : _ref$className;
|
|
24
24
|
|
|
25
|
-
/*
|
|
26
|
-
Props accepted - parentTaxonomy(required, object), subTaxonomy(required, array), page(optional), exclude(optional), variant(optional), className(optional)
|
|
27
|
-
example:
|
|
28
|
-
<RelatedTopicDropdown
|
|
29
|
-
page='/clinical'
|
|
30
|
-
exclude="clinical"
|
|
31
|
-
className='mb-3'
|
|
32
|
-
parentTaxonomy={props.parentTaxonomy}
|
|
33
|
-
subTaxonomies={props.subTaxonomies}
|
|
34
|
-
/>
|
|
25
|
+
/*
|
|
26
|
+
Props accepted - parentTaxonomy(required, object), subTaxonomy(required, array), page(optional), exclude(optional), variant(optional), className(optional)
|
|
27
|
+
example:
|
|
28
|
+
<RelatedTopicDropdown
|
|
29
|
+
page='/clinical'
|
|
30
|
+
exclude="clinical"
|
|
31
|
+
className='mb-3'
|
|
32
|
+
parentTaxonomy={props.parentTaxonomy}
|
|
33
|
+
subTaxonomies={props.subTaxonomies}
|
|
34
|
+
/>
|
|
35
35
|
*/
|
|
36
36
|
if (subTaxonomies.length === 0 && parentTaxonomy) {
|
|
37
37
|
if (parentTaxonomy.identifier == exclude) {
|
package/dist/cjs/SideFooter.js
CHANGED
|
@@ -40,8 +40,8 @@ var renderLink = function renderLink(row) {
|
|
|
40
40
|
};
|
|
41
41
|
|
|
42
42
|
var SideFooter = function SideFooter(props) {
|
|
43
|
-
/*
|
|
44
|
-
useage example: <SideFooter cache={props.cache} logo='https://mjh-web.s3.amazonaws.com/_media/an_mjhls_brand_logo.png' />
|
|
43
|
+
/*
|
|
44
|
+
useage example: <SideFooter cache={props.cache} logo='https://mjh-web.s3.amazonaws.com/_media/an_mjhls_brand_logo.png' />
|
|
45
45
|
*/
|
|
46
46
|
var _get = get.get_1(props, 'cache.siteSettingCache', {}),
|
|
47
47
|
socialLinks = _get.socialLinks,
|
|
@@ -20,7 +20,7 @@ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'defau
|
|
|
20
20
|
|
|
21
21
|
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
|
22
22
|
|
|
23
|
-
var css = ".VideoSeriesCard-module_article__Hlc3e {\
|
|
23
|
+
var css = ".VideoSeriesCard-module_article__Hlc3e {\n width: 100%;\n margin: 0 0 1rem 0;\n}\n.VideoSeriesCard-module_article__Hlc3e a {\n display: flex;\n width: 100%;\n color: #000000;\n}\n.VideoSeriesCard-module_thumb__3hGyJ {\n width: 25%;\n}\n.VideoSeriesCard-module_thumb__3hGyJ img {\n width: 100%;\n height: auto;\n}\n.VideoSeriesCard-module_info__2_i1N {\n width: 75%;\n font-size: 1rem;\n}\n.VideoSeriesCard-module_info__2_i1N h2 {\n font-weight: bold;\n font-size: 1.25rem;\n margin: 0;\n}\n.VideoSeriesCard-module_published__1fI0q {\n color: #6d6d6d;\n margin: 0;\n}\n.VideoSeriesCard-module_summary__3hWJT {\n margin: 0.5rem 0 0 0;\n}\n.VideoSeriesCard-module_author__aU35o {\n margin: 0;\n}\n.VideoSeriesCard-module_author__aU35o span {\n color: #6d6d6d;\n}\n@media only screen and (max-width: 568px) {\n .VideoSeriesCard-module_article__Hlc3e {\n margin: 1rem 0;\n box-shadow: 2px 4px 8px rgba(0,0,0,.2);\n }\n .VideoSeriesCard-module_article__Hlc3e a {\n flex-direction: column;\n align-items: center;\n }\n .VideoSeriesCard-module_thumb__3hGyJ {\n overflow: hidden;\n width: 100%;\n margin-bottom: 1rem;\n }\n .VideoSeriesCard-module_thumb__3hGyJ img{\n border-radius: 10px 10px 0 0; \n }\n .VideoSeriesCard-module_thumb__3hGyJ figure {\n margin: 0;\n }\n .VideoSeriesCard-module_info__2_i1N {\n width: 90%;\n padding: 1rem !important;\n }\n .VideoSeriesCard-module_info__2_i1N h2 {\n font-size: 1rem;\n }\n}\n";
|
|
24
24
|
var styles = { "article": "VideoSeriesCard-module_article__Hlc3e", "thumb": "VideoSeriesCard-module_thumb__3hGyJ", "info": "VideoSeriesCard-module_info__2_i1N", "published": "VideoSeriesCard-module_published__1fI0q", "summary": "VideoSeriesCard-module_summary__3hWJT", "author": "VideoSeriesCard-module_author__aU35o" };
|
|
25
25
|
styleInject_es.styleInject(css);
|
|
26
26
|
|
package/dist/cjs/View.js
CHANGED
|
@@ -18,7 +18,7 @@ var Button = require('react-bootstrap/Button');
|
|
|
18
18
|
var getSerializers = require('./index-5260126b.js');
|
|
19
19
|
var SocialShare = require('./SocialShare.js');
|
|
20
20
|
var AdSlot = require('./AdSlot.js');
|
|
21
|
-
var getTargeting = require('./getTargeting-
|
|
21
|
+
var getTargeting = require('./getTargeting-963303c6.js');
|
|
22
22
|
var getKeywords = require('./getKeywords.js');
|
|
23
23
|
var urlFor = require('./urlFor.js');
|
|
24
24
|
var _typeof = require('./typeof-97065d40.js');
|
|
@@ -206,7 +206,13 @@ var ISI = function ISI(props) {
|
|
|
206
206
|
active = _useState2[0],
|
|
207
207
|
setActive = _useState2[1];
|
|
208
208
|
|
|
209
|
+
var _useState3 = React.useState(false),
|
|
210
|
+
_useState4 = slicedToArray._slicedToArray(_useState3, 2),
|
|
211
|
+
bottomOfArticle = _useState4[0],
|
|
212
|
+
setbottomOfArticle = _useState4[1];
|
|
213
|
+
|
|
209
214
|
var isi = React.useRef();
|
|
215
|
+
|
|
210
216
|
React.useEffect(function () {
|
|
211
217
|
if (active) {
|
|
212
218
|
var offset = '5rem';
|
|
@@ -221,6 +227,72 @@ var ISI = function ISI(props) {
|
|
|
221
227
|
isi.current.style.overflowY = '';
|
|
222
228
|
}
|
|
223
229
|
}, [active]);
|
|
230
|
+
React.useEffect(function () {
|
|
231
|
+
var detectBottomOfArticle = function detectBottomOfArticle() {
|
|
232
|
+
var article_body = document.getElementById('article__block');
|
|
233
|
+
var isi = document.getElementById('isi');
|
|
234
|
+
var articleBottomPosition = article_body.getBoundingClientRect().bottom - window.innerHeight;
|
|
235
|
+
console.log(articleBottomPosition, bottomOfArticle);
|
|
236
|
+
if (articleBottomPosition < 30 && !isi.classList.contains('in-view')) {
|
|
237
|
+
setbottomOfArticle(true);
|
|
238
|
+
}
|
|
239
|
+
if (articleBottomPosition > 60 && isi.classList.contains('in-view')) {
|
|
240
|
+
setbottomOfArticle(false);
|
|
241
|
+
}
|
|
242
|
+
};
|
|
243
|
+
window.addEventListener('scroll', detectBottomOfArticle);
|
|
244
|
+
return function () {
|
|
245
|
+
return window.removeEventListener('scroll', detectBottomOfArticle);
|
|
246
|
+
};
|
|
247
|
+
}, []);
|
|
248
|
+
|
|
249
|
+
React.useEffect(function () {
|
|
250
|
+
var isi = document.getElementById('isi');
|
|
251
|
+
if (bottomOfArticle) {
|
|
252
|
+
toggleSticky(true);
|
|
253
|
+
isi.classList.add('in-view');
|
|
254
|
+
if (active) {
|
|
255
|
+
setActive(false);
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
if (!bottomOfArticle) {
|
|
259
|
+
toggleSticky(false);
|
|
260
|
+
isi.classList.remove('in-view');
|
|
261
|
+
}
|
|
262
|
+
}, [bottomOfArticle]);
|
|
263
|
+
|
|
264
|
+
var toggleSticky = function toggleSticky(sticky) {
|
|
265
|
+
var isiToggle = document.getElementById('isiToggle');
|
|
266
|
+
var isiContent = document.getElementById('isiContent');
|
|
267
|
+
var isi = document.getElementById('isi');
|
|
268
|
+
if (sticky) {
|
|
269
|
+
isi.style.bottom = '-200px';
|
|
270
|
+
setTimeout(function () {
|
|
271
|
+
isi.style.maxHeight = 'unset';
|
|
272
|
+
isi.style.position = 'relative';
|
|
273
|
+
isi.style.boxShadow = 'none';
|
|
274
|
+
isi.style.zIndex = '1';
|
|
275
|
+
isi.style.marginTop = '-25rem';
|
|
276
|
+
isi.style.marginBottom = '15rem';
|
|
277
|
+
isiToggle.style.display = 'none';
|
|
278
|
+
isiContent.style.padding = '0';
|
|
279
|
+
}, 300);
|
|
280
|
+
} else if (!sticky) {
|
|
281
|
+
|
|
282
|
+
isi.style.marginBottom = '0';
|
|
283
|
+
isi.style.maxHeight = '12rem';
|
|
284
|
+
isi.style.position = 'fixed';
|
|
285
|
+
isi.style.boxShadow = '0 0 1rem 0 rgba(0, 0, 0, 0.5)';
|
|
286
|
+
isi.style.zIndex = '99999';
|
|
287
|
+
|
|
288
|
+
isiToggle.style.display = 'block';
|
|
289
|
+
isiContent.style.padding = '1rem';
|
|
290
|
+
setTimeout(function () {
|
|
291
|
+
isi.style.bottom = '0';
|
|
292
|
+
isi.style.marginTop = '0';
|
|
293
|
+
}, 300);
|
|
294
|
+
}
|
|
295
|
+
};
|
|
224
296
|
return React__default['default'].createElement(
|
|
225
297
|
React__default['default'].Fragment,
|
|
226
298
|
null,
|
|
@@ -255,12 +327,12 @@ var ISI = function ISI(props) {
|
|
|
255
327
|
React__default['default'].createElement(
|
|
256
328
|
'style',
|
|
257
329
|
{ jsx: true },
|
|
258
|
-
'\n #isi {\n position: fixed;\n z-index:
|
|
330
|
+
'\n #isi {\n position: fixed;\n z-index: 9999999;\n bottom: 0;\n left: 0;\n max-height: 12rem;\n background-color: #ffffff;\n overflow-x: hidden;\n overflow-y: hidden;\n width: 100%;\n box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.5);\n transition: bottom .5s ease , margin-top .3s, max-height .2s;\n }\n #isiContent {\n width: 100%;\n max-width: 1000px;\n margin-left: auto;\n margin-right: auto;\n position: relative;\n padding: 1rem;\n font-size: 1rem;\n }\n #isi::-webkit-scrollbar {\n display: none;\n }\n #isiToggle {\n position: absolute;\n top: 0;\n right: 0;\n padding: 1rem;\n font-weight: bold;\n cursor: pointer;\n font-size: 1rem;\n }\n #isiToggle p {\n margin: 0;\n }\n '
|
|
259
331
|
)
|
|
260
332
|
);
|
|
261
333
|
};
|
|
262
334
|
|
|
263
|
-
var css = ".RelatedArticles-module_mediaContainer__10h9k {\
|
|
335
|
+
var css = ".RelatedArticles-module_mediaContainer__10h9k {\n display: flex;\n flex-direction: row;\n flex-wrap: nowrap;\n margin: 0 -1rem;\n}\n.RelatedArticles-module_mediaCard__3wQbn {\n margin: 0 1rem 1rem;\n width: calc(33% - 1rem);\n display: column;\n flex-direction: row;\n margin-bottom: 0.75rem;\n padding-bottom: 0.75rem;\n border-bottom: none;\n}\n.RelatedArticles-module_mediaCard__3wQbn:last-child {\n border-bottom: none;\n}\n.RelatedArticles-module_cardTitle__3P-Ib {\n font-weight: bold;\n color: #252525;\n margin-bottom: 0.25rem;\n font-size: 15px;\n}\n.RelatedArticles-module_authorListing__1EFg4 span.RelatedArticles-module_text-muted__3b0zX {\n color: #000;\n font-weight: bold;\n}\n.RelatedArticles-module_cardDate__1wOR5 {\n color: var(--dark);\n display: block;\n background: #fff !important;\n margin-bottom: 0;\n}\n.RelatedArticles-module_imgWrapper__5Jx_4 {\n display: block;\n text-align: center;\n margin-bottom: 0.5rem;\n}\n.RelatedArticles-module_imgWrapper__5Jx_4 img {\n height: 135px;\n width: 100%;\n object-fit: cover;\n object-position: center;\n}\n@media screen and (max-width: 1064px) {\n}\n@media screen and (max-width: 968px) {\n .RelatedArticles-module_mediaContainer__10h9k {\n flex-wrap: wrap;\n }\n .RelatedArticles-module_imgWrapper__5Jx_4 {\n display: none;\n }\n .RelatedArticles-module_mediaCard__3wQbn {\n width: 100%;\n margin-bottom: 0.5rem;\n padding: 0;\n }\n .RelatedArticles-module_cardTitle__3P-Ib {\n font-size: 0.75rem;\n margin-bottom: 0;\n }\n}\n";
|
|
264
336
|
var styles = { "mediaContainer": "RelatedArticles-module_mediaContainer__10h9k", "mediaCard": "RelatedArticles-module_mediaCard__3wQbn", "cardTitle": "RelatedArticles-module_cardTitle__3P-Ib", "authorListing": "RelatedArticles-module_authorListing__1EFg4", "text-muted": "RelatedArticles-module_text-muted__3b0zX", "cardDate": "RelatedArticles-module_cardDate__1wOR5", "imgWrapper": "RelatedArticles-module_imgWrapper__5Jx_4" };
|
|
265
337
|
styleInject_es.styleInject(css);
|
|
266
338
|
|
|
@@ -815,7 +887,7 @@ var Article = function Article(props) {
|
|
|
815
887
|
} },
|
|
816
888
|
React__default['default'].createElement(
|
|
817
889
|
'div',
|
|
818
|
-
|
|
890
|
+
{ id: 'article__block' },
|
|
819
891
|
React__default['default'].createElement(
|
|
820
892
|
'div',
|
|
821
893
|
{ className: 'video-detail', style: { marginBottom: isCutomPage(props.article) || showIsi && Array.isArray(isi) && isi.length > 0 ? '15rem' : 0 } },
|
|
@@ -1034,7 +1106,7 @@ var Article = function Article(props) {
|
|
|
1034
1106
|
)
|
|
1035
1107
|
)
|
|
1036
1108
|
),
|
|
1037
|
-
React__default['default'].createElement('hr', { className: 'article-seperater mb-5 mt-3' })
|
|
1109
|
+
props.infiniteScroll && React__default['default'].createElement('hr', { className: 'article-seperater mb-5 mt-3' })
|
|
1038
1110
|
);
|
|
1039
1111
|
};
|
|
1040
1112
|
|
package/dist/cjs/YoutubeGroup.js
CHANGED
|
@@ -23,10 +23,10 @@ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'defau
|
|
|
23
23
|
|
|
24
24
|
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
|
25
25
|
|
|
26
|
-
/*
|
|
27
|
-
GROQ query -
|
|
28
|
-
accepts an array of title, URL
|
|
29
|
-
`https://img.youtube.com/vi/${getYouTubeId(vid.url)}/hqdefault.jpg`
|
|
26
|
+
/*
|
|
27
|
+
GROQ query -
|
|
28
|
+
accepts an array of title, URL
|
|
29
|
+
`https://img.youtube.com/vi/${getYouTubeId(vid.url)}/hqdefault.jpg`
|
|
30
30
|
*/
|
|
31
31
|
|
|
32
32
|
var YoutubeGroup = function YoutubeGroup(props) {
|
|
@@ -4,18 +4,18 @@ var _extends = require('./extends-1e24fc8d.js');
|
|
|
4
4
|
var toConsumableArray = require('./toConsumableArray-cf0865fc.js');
|
|
5
5
|
|
|
6
6
|
var getContentPlacementUrl = function getContentPlacementUrl(cp) {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
var cp_url = '';
|
|
8
|
+
if (cp.ancestor && typeof cp.ancestor == 'string') {
|
|
9
|
+
cp_url += (cp_url === '' ? '' : '/') + cp.ancestor;
|
|
10
|
+
}
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
if (!cp.ancestor && cp.parent && typeof cp.parent == 'string') {
|
|
13
|
+
cp_url += (cp_url === '' ? '' : '/') + cp.parent;
|
|
14
|
+
}
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
cp_url += (cp_url === '' ? '' : '/') + cp.path;
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
return cp_url;
|
|
19
19
|
};
|
|
20
20
|
|
|
21
21
|
var getTargeting = function getTargeting(props) {
|
package/dist/cjs/getTargeting.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
require('./extends-1e24fc8d.js');
|
|
4
4
|
require('./toConsumableArray-cf0865fc.js');
|
|
5
|
-
var getTargeting = require('./getTargeting-
|
|
5
|
+
var getTargeting = require('./getTargeting-963303c6.js');
|
|
6
6
|
require('./_commonjsHelpers-06173234.js');
|
|
7
7
|
require('./_to-object-821a2927.js');
|
|
8
8
|
require('./_object-pie-68c5bcbc.js');
|