@mjhls/mjh-framework 1.0.190 → 1.0.192
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 +1 -1
- package/dist/index.es.js +516 -803
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +520 -807
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -12,7 +12,7 @@ var Container = _interopDefault(require('react-bootstrap/Container'));
|
|
|
12
12
|
var Row = _interopDefault(require('react-bootstrap/Row'));
|
|
13
13
|
var Col = _interopDefault(require('react-bootstrap/Col'));
|
|
14
14
|
var Card = _interopDefault(require('react-bootstrap/Card'));
|
|
15
|
-
|
|
15
|
+
require('next/link');
|
|
16
16
|
var Router = require('next/router');
|
|
17
17
|
var Router__default = _interopDefault(Router);
|
|
18
18
|
var Media = _interopDefault(require('react-bootstrap/Media'));
|
|
@@ -10536,14 +10536,10 @@ var DeckContent = function (_React$Component) {
|
|
|
10536
10536
|
'By'
|
|
10537
10537
|
),
|
|
10538
10538
|
React__default.createElement(
|
|
10539
|
-
|
|
10540
|
-
{ href: '/authors
|
|
10541
|
-
|
|
10542
|
-
|
|
10543
|
-
{ className: 'text-muted' },
|
|
10544
|
-
displayName,
|
|
10545
|
-
length !== index$$1 + 1 && React__default.createElement('br', null)
|
|
10546
|
-
)
|
|
10539
|
+
'a',
|
|
10540
|
+
{ href: '/authors/${url.current}', className: 'text-muted' },
|
|
10541
|
+
displayName,
|
|
10542
|
+
length !== index$$1 + 1 && React__default.createElement('br', null)
|
|
10547
10543
|
)
|
|
10548
10544
|
);
|
|
10549
10545
|
} else if (displayName) {
|
|
@@ -10600,36 +10596,28 @@ var DeckContent = function (_React$Component) {
|
|
|
10600
10596
|
Card,
|
|
10601
10597
|
{ className: 'content-card', style: { flexDirection: mode } },
|
|
10602
10598
|
(row.thumbnail && row.thumbnail.asset || _this.props.defaultImage) && React__default.createElement(
|
|
10603
|
-
|
|
10604
|
-
{ href: _this.mapping[contentCategoryName] + '/
|
|
10599
|
+
'a',
|
|
10600
|
+
{ href: _this.mapping[contentCategoryName] + '/' + row.url.current },
|
|
10605
10601
|
React__default.createElement(
|
|
10606
|
-
|
|
10607
|
-
|
|
10608
|
-
React__default.createElement(
|
|
10609
|
-
|
|
10610
|
-
|
|
10611
|
-
|
|
10612
|
-
|
|
10613
|
-
src: _this.renderCardImage(row, page),
|
|
10614
|
-
alt: row.thumbnail && row.thumbnail.asset ? row.thumbnail.asset.originalFilename : ''
|
|
10615
|
-
})
|
|
10616
|
-
)
|
|
10602
|
+
LazyLoad,
|
|
10603
|
+
{ height: _this.props.imageHeight },
|
|
10604
|
+
React__default.createElement(Card.Img, {
|
|
10605
|
+
variant: 'top',
|
|
10606
|
+
src: _this.renderCardImage(row, page),
|
|
10607
|
+
alt: row.thumbnail && row.thumbnail.asset ? row.thumbnail.asset.originalFilename : ''
|
|
10608
|
+
})
|
|
10617
10609
|
)
|
|
10618
10610
|
),
|
|
10619
10611
|
React__default.createElement(
|
|
10620
10612
|
Card.Body,
|
|
10621
10613
|
null,
|
|
10622
10614
|
React__default.createElement(
|
|
10623
|
-
|
|
10624
|
-
{ href: _this.mapping[contentCategoryName] + '/
|
|
10615
|
+
'a',
|
|
10616
|
+
{ href: _this.mapping[contentCategoryName] + '/' + row.url.current },
|
|
10625
10617
|
React__default.createElement(
|
|
10626
|
-
|
|
10618
|
+
Card.Title,
|
|
10627
10619
|
null,
|
|
10628
|
-
|
|
10629
|
-
Card.Title,
|
|
10630
|
-
null,
|
|
10631
|
-
row.title
|
|
10632
|
-
)
|
|
10620
|
+
row.title
|
|
10633
10621
|
)
|
|
10634
10622
|
),
|
|
10635
10623
|
_this.props.showPublished && row.published && React__default.createElement(
|
|
@@ -11928,14 +11916,10 @@ var GridContent = function (_React$Component) {
|
|
|
11928
11916
|
'By'
|
|
11929
11917
|
),
|
|
11930
11918
|
React__default.createElement(
|
|
11931
|
-
|
|
11932
|
-
{ href: '/authors/
|
|
11933
|
-
|
|
11934
|
-
|
|
11935
|
-
{ className: 'text-muted' },
|
|
11936
|
-
displayName,
|
|
11937
|
-
length !== index$$1 + 1 && React__default.createElement('br', null)
|
|
11938
|
-
)
|
|
11919
|
+
'a',
|
|
11920
|
+
{ href: '/authors/' + url.current, className: 'text-muted' },
|
|
11921
|
+
displayName,
|
|
11922
|
+
length !== index$$1 + 1 && React__default.createElement('br', null)
|
|
11939
11923
|
)
|
|
11940
11924
|
);
|
|
11941
11925
|
} else if (displayName) {
|
|
@@ -12015,20 +11999,16 @@ var GridContent = function (_React$Component) {
|
|
|
12015
11999
|
Col,
|
|
12016
12000
|
{ md: 12, lg: 4 },
|
|
12017
12001
|
React__default.createElement(
|
|
12018
|
-
|
|
12019
|
-
{ href: _this2.page + '/
|
|
12002
|
+
'a',
|
|
12003
|
+
{ href: _this2.page + '/' + get_1(row, 'url.current') },
|
|
12020
12004
|
React__default.createElement(
|
|
12021
|
-
|
|
12022
|
-
|
|
12023
|
-
React__default.createElement(
|
|
12024
|
-
|
|
12025
|
-
|
|
12026
|
-
|
|
12027
|
-
|
|
12028
|
-
src: _this2.renderCardImage(row, page),
|
|
12029
|
-
alt: row.thumbnail && row.thumbnail.asset ? row.thumbnail.asset.originalFilename : ''
|
|
12030
|
-
})
|
|
12031
|
-
)
|
|
12005
|
+
LazyLoad,
|
|
12006
|
+
{ height: _this2.props.imageHeight },
|
|
12007
|
+
React__default.createElement(Card.Img, {
|
|
12008
|
+
variant: 'top',
|
|
12009
|
+
src: _this2.renderCardImage(row, page),
|
|
12010
|
+
alt: row.thumbnail && row.thumbnail.asset ? row.thumbnail.asset.originalFilename : ''
|
|
12011
|
+
})
|
|
12032
12012
|
)
|
|
12033
12013
|
)
|
|
12034
12014
|
),
|
|
@@ -12042,13 +12022,9 @@ var GridContent = function (_React$Component) {
|
|
|
12042
12022
|
Card.Title,
|
|
12043
12023
|
null,
|
|
12044
12024
|
React__default.createElement(
|
|
12045
|
-
|
|
12046
|
-
{ href: _this2.page + '/
|
|
12047
|
-
|
|
12048
|
-
'a',
|
|
12049
|
-
null,
|
|
12050
|
-
row.title
|
|
12051
|
-
)
|
|
12025
|
+
'a',
|
|
12026
|
+
{ href: _this2.page + '/' + get_1(row, 'url.current') },
|
|
12027
|
+
row.title
|
|
12052
12028
|
)
|
|
12053
12029
|
),
|
|
12054
12030
|
_this2.props.showPublished && row.published && React__default.createElement(
|
|
@@ -12158,36 +12134,28 @@ var GridContent = function (_React$Component) {
|
|
|
12158
12134
|
Card,
|
|
12159
12135
|
{ className: 'content-card', style: { flexDirection: index$$1 === 0 || index$$1 % 4 === 0 ? 'top' : 'row' } },
|
|
12160
12136
|
(row.thumbnail && row.thumbnail.asset || _this2.props.defaultImage) && React__default.createElement(
|
|
12161
|
-
|
|
12162
|
-
{ href: row.url.current },
|
|
12137
|
+
'a',
|
|
12138
|
+
{ href: row.url.current, className: index$$1 === 0 || index$$1 % 4 === 0 ? '' : 'card-image' },
|
|
12163
12139
|
React__default.createElement(
|
|
12164
|
-
|
|
12165
|
-
{
|
|
12166
|
-
React__default.createElement(
|
|
12167
|
-
|
|
12168
|
-
|
|
12169
|
-
|
|
12170
|
-
|
|
12171
|
-
src: _this2.renderCardImage(row, page),
|
|
12172
|
-
alt: row.thumbnail && row.thumbnail.asset ? row.thumbnail.asset.originalFilename : ''
|
|
12173
|
-
})
|
|
12174
|
-
)
|
|
12140
|
+
LazyLoad,
|
|
12141
|
+
{ height: _this2.props.imageHeight },
|
|
12142
|
+
React__default.createElement(Card.Img, {
|
|
12143
|
+
variant: 'top',
|
|
12144
|
+
src: _this2.renderCardImage(row, page),
|
|
12145
|
+
alt: row.thumbnail && row.thumbnail.asset ? row.thumbnail.asset.originalFilename : ''
|
|
12146
|
+
})
|
|
12175
12147
|
)
|
|
12176
12148
|
),
|
|
12177
12149
|
React__default.createElement(
|
|
12178
12150
|
Card.Body,
|
|
12179
12151
|
null,
|
|
12180
12152
|
React__default.createElement(
|
|
12181
|
-
|
|
12153
|
+
'a',
|
|
12182
12154
|
{ href: row.url.current },
|
|
12183
12155
|
React__default.createElement(
|
|
12184
|
-
|
|
12156
|
+
Card.Title,
|
|
12185
12157
|
null,
|
|
12186
|
-
|
|
12187
|
-
Card.Title,
|
|
12188
|
-
null,
|
|
12189
|
-
row.title
|
|
12190
|
-
)
|
|
12158
|
+
row.title
|
|
12191
12159
|
)
|
|
12192
12160
|
),
|
|
12193
12161
|
_this2.props.showPublished && row.published && React__default.createElement(
|
|
@@ -12228,36 +12196,28 @@ var GridContent = function (_React$Component) {
|
|
|
12228
12196
|
Card,
|
|
12229
12197
|
{ className: 'content-card', style: { flexDirection: index$$1 === 0 || index$$1 % 4 === 0 ? 'top' : 'row' } },
|
|
12230
12198
|
(row.thumbnail && row.thumbnail.asset || _this2.props.defaultImage) && React__default.createElement(
|
|
12231
|
-
|
|
12232
|
-
{ href: linkHref },
|
|
12199
|
+
'a',
|
|
12200
|
+
{ href: linkHref, className: index$$1 === 0 || index$$1 % 4 === 0 ? '' : 'card-image' },
|
|
12233
12201
|
React__default.createElement(
|
|
12234
|
-
|
|
12235
|
-
{
|
|
12236
|
-
React__default.createElement(
|
|
12237
|
-
|
|
12238
|
-
|
|
12239
|
-
|
|
12240
|
-
|
|
12241
|
-
src: _this2.renderCardImage(row, page),
|
|
12242
|
-
alt: row.thumbnail && row.thumbnail.asset ? row.thumbnail.asset.originalFilename : ''
|
|
12243
|
-
})
|
|
12244
|
-
)
|
|
12202
|
+
LazyLoad,
|
|
12203
|
+
{ height: _this2.props.imageHeight },
|
|
12204
|
+
React__default.createElement(Card.Img, {
|
|
12205
|
+
variant: 'top',
|
|
12206
|
+
src: _this2.renderCardImage(row, page),
|
|
12207
|
+
alt: row.thumbnail && row.thumbnail.asset ? row.thumbnail.asset.originalFilename : ''
|
|
12208
|
+
})
|
|
12245
12209
|
)
|
|
12246
12210
|
),
|
|
12247
12211
|
React__default.createElement(
|
|
12248
12212
|
Card.Body,
|
|
12249
12213
|
null,
|
|
12250
12214
|
React__default.createElement(
|
|
12251
|
-
|
|
12215
|
+
'a',
|
|
12252
12216
|
{ href: linkHref },
|
|
12253
12217
|
React__default.createElement(
|
|
12254
|
-
|
|
12218
|
+
Card.Title,
|
|
12255
12219
|
null,
|
|
12256
|
-
|
|
12257
|
-
Card.Title,
|
|
12258
|
-
null,
|
|
12259
|
-
row.title
|
|
12260
|
-
)
|
|
12220
|
+
row.title
|
|
12261
12221
|
)
|
|
12262
12222
|
),
|
|
12263
12223
|
_this2.props.showPublished && row.published && React__default.createElement(
|
|
@@ -12564,8 +12524,8 @@ var DeckQueue = function (_React$Component) {
|
|
|
12564
12524
|
Col,
|
|
12565
12525
|
{ md: 12, lg: 4 },
|
|
12566
12526
|
React__default.createElement(
|
|
12567
|
-
|
|
12568
|
-
{ href: _this2.page + '/
|
|
12527
|
+
'a',
|
|
12528
|
+
{ href: _this2.page + '/' + get_1(row, 'url.current') },
|
|
12569
12529
|
React__default.createElement(
|
|
12570
12530
|
LazyLoad,
|
|
12571
12531
|
{ height: _this2.props.imageHeight },
|
|
@@ -12583,8 +12543,8 @@ var DeckQueue = function (_React$Component) {
|
|
|
12583
12543
|
Card.Title,
|
|
12584
12544
|
null,
|
|
12585
12545
|
React__default.createElement(
|
|
12586
|
-
|
|
12587
|
-
{ href: _this2.page + '/
|
|
12546
|
+
'a',
|
|
12547
|
+
{ href: _this2.page + '/' + get_1(row, 'url.current') },
|
|
12588
12548
|
row.title
|
|
12589
12549
|
)
|
|
12590
12550
|
),
|
|
@@ -12598,7 +12558,7 @@ var DeckQueue = function (_React$Component) {
|
|
|
12598
12558
|
null,
|
|
12599
12559
|
'Recent : ',
|
|
12600
12560
|
React__default.createElement(
|
|
12601
|
-
|
|
12561
|
+
'a',
|
|
12602
12562
|
{ href: 'view/' + row.recent.url.current },
|
|
12603
12563
|
row.recent.title
|
|
12604
12564
|
)
|
|
@@ -12607,8 +12567,8 @@ var DeckQueue = function (_React$Component) {
|
|
|
12607
12567
|
Card.Text,
|
|
12608
12568
|
null,
|
|
12609
12569
|
React__default.createElement(
|
|
12610
|
-
|
|
12611
|
-
{ href: _this2.page + '/
|
|
12570
|
+
'a',
|
|
12571
|
+
{ href: _this2.page + '/' + get_1(row, 'url.current') },
|
|
12612
12572
|
clean_html_1(row.summary)
|
|
12613
12573
|
)
|
|
12614
12574
|
)
|
|
@@ -12805,16 +12765,12 @@ var TaxonomyCard = function TaxonomyCard(props) {
|
|
|
12805
12765
|
Col,
|
|
12806
12766
|
null,
|
|
12807
12767
|
row.url ? React__default.createElement(
|
|
12808
|
-
|
|
12809
|
-
{ href: row.url
|
|
12768
|
+
'a',
|
|
12769
|
+
{ href: row.url },
|
|
12810
12770
|
React__default.createElement(
|
|
12811
|
-
|
|
12771
|
+
Card.Title,
|
|
12812
12772
|
null,
|
|
12813
|
-
|
|
12814
|
-
Card.Title,
|
|
12815
|
-
null,
|
|
12816
|
-
row.name
|
|
12817
|
-
)
|
|
12773
|
+
row.name
|
|
12818
12774
|
)
|
|
12819
12775
|
) : React__default.createElement(
|
|
12820
12776
|
Card.Title,
|
|
@@ -12964,34 +12920,30 @@ var GroupDeck = function GroupDeck(props) {
|
|
|
12964
12920
|
'div',
|
|
12965
12921
|
{ key: index, className: 'tile' },
|
|
12966
12922
|
React__default.createElement(
|
|
12967
|
-
|
|
12923
|
+
'a',
|
|
12968
12924
|
{ href: _url },
|
|
12969
12925
|
React__default.createElement(
|
|
12970
|
-
'
|
|
12971
|
-
|
|
12972
|
-
React__default.createElement(
|
|
12973
|
-
|
|
12974
|
-
|
|
12975
|
-
|
|
12976
|
-
|
|
12926
|
+
'div',
|
|
12927
|
+
{ className: 'tile__media' },
|
|
12928
|
+
React__default.createElement('img', { className: 'tile__img', src: video.thumbnail, alt: '' })
|
|
12929
|
+
),
|
|
12930
|
+
React__default.createElement(
|
|
12931
|
+
'div',
|
|
12932
|
+
{ className: 'tile__details' },
|
|
12977
12933
|
React__default.createElement(
|
|
12978
12934
|
'div',
|
|
12979
|
-
{ className: '
|
|
12935
|
+
{ className: 'tile__title' },
|
|
12980
12936
|
React__default.createElement(
|
|
12981
12937
|
'div',
|
|
12982
|
-
{ className: '
|
|
12983
|
-
|
|
12984
|
-
'div',
|
|
12985
|
-
{ style: { color: variant }, className: 'tile__title_text' },
|
|
12986
|
-
video.title
|
|
12987
|
-
)
|
|
12938
|
+
{ style: { color: variant }, className: 'tile__title_text' },
|
|
12939
|
+
video.title
|
|
12988
12940
|
)
|
|
12989
|
-
),
|
|
12990
|
-
React__default.createElement(
|
|
12991
|
-
'div',
|
|
12992
|
-
{ style: { color: variant }, className: 'tile__info' },
|
|
12993
|
-
video.title
|
|
12994
12941
|
)
|
|
12942
|
+
),
|
|
12943
|
+
React__default.createElement(
|
|
12944
|
+
'div',
|
|
12945
|
+
{ style: { color: variant }, className: 'tile__info' },
|
|
12946
|
+
video.title
|
|
12995
12947
|
)
|
|
12996
12948
|
)
|
|
12997
12949
|
);
|
|
@@ -13168,50 +13120,46 @@ var YoutubeGroup = function YoutubeGroup(props) {
|
|
|
13168
13120
|
'div',
|
|
13169
13121
|
{ key: index, className: 'tile' },
|
|
13170
13122
|
React__default.createElement(
|
|
13171
|
-
|
|
13123
|
+
'a',
|
|
13172
13124
|
{ href: _url },
|
|
13173
13125
|
React__default.createElement(
|
|
13174
|
-
'
|
|
13175
|
-
|
|
13126
|
+
'div',
|
|
13127
|
+
{ className: 'tile__media' },
|
|
13176
13128
|
React__default.createElement(
|
|
13177
|
-
|
|
13178
|
-
|
|
13179
|
-
React__default.createElement(
|
|
13180
|
-
|
|
13181
|
-
|
|
13182
|
-
|
|
13183
|
-
|
|
13184
|
-
|
|
13129
|
+
LazyLoad,
|
|
13130
|
+
null,
|
|
13131
|
+
React__default.createElement('img', { className: 'tile__img', src: _thumbnail, alt: '' })
|
|
13132
|
+
)
|
|
13133
|
+
),
|
|
13134
|
+
React__default.createElement(
|
|
13135
|
+
'div',
|
|
13136
|
+
{ className: 'tile__details' },
|
|
13185
13137
|
React__default.createElement(
|
|
13186
13138
|
'div',
|
|
13187
|
-
{ className: '
|
|
13139
|
+
{ className: 'tile__title' },
|
|
13188
13140
|
React__default.createElement(
|
|
13189
13141
|
'div',
|
|
13190
|
-
{ className: '
|
|
13191
|
-
React__default.createElement(
|
|
13192
|
-
'div',
|
|
13193
|
-
{ style: { color: variant }, className: 'tile__title_text' },
|
|
13194
|
-
video.title
|
|
13195
|
-
)
|
|
13196
|
-
)
|
|
13197
|
-
),
|
|
13198
|
-
React__default.createElement(
|
|
13199
|
-
'div',
|
|
13200
|
-
{ style: { color: variant }, className: 'tile__info' },
|
|
13201
|
-
props.displayEpisodeNumber ? React__default.createElement(
|
|
13202
|
-
'span',
|
|
13203
|
-
null,
|
|
13204
|
-
React__default.createElement(
|
|
13205
|
-
'span',
|
|
13206
|
-
{ style: { fontWeight: 'bold' } },
|
|
13207
|
-
'Ep. ',
|
|
13208
|
-
index + 1,
|
|
13209
|
-
':'
|
|
13210
|
-
),
|
|
13211
|
-
' ',
|
|
13142
|
+
{ style: { color: variant }, className: 'tile__title_text' },
|
|
13212
13143
|
video.title
|
|
13213
|
-
)
|
|
13144
|
+
)
|
|
13214
13145
|
)
|
|
13146
|
+
),
|
|
13147
|
+
React__default.createElement(
|
|
13148
|
+
'div',
|
|
13149
|
+
{ style: { color: variant }, className: 'tile__info' },
|
|
13150
|
+
props.displayEpisodeNumber ? React__default.createElement(
|
|
13151
|
+
'span',
|
|
13152
|
+
null,
|
|
13153
|
+
React__default.createElement(
|
|
13154
|
+
'span',
|
|
13155
|
+
{ style: { fontWeight: 'bold' } },
|
|
13156
|
+
'Ep. ',
|
|
13157
|
+
index + 1,
|
|
13158
|
+
':'
|
|
13159
|
+
),
|
|
13160
|
+
' ',
|
|
13161
|
+
video.title
|
|
13162
|
+
) : video.title
|
|
13215
13163
|
)
|
|
13216
13164
|
)
|
|
13217
13165
|
);
|
|
@@ -13340,14 +13288,10 @@ var renderAuthor = function renderAuthor(authorDetail, index$$1, length) {
|
|
|
13340
13288
|
'By'
|
|
13341
13289
|
),
|
|
13342
13290
|
React__default.createElement(
|
|
13343
|
-
|
|
13344
|
-
{ href: '/authors/
|
|
13345
|
-
|
|
13346
|
-
|
|
13347
|
-
{ className: 'text-muted' },
|
|
13348
|
-
displayName,
|
|
13349
|
-
length !== index$$1 + 1 && React__default.createElement('br', null)
|
|
13350
|
-
)
|
|
13291
|
+
'a',
|
|
13292
|
+
{ href: '/authors/' + url.current, className: 'text-muted' },
|
|
13293
|
+
displayName,
|
|
13294
|
+
length !== index$$1 + 1 && React__default.createElement('br', null)
|
|
13351
13295
|
)
|
|
13352
13296
|
);
|
|
13353
13297
|
} else if (displayName) {
|
|
@@ -13478,32 +13422,24 @@ var cardLoader = function cardLoader(data, builder, mapping, values, seoPaginate
|
|
|
13478
13422
|
className: 'feature-media',
|
|
13479
13423
|
style: { flexDirection: 'column', marginBottom: '1.25rem', paddingBottom: '1.25rem', borderBottom: '1px solid #ddd' } },
|
|
13480
13424
|
(article.thumbnail && article.thumbnail.asset || defaultImage) && React__default.createElement(
|
|
13481
|
-
|
|
13482
|
-
{ href: article.url.current },
|
|
13425
|
+
'a',
|
|
13426
|
+
{ href: article.url.current, className: 'feature-wrapper' },
|
|
13483
13427
|
React__default.createElement(
|
|
13484
|
-
|
|
13485
|
-
{
|
|
13486
|
-
React__default.createElement(
|
|
13487
|
-
LazyLoad,
|
|
13488
|
-
{ height: imageHeight },
|
|
13489
|
-
article.thumbnail && article.thumbnail.asset ? React__default.createElement('img', { className: 'img-fluid', src: renderCardImage(article, builder, imageHeight, imageWidth), alt: article.title }) : article.thumbnail ? React__default.createElement('img', { src: article.thumbnail, className: 'mr-3', alt: article.title }) : React__default.createElement('img', { src: defaultImage, src2: article.thumbnail, className: 'mr-3', width: '240', height: '135', alt: article.title })
|
|
13490
|
-
)
|
|
13428
|
+
LazyLoad,
|
|
13429
|
+
{ height: imageHeight },
|
|
13430
|
+
article.thumbnail && article.thumbnail.asset ? React__default.createElement('img', { className: 'img-fluid', src: renderCardImage(article, builder, imageHeight, imageWidth), alt: article.title }) : article.thumbnail ? React__default.createElement('img', { src: article.thumbnail, className: 'mr-3', alt: article.title }) : React__default.createElement('img', { src: defaultImage, src2: article.thumbnail, className: 'mr-3', width: '240', height: '135', alt: article.title })
|
|
13491
13431
|
)
|
|
13492
13432
|
),
|
|
13493
13433
|
React__default.createElement(
|
|
13494
13434
|
reactBootstrap.Media.Body,
|
|
13495
13435
|
null,
|
|
13496
13436
|
React__default.createElement(
|
|
13497
|
-
|
|
13437
|
+
'a',
|
|
13498
13438
|
{ href: article.url.current },
|
|
13499
|
-
React__default.createElement(
|
|
13500
|
-
'
|
|
13501
|
-
|
|
13502
|
-
article.title
|
|
13503
|
-
'h4',
|
|
13504
|
-
{ className: 'card-title', style: { fontWeight: '500', color: 'var(--gray-dark)', marginBottom: '.5rem' } },
|
|
13505
|
-
article.title
|
|
13506
|
-
)
|
|
13439
|
+
article.title && React__default.createElement(
|
|
13440
|
+
'h4',
|
|
13441
|
+
{ className: 'card-title', style: { fontWeight: '500', color: 'var(--gray-dark)', marginBottom: '.5rem' } },
|
|
13442
|
+
article.title
|
|
13507
13443
|
)
|
|
13508
13444
|
),
|
|
13509
13445
|
showPublished && article.published && React__default.createElement(
|
|
@@ -13560,32 +13496,24 @@ var cardLoader = function cardLoader(data, builder, mapping, values, seoPaginate
|
|
|
13560
13496
|
key: article._id ? article._id : index$$1,
|
|
13561
13497
|
style: { flexDirection: 'row', marginBottom: '1.25rem', paddingBottom: '1.25rem', borderBottom: '1px solid #ddd' } },
|
|
13562
13498
|
(article.thumbnail && article.thumbnail.asset || defaultImage) && React__default.createElement(
|
|
13563
|
-
|
|
13564
|
-
{ href: mapping[contentCategoryName] + '/
|
|
13499
|
+
'a',
|
|
13500
|
+
{ href: mapping[contentCategoryName] + '/' + article.url.current, className: 'img-wrapper' },
|
|
13565
13501
|
React__default.createElement(
|
|
13566
|
-
|
|
13567
|
-
{
|
|
13568
|
-
React__default.createElement(
|
|
13569
|
-
LazyLoad,
|
|
13570
|
-
{ height: imageHeight },
|
|
13571
|
-
article.thumbnail && article.thumbnail.asset ? React__default.createElement('img', { className: 'mr-3 img-fluid', src: renderCardImage(article, builder, imageHeight, imageWidth), alt: article.title }) : article.thumbnail ? React__default.createElement('img', { src: article.thumbnail, className: 'mr-3', alt: article.title }) : React__default.createElement('img', { src: defaultImage, src2: article.thumbnail, className: 'mr-3', width: '240', height: '135', alt: article.title })
|
|
13572
|
-
)
|
|
13502
|
+
LazyLoad,
|
|
13503
|
+
{ height: imageHeight },
|
|
13504
|
+
article.thumbnail && article.thumbnail.asset ? React__default.createElement('img', { className: 'mr-3 img-fluid', src: renderCardImage(article, builder, imageHeight, imageWidth), alt: article.title }) : article.thumbnail ? React__default.createElement('img', { src: article.thumbnail, className: 'mr-3', alt: article.title }) : React__default.createElement('img', { src: defaultImage, src2: article.thumbnail, className: 'mr-3', width: '240', height: '135', alt: article.title })
|
|
13573
13505
|
)
|
|
13574
13506
|
),
|
|
13575
13507
|
React__default.createElement(
|
|
13576
13508
|
reactBootstrap.Media.Body,
|
|
13577
13509
|
null,
|
|
13578
13510
|
React__default.createElement(
|
|
13579
|
-
|
|
13580
|
-
{ href: mapping[contentCategoryName] + '/
|
|
13581
|
-
React__default.createElement(
|
|
13582
|
-
'
|
|
13583
|
-
|
|
13584
|
-
article.title
|
|
13585
|
-
'h4',
|
|
13586
|
-
{ className: 'card-title', style: { fontWeight: '500', color: 'var(--gray-dark)', marginBottom: '.5rem' } },
|
|
13587
|
-
article.title
|
|
13588
|
-
)
|
|
13511
|
+
'a',
|
|
13512
|
+
{ href: mapping[contentCategoryName] + '/' + article.url.current },
|
|
13513
|
+
article.title && React__default.createElement(
|
|
13514
|
+
'h4',
|
|
13515
|
+
{ className: 'card-title', style: { fontWeight: '500', color: 'var(--gray-dark)', marginBottom: '.5rem' } },
|
|
13516
|
+
article.title
|
|
13589
13517
|
)
|
|
13590
13518
|
),
|
|
13591
13519
|
showPublished && article.published && React__default.createElement(
|
|
@@ -14053,17 +13981,13 @@ var VideoSeriesListing = function (_React$Component) {
|
|
|
14053
13981
|
'h4',
|
|
14054
13982
|
{ className: 'video-title-banner', style: { fontWeight: 'bold', color: 'var(--primary)', padding: '.25rem 0', borderBottom: '2px solid var(--gold)' } },
|
|
14055
13983
|
React__default.createElement(
|
|
14056
|
-
|
|
13984
|
+
'a',
|
|
14057
13985
|
{ href: '/' + _this.props.page + '/' + docSeries.url.current },
|
|
13986
|
+
docSeries.title,
|
|
14058
13987
|
React__default.createElement(
|
|
14059
|
-
'
|
|
14060
|
-
|
|
14061
|
-
|
|
14062
|
-
React__default.createElement(
|
|
14063
|
-
'span',
|
|
14064
|
-
{ style: { fontSize: '.9rem', color: 'grey', marginLeft: '1rem', transform: 'translateY(-2px)' } },
|
|
14065
|
-
React__default.createElement(IoIosArrowForward, null)
|
|
14066
|
-
)
|
|
13988
|
+
'span',
|
|
13989
|
+
{ style: { fontSize: '.9rem', color: 'grey', marginLeft: '1rem', transform: 'translateY(-2px)' } },
|
|
13990
|
+
React__default.createElement(IoIosArrowForward, null)
|
|
14067
13991
|
)
|
|
14068
13992
|
)
|
|
14069
13993
|
),
|
|
@@ -14462,29 +14386,25 @@ var PublicationDeck = function PublicationDeck(props) {
|
|
|
14462
14386
|
Card,
|
|
14463
14387
|
{ className: 'block-card', style: { width: '200px' } },
|
|
14464
14388
|
React__default.createElement(
|
|
14465
|
-
|
|
14389
|
+
'a',
|
|
14466
14390
|
{ href: href + '/' + row.identifier.current },
|
|
14391
|
+
row.childIssue && row.childIssue.thumbnail && React__default.createElement(
|
|
14392
|
+
LazyLoad,
|
|
14393
|
+
{ height: imageHeight },
|
|
14394
|
+
React__default.createElement(Card.Img, { variant: 'top', src: renderCardImage(row.childIssue.thumbnail), alt: row.name })
|
|
14395
|
+
),
|
|
14467
14396
|
React__default.createElement(
|
|
14468
|
-
|
|
14397
|
+
Card.Body,
|
|
14469
14398
|
null,
|
|
14470
|
-
row.childIssue && row.childIssue.thumbnail && React__default.createElement(
|
|
14471
|
-
LazyLoad,
|
|
14472
|
-
{ height: imageHeight },
|
|
14473
|
-
React__default.createElement(Card.Img, { variant: 'top', src: renderCardImage(row.childIssue.thumbnail), alt: row.name })
|
|
14474
|
-
),
|
|
14475
14399
|
React__default.createElement(
|
|
14476
|
-
Card.
|
|
14400
|
+
Card.Title,
|
|
14477
14401
|
null,
|
|
14478
|
-
|
|
14479
|
-
|
|
14480
|
-
|
|
14481
|
-
|
|
14482
|
-
|
|
14483
|
-
|
|
14484
|
-
Button,
|
|
14485
|
-
{ variant: 'secondary' },
|
|
14486
|
-
'Browse Issues'
|
|
14487
|
-
)
|
|
14402
|
+
row.name
|
|
14403
|
+
),
|
|
14404
|
+
React__default.createElement(
|
|
14405
|
+
Button,
|
|
14406
|
+
{ variant: 'secondary' },
|
|
14407
|
+
'Browse Issues'
|
|
14488
14408
|
)
|
|
14489
14409
|
)
|
|
14490
14410
|
)
|
|
@@ -14534,19 +14454,15 @@ var IssueDeck = function IssueDeck(props) {
|
|
|
14534
14454
|
Row,
|
|
14535
14455
|
{ style: { flexDirection: 'left' } },
|
|
14536
14456
|
React__default.createElement(
|
|
14537
|
-
|
|
14457
|
+
'a',
|
|
14538
14458
|
{ href: href + '/' + publication + '/' + row.identifier.current },
|
|
14539
14459
|
React__default.createElement(
|
|
14540
|
-
|
|
14541
|
-
|
|
14542
|
-
React__default.createElement(
|
|
14543
|
-
|
|
14544
|
-
{
|
|
14545
|
-
row.thumbnail
|
|
14546
|
-
LazyLoad,
|
|
14547
|
-
{ height: imageHeight },
|
|
14548
|
-
React__default.createElement(Card.Img, { variant: 'top', src: renderCardImage(row.thumbnail), alt: row.name })
|
|
14549
|
-
)
|
|
14460
|
+
Col,
|
|
14461
|
+
{ md: 12, lg: 4, className: 'body-image' },
|
|
14462
|
+
row.thumbnail && React__default.createElement(
|
|
14463
|
+
LazyLoad,
|
|
14464
|
+
{ height: imageHeight },
|
|
14465
|
+
React__default.createElement(Card.Img, { variant: 'top', src: renderCardImage(row.thumbnail), alt: row.name })
|
|
14550
14466
|
)
|
|
14551
14467
|
)
|
|
14552
14468
|
),
|
|
@@ -14574,16 +14490,12 @@ var IssueDeck = function IssueDeck(props) {
|
|
|
14574
14490
|
row.number
|
|
14575
14491
|
),
|
|
14576
14492
|
React__default.createElement(
|
|
14577
|
-
|
|
14493
|
+
'a',
|
|
14578
14494
|
{ href: href + '/' + publication + '/' + row.identifier.current },
|
|
14579
14495
|
React__default.createElement(
|
|
14580
|
-
|
|
14581
|
-
|
|
14582
|
-
|
|
14583
|
-
Button,
|
|
14584
|
-
{ style: { marginTop: '20px' }, variant: 'secondary' },
|
|
14585
|
-
'View Issue'
|
|
14586
|
-
)
|
|
14496
|
+
Button,
|
|
14497
|
+
{ style: { marginTop: '20px' }, variant: 'secondary' },
|
|
14498
|
+
'View Issue'
|
|
14587
14499
|
)
|
|
14588
14500
|
),
|
|
14589
14501
|
row.pdf && row.pdf.asset && React__default.createElement(
|
|
@@ -14635,29 +14547,25 @@ var IssueContentDeck = function IssueContentDeck(props) {
|
|
|
14635
14547
|
Card,
|
|
14636
14548
|
null,
|
|
14637
14549
|
React__default.createElement(
|
|
14638
|
-
|
|
14639
|
-
{ href: '/view/
|
|
14550
|
+
'a',
|
|
14551
|
+
{ href: '/view/' + row.url.current },
|
|
14552
|
+
row.thumbnail && React__default.createElement(
|
|
14553
|
+
LazyLoad,
|
|
14554
|
+
{ height: imageHeight },
|
|
14555
|
+
React__default.createElement(Card.Img, { variant: 'top', src: renderCardImage(row.thumbnail), alt: row.title })
|
|
14556
|
+
),
|
|
14640
14557
|
React__default.createElement(
|
|
14641
|
-
|
|
14558
|
+
Card.Body,
|
|
14642
14559
|
null,
|
|
14643
|
-
row.
|
|
14644
|
-
|
|
14645
|
-
{
|
|
14646
|
-
|
|
14647
|
-
),
|
|
14560
|
+
row.issueSection && row.issueSection.name ? React__default.createElement(
|
|
14561
|
+
Badge,
|
|
14562
|
+
{ variant: 'success' },
|
|
14563
|
+
row.issueSection && row.issueSection.name.name
|
|
14564
|
+
) : '',
|
|
14648
14565
|
React__default.createElement(
|
|
14649
|
-
Card.
|
|
14566
|
+
Card.Title,
|
|
14650
14567
|
null,
|
|
14651
|
-
row.
|
|
14652
|
-
Badge,
|
|
14653
|
-
{ variant: 'success' },
|
|
14654
|
-
row.issueSection && row.issueSection.name.name
|
|
14655
|
-
) : '',
|
|
14656
|
-
React__default.createElement(
|
|
14657
|
-
Card.Title,
|
|
14658
|
-
null,
|
|
14659
|
-
row.title
|
|
14660
|
-
)
|
|
14568
|
+
row.title
|
|
14661
14569
|
)
|
|
14662
14570
|
)
|
|
14663
14571
|
)
|
|
@@ -15328,13 +15236,9 @@ var SideFooter = function SideFooter(props) {
|
|
|
15328
15236
|
'li',
|
|
15329
15237
|
{ key: index },
|
|
15330
15238
|
React__default.createElement(
|
|
15331
|
-
|
|
15239
|
+
'a',
|
|
15332
15240
|
{ href: row.url },
|
|
15333
|
-
|
|
15334
|
-
'a',
|
|
15335
|
-
null,
|
|
15336
|
-
row.title
|
|
15337
|
-
)
|
|
15241
|
+
row.title
|
|
15338
15242
|
)
|
|
15339
15243
|
);
|
|
15340
15244
|
}
|
|
@@ -15450,13 +15354,9 @@ var LeftNav = function LeftNav(props) {
|
|
|
15450
15354
|
);
|
|
15451
15355
|
}
|
|
15452
15356
|
return React__default.createElement(
|
|
15453
|
-
|
|
15454
|
-
{ href: subRow.url || '#' },
|
|
15455
|
-
|
|
15456
|
-
'a',
|
|
15457
|
-
{ target: subRow.blank ? '_blank' : '_self' },
|
|
15458
|
-
subRow.name
|
|
15459
|
-
)
|
|
15357
|
+
'a',
|
|
15358
|
+
{ href: subRow.url || '#', target: subRow.blank ? '_blank' : '_self' },
|
|
15359
|
+
subRow.name
|
|
15460
15360
|
);
|
|
15461
15361
|
};
|
|
15462
15362
|
|
|
@@ -15696,7 +15596,7 @@ var AccordionPanel = function AccordionPanel(props) {
|
|
|
15696
15596
|
CustomToggle,
|
|
15697
15597
|
{ key: item.id, eventKey: item.id },
|
|
15698
15598
|
React__default.createElement(
|
|
15699
|
-
|
|
15599
|
+
'a',
|
|
15700
15600
|
{ href: item.url },
|
|
15701
15601
|
React__default.createElement(
|
|
15702
15602
|
React__default.Fragment,
|
|
@@ -15714,7 +15614,7 @@ var AccordionPanel = function AccordionPanel(props) {
|
|
|
15714
15614
|
null,
|
|
15715
15615
|
item.subItems && item.subItems.map(function (subItem) {
|
|
15716
15616
|
return React__default.createElement(
|
|
15717
|
-
|
|
15617
|
+
'a',
|
|
15718
15618
|
{ href: subItem.url },
|
|
15719
15619
|
React__default.createElement(
|
|
15720
15620
|
'div',
|
|
@@ -15878,13 +15778,9 @@ var NavFooter = function NavFooter(props) {
|
|
|
15878
15778
|
'li',
|
|
15879
15779
|
{ key: index },
|
|
15880
15780
|
React__default.createElement(
|
|
15881
|
-
|
|
15882
|
-
{ href: content.url },
|
|
15883
|
-
|
|
15884
|
-
'a',
|
|
15885
|
-
{ className: 'nav-link' },
|
|
15886
|
-
content.title
|
|
15887
|
-
)
|
|
15781
|
+
'a',
|
|
15782
|
+
{ href: content.url, className: 'nav-link' },
|
|
15783
|
+
content.title
|
|
15888
15784
|
)
|
|
15889
15785
|
);
|
|
15890
15786
|
} else return null;
|
|
@@ -15936,13 +15832,9 @@ var SocialNavFooter = function SocialNavFooter(props) {
|
|
|
15936
15832
|
'li',
|
|
15937
15833
|
{ key: index },
|
|
15938
15834
|
React__default.createElement(
|
|
15939
|
-
|
|
15940
|
-
{ href: content.url },
|
|
15941
|
-
|
|
15942
|
-
'a',
|
|
15943
|
-
{ className: 'nav-link' },
|
|
15944
|
-
content.title
|
|
15945
|
-
)
|
|
15835
|
+
'a',
|
|
15836
|
+
{ href: content.url, className: 'nav-link' },
|
|
15837
|
+
content.title
|
|
15946
15838
|
)
|
|
15947
15839
|
);
|
|
15948
15840
|
} else return null;
|
|
@@ -16069,17 +15961,13 @@ var NavMagazine = function NavMagazine(props) {
|
|
|
16069
15961
|
Nav.Item,
|
|
16070
15962
|
{ id: 'nav-mobile-register', className: 'hide-on-login', style: { display: 'none' } },
|
|
16071
15963
|
React__default.createElement(
|
|
16072
|
-
|
|
15964
|
+
'a',
|
|
16073
15965
|
{ href: '/register' },
|
|
16074
15966
|
React__default.createElement(
|
|
16075
|
-
'
|
|
16076
|
-
|
|
16077
|
-
React__default.createElement(
|
|
16078
|
-
|
|
16079
|
-
{ className: 'px-2 py-2' },
|
|
16080
|
-
React__default.createElement(MdEmail, null),
|
|
16081
|
-
' Register'
|
|
16082
|
-
)
|
|
15967
|
+
'div',
|
|
15968
|
+
{ className: 'px-2 py-2' },
|
|
15969
|
+
React__default.createElement(MdEmail, null),
|
|
15970
|
+
' Register'
|
|
16083
15971
|
)
|
|
16084
15972
|
)
|
|
16085
15973
|
),
|
|
@@ -16087,13 +15975,9 @@ var NavMagazine = function NavMagazine(props) {
|
|
|
16087
15975
|
Nav.Item,
|
|
16088
15976
|
{ className: 'nav-mobile-logo' },
|
|
16089
15977
|
React__default.createElement(
|
|
16090
|
-
|
|
15978
|
+
'a',
|
|
16091
15979
|
{ href: '/' },
|
|
16092
|
-
React__default.createElement(
|
|
16093
|
-
'a',
|
|
16094
|
-
null,
|
|
16095
|
-
mobileLogo && screenWidth < 776 ? React__default.createElement('img', { src: mobileLogo }) : React__default.createElement('img', { src: logo, className: 'logo', style: { height: '55px' } })
|
|
16096
|
-
)
|
|
15980
|
+
mobileLogo && screenWidth < 776 ? React__default.createElement('img', { src: mobileLogo }) : React__default.createElement('img', { src: logo, className: 'logo', style: { height: '55px' } })
|
|
16097
15981
|
)
|
|
16098
15982
|
),
|
|
16099
15983
|
showLogin && React__default.createElement(
|
|
@@ -16135,17 +16019,13 @@ var NavMagazine = function NavMagazine(props) {
|
|
|
16135
16019
|
Nav.Item,
|
|
16136
16020
|
{ className: 'hide-on-login', style: { display: 'none' } },
|
|
16137
16021
|
React__default.createElement(
|
|
16138
|
-
|
|
16022
|
+
'a',
|
|
16139
16023
|
{ href: '/register' },
|
|
16140
16024
|
React__default.createElement(
|
|
16141
|
-
'
|
|
16142
|
-
|
|
16143
|
-
React__default.createElement(
|
|
16144
|
-
|
|
16145
|
-
{ className: 'px-2 py-2 mr-2', id: 'nav-register' },
|
|
16146
|
-
React__default.createElement(MdEmail, null),
|
|
16147
|
-
' Register'
|
|
16148
|
-
)
|
|
16025
|
+
'div',
|
|
16026
|
+
{ className: 'px-2 py-2 mr-2', id: 'nav-register' },
|
|
16027
|
+
React__default.createElement(MdEmail, null),
|
|
16028
|
+
' Register'
|
|
16149
16029
|
)
|
|
16150
16030
|
)
|
|
16151
16031
|
),
|
|
@@ -16210,13 +16090,9 @@ var NavMagazine = function NavMagazine(props) {
|
|
|
16210
16090
|
} else {
|
|
16211
16091
|
if (ddRow.url && ddRow.name) {
|
|
16212
16092
|
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
16213
|
-
|
|
16214
|
-
{ key: subIndex, href: ddRow.url },
|
|
16215
|
-
|
|
16216
|
-
'a',
|
|
16217
|
-
{ target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
16218
|
-
ddRow.name
|
|
16219
|
-
)
|
|
16093
|
+
'a',
|
|
16094
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
16095
|
+
ddRow.name
|
|
16220
16096
|
) : null;
|
|
16221
16097
|
} else return null;
|
|
16222
16098
|
}
|
|
@@ -16224,13 +16100,9 @@ var NavMagazine = function NavMagazine(props) {
|
|
|
16224
16100
|
) : null;
|
|
16225
16101
|
} else {
|
|
16226
16102
|
return row.url && row.name ? React__default.createElement(
|
|
16227
|
-
|
|
16228
|
-
{ key: index, href: row.url },
|
|
16229
|
-
|
|
16230
|
-
'a',
|
|
16231
|
-
{ target: row.blank ? '_blank' : '_self', className: 'nav-link' },
|
|
16232
|
-
row.name
|
|
16233
|
-
)
|
|
16103
|
+
'a',
|
|
16104
|
+
{ key: index, href: row.url, target: row.blank ? '_blank' : '_self', className: 'nav-link' },
|
|
16105
|
+
row.name
|
|
16234
16106
|
) : null;
|
|
16235
16107
|
}
|
|
16236
16108
|
})
|
|
@@ -16240,13 +16112,9 @@ var NavMagazine = function NavMagazine(props) {
|
|
|
16240
16112
|
Navbar.Collapse,
|
|
16241
16113
|
{ id: 'basic-navbar-nav' },
|
|
16242
16114
|
isSticky && React__default.createElement(
|
|
16243
|
-
|
|
16115
|
+
'a',
|
|
16244
16116
|
{ href: '/' },
|
|
16245
|
-
React__default.createElement(
|
|
16246
|
-
'a',
|
|
16247
|
-
null,
|
|
16248
|
-
React__default.createElement(IoIosHome, { size: 20, className: 'sticky-home', color: '#fff' })
|
|
16249
|
-
)
|
|
16117
|
+
React__default.createElement(IoIosHome, { size: 20, className: 'sticky-home', color: '#fff' })
|
|
16250
16118
|
),
|
|
16251
16119
|
React__default.createElement(
|
|
16252
16120
|
Nav,
|
|
@@ -16261,26 +16129,18 @@ var NavMagazine = function NavMagazine(props) {
|
|
|
16261
16129
|
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
16262
16130
|
} else {
|
|
16263
16131
|
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
16264
|
-
|
|
16265
|
-
{ key: subIndex, href: ddRow.url },
|
|
16266
|
-
|
|
16267
|
-
'a',
|
|
16268
|
-
{ target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
16269
|
-
ddRow.name
|
|
16270
|
-
)
|
|
16132
|
+
'a',
|
|
16133
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
16134
|
+
ddRow.name
|
|
16271
16135
|
) : null;
|
|
16272
16136
|
}
|
|
16273
16137
|
})
|
|
16274
16138
|
) : null;
|
|
16275
16139
|
} else {
|
|
16276
16140
|
return row.url && row.name ? React__default.createElement(
|
|
16277
|
-
|
|
16278
|
-
{ key: index, href: row.url },
|
|
16279
|
-
|
|
16280
|
-
'a',
|
|
16281
|
-
{ target: row.blank ? '_blank' : '_self', className: 'nav-link' },
|
|
16282
|
-
row.name
|
|
16283
|
-
)
|
|
16141
|
+
'a',
|
|
16142
|
+
{ key: index, href: row.url, target: row.blank ? '_blank' : '_self', className: 'nav-link' },
|
|
16143
|
+
row.name
|
|
16284
16144
|
) : null;
|
|
16285
16145
|
}
|
|
16286
16146
|
})
|
|
@@ -16382,13 +16242,9 @@ var NavNative = function NavNative(props) {
|
|
|
16382
16242
|
Navbar.Brand,
|
|
16383
16243
|
{ id: 'nav-mobile-sm', className: 'nav-mobile-logo' },
|
|
16384
16244
|
React__default.createElement(
|
|
16385
|
-
|
|
16245
|
+
'a',
|
|
16386
16246
|
{ href: '/' },
|
|
16387
|
-
React__default.createElement(
|
|
16388
|
-
'a',
|
|
16389
|
-
null,
|
|
16390
|
-
mobileLogo && screenWidth < 1200 ? React__default.createElement('img', { src: mobileLogo }) : React__default.createElement('img', { src: logo, className: 'logo', style: { height: '50px' } })
|
|
16391
|
-
)
|
|
16247
|
+
mobileLogo && screenWidth < 1200 ? React__default.createElement('img', { src: mobileLogo }) : React__default.createElement('img', { src: logo, className: 'logo', style: { height: '50px' } })
|
|
16392
16248
|
)
|
|
16393
16249
|
),
|
|
16394
16250
|
React__default.createElement(
|
|
@@ -16399,13 +16255,9 @@ var NavNative = function NavNative(props) {
|
|
|
16399
16255
|
Navbar.Brand,
|
|
16400
16256
|
{ id: 'nav-mobile-md', className: 'nav-mobile-logo' },
|
|
16401
16257
|
React__default.createElement(
|
|
16402
|
-
|
|
16258
|
+
'a',
|
|
16403
16259
|
{ href: '/' },
|
|
16404
|
-
React__default.createElement(
|
|
16405
|
-
'a',
|
|
16406
|
-
null,
|
|
16407
|
-
mobileLogo && screenWidth < 1200 ? React__default.createElement('img', { src: mobileLogo }) : React__default.createElement('img', { src: logo, className: 'logo', style: { height: '50px' } })
|
|
16408
|
-
)
|
|
16260
|
+
mobileLogo && screenWidth < 1200 ? React__default.createElement('img', { src: mobileLogo }) : React__default.createElement('img', { src: logo, className: 'logo', style: { height: '50px' } })
|
|
16409
16261
|
)
|
|
16410
16262
|
),
|
|
16411
16263
|
React__default.createElement(Search, { device: 'mobile' })
|
|
@@ -16427,13 +16279,9 @@ var NavNative = function NavNative(props) {
|
|
|
16427
16279
|
} else {
|
|
16428
16280
|
if (ddRow.url && ddRow.name) {
|
|
16429
16281
|
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
16430
|
-
|
|
16431
|
-
{ key: subIndex, href: ddRow.url },
|
|
16432
|
-
|
|
16433
|
-
'a',
|
|
16434
|
-
{ target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
16435
|
-
ddRow.name
|
|
16436
|
-
)
|
|
16282
|
+
'a',
|
|
16283
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
16284
|
+
ddRow.name
|
|
16437
16285
|
) : null;
|
|
16438
16286
|
} else return null;
|
|
16439
16287
|
}
|
|
@@ -16441,13 +16289,9 @@ var NavNative = function NavNative(props) {
|
|
|
16441
16289
|
) : null;
|
|
16442
16290
|
} else {
|
|
16443
16291
|
return row.url && row.name ? React__default.createElement(
|
|
16444
|
-
|
|
16445
|
-
{ key: index, href: row.url },
|
|
16446
|
-
|
|
16447
|
-
'a',
|
|
16448
|
-
{ target: row.blank ? '_blank' : '_self', className: 'nav-link' },
|
|
16449
|
-
row.name
|
|
16450
|
-
)
|
|
16292
|
+
'a',
|
|
16293
|
+
{ key: index, href: row.url, target: row.blank ? '_blank' : '_self', className: 'nav-link' },
|
|
16294
|
+
row.name
|
|
16451
16295
|
) : null;
|
|
16452
16296
|
}
|
|
16453
16297
|
})
|
|
@@ -16469,26 +16313,18 @@ var NavNative = function NavNative(props) {
|
|
|
16469
16313
|
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
16470
16314
|
} else {
|
|
16471
16315
|
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
16472
|
-
|
|
16473
|
-
{ key: subIndex, href: ddRow.url },
|
|
16474
|
-
|
|
16475
|
-
'a',
|
|
16476
|
-
{ target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
16477
|
-
ddRow.name
|
|
16478
|
-
)
|
|
16316
|
+
'a',
|
|
16317
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
16318
|
+
ddRow.name
|
|
16479
16319
|
) : null;
|
|
16480
16320
|
}
|
|
16481
16321
|
})
|
|
16482
16322
|
) : null;
|
|
16483
16323
|
} else {
|
|
16484
16324
|
return row.url && row.name ? React__default.createElement(
|
|
16485
|
-
|
|
16486
|
-
{ key: index, href: row.url },
|
|
16487
|
-
|
|
16488
|
-
'a',
|
|
16489
|
-
{ target: row.blank ? '_blank' : '_self', className: 'nav-link' },
|
|
16490
|
-
row.name
|
|
16491
|
-
)
|
|
16325
|
+
'a',
|
|
16326
|
+
{ key: index, href: row.url, target: row.blank ? '_blank' : '_self', className: 'nav-link' },
|
|
16327
|
+
row.name
|
|
16492
16328
|
) : null;
|
|
16493
16329
|
}
|
|
16494
16330
|
})
|
|
@@ -16610,13 +16446,9 @@ var NavDvm = function NavDvm(props) {
|
|
|
16610
16446
|
}
|
|
16611
16447
|
|
|
16612
16448
|
return React__default.createElement(
|
|
16613
|
-
|
|
16614
|
-
{ key: key, href: url || '#' },
|
|
16615
|
-
|
|
16616
|
-
'a',
|
|
16617
|
-
{ target: blank ? '_blank' : '_self', className: className },
|
|
16618
|
-
name
|
|
16619
|
-
)
|
|
16449
|
+
'a',
|
|
16450
|
+
{ key: key, href: url || '#', target: blank ? '_blank' : '_self', className: className },
|
|
16451
|
+
name
|
|
16620
16452
|
);
|
|
16621
16453
|
};
|
|
16622
16454
|
|
|
@@ -16636,13 +16468,9 @@ var NavDvm = function NavDvm(props) {
|
|
|
16636
16468
|
Nav.Item,
|
|
16637
16469
|
null,
|
|
16638
16470
|
React__default.createElement(
|
|
16639
|
-
|
|
16471
|
+
'a',
|
|
16640
16472
|
{ href: '/' },
|
|
16641
|
-
React__default.createElement(
|
|
16642
|
-
'a',
|
|
16643
|
-
null,
|
|
16644
|
-
React__default.createElement('img', { src: logo, style: { height: '55px' } })
|
|
16645
|
-
)
|
|
16473
|
+
React__default.createElement('img', { src: logo, style: { height: '55px' } })
|
|
16646
16474
|
)
|
|
16647
16475
|
)
|
|
16648
16476
|
)
|
|
@@ -16655,13 +16483,9 @@ var NavDvm = function NavDvm(props) {
|
|
|
16655
16483
|
Container,
|
|
16656
16484
|
{ className: 'mobile-nav position-relative' },
|
|
16657
16485
|
mobileLogo && React__default.createElement(
|
|
16658
|
-
|
|
16659
|
-
{ href: '/' },
|
|
16660
|
-
React__default.createElement(
|
|
16661
|
-
'a',
|
|
16662
|
-
{ className: 'mobile-logo' },
|
|
16663
|
-
React__default.createElement('img', { src: mobileLogo })
|
|
16664
|
-
)
|
|
16486
|
+
'a',
|
|
16487
|
+
{ href: '/', className: 'mobile-logo' },
|
|
16488
|
+
React__default.createElement('img', { src: mobileLogo })
|
|
16665
16489
|
),
|
|
16666
16490
|
React__default.createElement(Navbar.Toggle, { 'aria-controls': 'basic-navbar-nav' }),
|
|
16667
16491
|
React__default.createElement(
|
|
@@ -16707,13 +16531,9 @@ var NavDvm = function NavDvm(props) {
|
|
|
16707
16531
|
} else {
|
|
16708
16532
|
if (ddRow.url && ddRow.name) {
|
|
16709
16533
|
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
16710
|
-
|
|
16711
|
-
{ key: subIndex, href: ddRow.url },
|
|
16712
|
-
|
|
16713
|
-
'a',
|
|
16714
|
-
{ target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
16715
|
-
ddRow.name
|
|
16716
|
-
)
|
|
16534
|
+
'a',
|
|
16535
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
16536
|
+
ddRow.name
|
|
16717
16537
|
) : null;
|
|
16718
16538
|
} else return null;
|
|
16719
16539
|
}
|
|
@@ -16721,13 +16541,9 @@ var NavDvm = function NavDvm(props) {
|
|
|
16721
16541
|
) : null;
|
|
16722
16542
|
} else {
|
|
16723
16543
|
return row.url && row.name ? React__default.createElement(
|
|
16724
|
-
|
|
16725
|
-
{ key: index, href: row.url },
|
|
16726
|
-
|
|
16727
|
-
'a',
|
|
16728
|
-
{ target: row.blank ? '_blank' : '_self', className: 'nav-link' },
|
|
16729
|
-
row.name
|
|
16730
|
-
)
|
|
16544
|
+
'a',
|
|
16545
|
+
{ key: index, href: row.url, target: row.blank ? '_blank' : '_self', className: 'nav-link' },
|
|
16546
|
+
row.name
|
|
16731
16547
|
) : null;
|
|
16732
16548
|
}
|
|
16733
16549
|
})
|
|
@@ -16849,17 +16665,13 @@ var HamMagazine = function HamMagazine(props) {
|
|
|
16849
16665
|
Nav.Item,
|
|
16850
16666
|
{ id: 'nav-mobile-register', className: 'hide-on-login', style: { display: 'none' } },
|
|
16851
16667
|
React__default.createElement(
|
|
16852
|
-
|
|
16668
|
+
'a',
|
|
16853
16669
|
{ href: '/register' },
|
|
16854
16670
|
React__default.createElement(
|
|
16855
|
-
'
|
|
16856
|
-
|
|
16857
|
-
React__default.createElement(
|
|
16858
|
-
|
|
16859
|
-
{ className: 'px-2 py-2' },
|
|
16860
|
-
React__default.createElement(MdEmail, null),
|
|
16861
|
-
' Register'
|
|
16862
|
-
)
|
|
16671
|
+
'div',
|
|
16672
|
+
{ className: 'px-2 py-2' },
|
|
16673
|
+
React__default.createElement(MdEmail, null),
|
|
16674
|
+
' Register'
|
|
16863
16675
|
)
|
|
16864
16676
|
)
|
|
16865
16677
|
),
|
|
@@ -16867,13 +16679,9 @@ var HamMagazine = function HamMagazine(props) {
|
|
|
16867
16679
|
Nav.Item,
|
|
16868
16680
|
{ className: 'nav-mobile-logo' },
|
|
16869
16681
|
React__default.createElement(
|
|
16870
|
-
|
|
16682
|
+
'a',
|
|
16871
16683
|
{ href: '/' },
|
|
16872
|
-
React__default.createElement(
|
|
16873
|
-
'a',
|
|
16874
|
-
null,
|
|
16875
|
-
mobileLogo && screenWidth < 776 ? React__default.createElement('img', { src: mobileLogo }) : React__default.createElement('img', { src: logo, className: 'logo', style: { height: '55px' } })
|
|
16876
|
-
)
|
|
16684
|
+
mobileLogo && screenWidth < 776 ? React__default.createElement('img', { src: mobileLogo }) : React__default.createElement('img', { src: logo, className: 'logo', style: { height: '55px' } })
|
|
16877
16685
|
)
|
|
16878
16686
|
),
|
|
16879
16687
|
showLogin && React__default.createElement(
|
|
@@ -16915,17 +16723,13 @@ var HamMagazine = function HamMagazine(props) {
|
|
|
16915
16723
|
Nav.Item,
|
|
16916
16724
|
{ className: 'hide-on-login', style: { display: 'none' } },
|
|
16917
16725
|
React__default.createElement(
|
|
16918
|
-
|
|
16726
|
+
'a',
|
|
16919
16727
|
{ href: '/register' },
|
|
16920
16728
|
React__default.createElement(
|
|
16921
|
-
'
|
|
16922
|
-
|
|
16923
|
-
React__default.createElement(
|
|
16924
|
-
|
|
16925
|
-
{ className: 'px-2 py-2 mr-2', id: 'nav-register' },
|
|
16926
|
-
React__default.createElement(MdEmail, null),
|
|
16927
|
-
' Register'
|
|
16928
|
-
)
|
|
16729
|
+
'div',
|
|
16730
|
+
{ className: 'px-2 py-2 mr-2', id: 'nav-register' },
|
|
16731
|
+
React__default.createElement(MdEmail, null),
|
|
16732
|
+
' Register'
|
|
16929
16733
|
)
|
|
16930
16734
|
)
|
|
16931
16735
|
),
|
|
@@ -16998,13 +16802,9 @@ var HamMagazine = function HamMagazine(props) {
|
|
|
16998
16802
|
} else {
|
|
16999
16803
|
if (ddRow.url && ddRow.name) {
|
|
17000
16804
|
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
17001
|
-
|
|
17002
|
-
{ key: subIndex, href: ddRow.url },
|
|
17003
|
-
|
|
17004
|
-
'a',
|
|
17005
|
-
{ target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
17006
|
-
ddRow.name
|
|
17007
|
-
)
|
|
16805
|
+
'a',
|
|
16806
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
16807
|
+
ddRow.name
|
|
17008
16808
|
) : null;
|
|
17009
16809
|
} else return null;
|
|
17010
16810
|
}
|
|
@@ -17012,13 +16812,9 @@ var HamMagazine = function HamMagazine(props) {
|
|
|
17012
16812
|
) : null;
|
|
17013
16813
|
} else {
|
|
17014
16814
|
return row.url && row.name ? React__default.createElement(
|
|
17015
|
-
|
|
17016
|
-
{ key: index, href: row.url },
|
|
17017
|
-
|
|
17018
|
-
'a',
|
|
17019
|
-
{ target: row.blank ? '_blank' : '_self', className: 'nav-link' },
|
|
17020
|
-
row.name
|
|
17021
|
-
)
|
|
16815
|
+
'a',
|
|
16816
|
+
{ key: index, href: row.url, target: row.blank ? '_blank' : '_self', className: 'nav-link' },
|
|
16817
|
+
row.name
|
|
17022
16818
|
) : null;
|
|
17023
16819
|
}
|
|
17024
16820
|
})
|
|
@@ -17028,13 +16824,9 @@ var HamMagazine = function HamMagazine(props) {
|
|
|
17028
16824
|
Navbar.Collapse,
|
|
17029
16825
|
{ id: 'basic-navbar-nav' },
|
|
17030
16826
|
isSticky && React__default.createElement(
|
|
17031
|
-
|
|
16827
|
+
'a',
|
|
17032
16828
|
{ href: '/' },
|
|
17033
|
-
React__default.createElement(
|
|
17034
|
-
'a',
|
|
17035
|
-
null,
|
|
17036
|
-
React__default.createElement(IoIosHome, { size: 20, className: 'sticky-home', color: '#fff' })
|
|
17037
|
-
)
|
|
16829
|
+
React__default.createElement(IoIosHome, { size: 20, className: 'sticky-home', color: '#fff' })
|
|
17038
16830
|
),
|
|
17039
16831
|
React__default.createElement(
|
|
17040
16832
|
Nav,
|
|
@@ -17049,26 +16841,18 @@ var HamMagazine = function HamMagazine(props) {
|
|
|
17049
16841
|
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
17050
16842
|
} else {
|
|
17051
16843
|
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
17052
|
-
|
|
17053
|
-
{ key: subIndex, href: ddRow.url },
|
|
17054
|
-
|
|
17055
|
-
'a',
|
|
17056
|
-
{ target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item nav-link' },
|
|
17057
|
-
ddRow.name
|
|
17058
|
-
)
|
|
16844
|
+
'a',
|
|
16845
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item nav-link' },
|
|
16846
|
+
ddRow.name
|
|
17059
16847
|
) : null;
|
|
17060
16848
|
}
|
|
17061
16849
|
})
|
|
17062
16850
|
) : null;
|
|
17063
16851
|
} else {
|
|
17064
16852
|
return row.url && row.name ? React__default.createElement(
|
|
17065
|
-
|
|
17066
|
-
{ key: index, href: row.url },
|
|
17067
|
-
|
|
17068
|
-
'a',
|
|
17069
|
-
{ target: row.blank ? '_blank' : '_self', className: 'nav-link' },
|
|
17070
|
-
row.name
|
|
17071
|
-
)
|
|
16853
|
+
'a',
|
|
16854
|
+
{ key: index, href: row.url, target: row.blank ? '_blank' : '_self', className: 'nav-link' },
|
|
16855
|
+
row.name
|
|
17072
16856
|
) : null;
|
|
17073
16857
|
}
|
|
17074
16858
|
})
|
|
@@ -17397,7 +17181,7 @@ var FigureComponent = function FigureComponent(_ref) {
|
|
|
17397
17181
|
var caption = node$$1.caption,
|
|
17398
17182
|
alt = node$$1.alt,
|
|
17399
17183
|
blank = node$$1.blank,
|
|
17400
|
-
link = node$$1.link,
|
|
17184
|
+
link$$1 = node$$1.link,
|
|
17401
17185
|
_node$alignment = node$$1.alignment,
|
|
17402
17186
|
alignment = _node$alignment === undefined ? 'center' : _node$alignment;
|
|
17403
17187
|
var _node$widthP = node$$1.widthP,
|
|
@@ -17465,7 +17249,7 @@ var FigureComponent = function FigureComponent(_ref) {
|
|
|
17465
17249
|
setOpenImgSrc(urlFor$1(node$$1, client).url());
|
|
17466
17250
|
setOpenImg(true);
|
|
17467
17251
|
} },
|
|
17468
|
-
link ? React__default.createElement(
|
|
17252
|
+
link$$1 ? React__default.createElement(
|
|
17469
17253
|
'a',
|
|
17470
17254
|
{ target: blank ? '_blank' : '_self' },
|
|
17471
17255
|
React__default.createElement(reactBootstrap.Figure.Image, { style: { width: '100%' }, className: 'figure-image', ref: imgElement, onLoad: loadImg, src: urlFor$1(node$$1, client).url(), alt: alt && alt }),
|
|
@@ -24170,8 +23954,8 @@ function getConfig(props$$1, defaultProps, showWarning) {
|
|
|
24170
23954
|
config = (0, _deepmerge["default"])(config, _defineProperty({}, key, props$$1[p]));
|
|
24171
23955
|
|
|
24172
23956
|
if (showWarning) {
|
|
24173
|
-
var link = 'https://github.com/CookPete/react-player#config-prop';
|
|
24174
|
-
var message = "ReactPlayer: %c".concat(p, " %cis deprecated, please use the config prop instead \u2013 ").concat(link);
|
|
23957
|
+
var link$$1 = 'https://github.com/CookPete/react-player#config-prop';
|
|
23958
|
+
var message = "ReactPlayer: %c".concat(p, " %cis deprecated, please use the config prop instead \u2013 ").concat(link$$1);
|
|
24175
23959
|
console.warn(message, 'font-weight: bold', '');
|
|
24176
23960
|
}
|
|
24177
23961
|
}
|
|
@@ -28854,7 +28638,7 @@ var getSerializers$1 = function getSerializers(client, pageview, videoAccountIDs
|
|
|
28854
28638
|
props.children
|
|
28855
28639
|
);
|
|
28856
28640
|
},
|
|
28857
|
-
link: function link(props) {
|
|
28641
|
+
link: function link$$1(props) {
|
|
28858
28642
|
var children = props.children,
|
|
28859
28643
|
_props$mark = props.mark,
|
|
28860
28644
|
href = _props$mark.href,
|
|
@@ -28959,21 +28743,17 @@ var Feature = function Feature(props) {
|
|
|
28959
28743
|
}
|
|
28960
28744
|
|
|
28961
28745
|
return React__default.createElement(
|
|
28962
|
-
|
|
28746
|
+
'a',
|
|
28963
28747
|
{ href: feature_link },
|
|
28964
28748
|
React__default.createElement(
|
|
28965
|
-
'
|
|
28966
|
-
|
|
28967
|
-
|
|
28968
|
-
|
|
28969
|
-
|
|
28970
|
-
|
|
28971
|
-
|
|
28972
|
-
|
|
28973
|
-
'p',
|
|
28974
|
-
{ style: { color: '#eee' } },
|
|
28975
|
-
feature_body
|
|
28976
|
-
)
|
|
28749
|
+
'h3',
|
|
28750
|
+
{ style: { color: 'white' } },
|
|
28751
|
+
feature_title
|
|
28752
|
+
),
|
|
28753
|
+
React__default.createElement(
|
|
28754
|
+
'p',
|
|
28755
|
+
{ style: { color: '#eee' } },
|
|
28756
|
+
feature_body
|
|
28977
28757
|
)
|
|
28978
28758
|
);
|
|
28979
28759
|
};
|
|
@@ -29256,25 +29036,21 @@ var Hero = function Hero(_ref) {
|
|
|
29256
29036
|
url = data.url;
|
|
29257
29037
|
|
|
29258
29038
|
return React__default.createElement(
|
|
29259
|
-
|
|
29260
|
-
{ href: '/view/
|
|
29039
|
+
'a',
|
|
29040
|
+
{ href: '/view/' + url.current },
|
|
29261
29041
|
React__default.createElement(
|
|
29262
|
-
|
|
29263
|
-
|
|
29264
|
-
React__default.createElement(
|
|
29265
|
-
reactBootstrap.Card,
|
|
29266
|
-
{
|
|
29267
|
-
title
|
|
29268
|
-
|
|
29269
|
-
|
|
29270
|
-
|
|
29271
|
-
|
|
29272
|
-
|
|
29273
|
-
summary
|
|
29274
|
-
reactBootstrap.Card.Footer,
|
|
29275
|
-
{ className: 'h6' },
|
|
29276
|
-
clean_html_1(summary)
|
|
29277
|
-
)
|
|
29042
|
+
reactBootstrap.Card,
|
|
29043
|
+
{ bsPrefix: 'hero-card' },
|
|
29044
|
+
title && React__default.createElement(
|
|
29045
|
+
reactBootstrap.Card.Header,
|
|
29046
|
+
{ className: 'h4' },
|
|
29047
|
+
title
|
|
29048
|
+
),
|
|
29049
|
+
thumbnail && client && React__default.createElement(reactBootstrap.Card.Img, { src: renderCardImage$1(thumbnail, client, imageHeight, imageWidth) }),
|
|
29050
|
+
summary && React__default.createElement(
|
|
29051
|
+
reactBootstrap.Card.Footer,
|
|
29052
|
+
{ className: 'h6' },
|
|
29053
|
+
clean_html_1(summary)
|
|
29278
29054
|
)
|
|
29279
29055
|
)
|
|
29280
29056
|
);
|
|
@@ -29393,13 +29169,9 @@ var AlphabeticList = function AlphabeticList(_ref) {
|
|
|
29393
29169
|
'li',
|
|
29394
29170
|
{ key: i },
|
|
29395
29171
|
React__default.createElement(
|
|
29396
|
-
|
|
29172
|
+
'a',
|
|
29397
29173
|
{ href: item.url },
|
|
29398
|
-
|
|
29399
|
-
'a',
|
|
29400
|
-
null,
|
|
29401
|
-
item.name
|
|
29402
|
-
)
|
|
29174
|
+
item.name
|
|
29403
29175
|
)
|
|
29404
29176
|
);
|
|
29405
29177
|
})
|
|
@@ -29524,6 +29296,8 @@ var Ustream = function Ustream(_ref) {
|
|
|
29524
29296
|
React.useEffect(function () {
|
|
29525
29297
|
try {
|
|
29526
29298
|
var container = document.getElementById('ustream-container');
|
|
29299
|
+
var ustream = document.getElementById('ustream-iframe');
|
|
29300
|
+
ustream.setAttribute('src', src);
|
|
29527
29301
|
|
|
29528
29302
|
if (close) {
|
|
29529
29303
|
var closeBtn = document.querySelector('.ustream-close');
|
|
@@ -29578,7 +29352,6 @@ var Ustream = function Ustream(_ref) {
|
|
|
29578
29352
|
),
|
|
29579
29353
|
React__default.createElement('iframe', {
|
|
29580
29354
|
id: 'ustream-iframe',
|
|
29581
|
-
src: src,
|
|
29582
29355
|
webkitallowfullscreen: 'true',
|
|
29583
29356
|
allowFullScreen: true,
|
|
29584
29357
|
frameBorder: 'no',
|
|
@@ -29606,41 +29379,37 @@ var fbsHero = function fbsHero(props) {
|
|
|
29606
29379
|
'div',
|
|
29607
29380
|
{ className: 'article-hero' },
|
|
29608
29381
|
React__default.createElement(
|
|
29609
|
-
|
|
29610
|
-
{ href: '/view/
|
|
29382
|
+
'a',
|
|
29383
|
+
{ href: '/view/' + topArticle.url.current },
|
|
29611
29384
|
React__default.createElement(
|
|
29612
|
-
'
|
|
29613
|
-
|
|
29385
|
+
'div',
|
|
29386
|
+
{ className: 'fbs-top-article' },
|
|
29387
|
+
React__default.createElement(
|
|
29388
|
+
'div',
|
|
29389
|
+
{ className: 'fbs-top-article--img' },
|
|
29390
|
+
React__default.createElement('img', { src: urlFor(topArticle.thumbnail.asset).width(600).url(), alt: topArticle.thumbnail.asset.originalFileName })
|
|
29391
|
+
),
|
|
29614
29392
|
React__default.createElement(
|
|
29615
29393
|
'div',
|
|
29616
|
-
{ className: 'fbs-top-article' },
|
|
29394
|
+
{ className: 'fbs-top-article--body' },
|
|
29617
29395
|
React__default.createElement(
|
|
29618
|
-
'
|
|
29619
|
-
|
|
29620
|
-
|
|
29396
|
+
'h1',
|
|
29397
|
+
null,
|
|
29398
|
+
topArticle.title
|
|
29621
29399
|
),
|
|
29622
29400
|
React__default.createElement(
|
|
29623
|
-
'
|
|
29624
|
-
|
|
29625
|
-
|
|
29626
|
-
|
|
29627
|
-
|
|
29628
|
-
|
|
29629
|
-
|
|
29630
|
-
|
|
29631
|
-
'p',
|
|
29632
|
-
null,
|
|
29633
|
-
moment(topArticle.published).format('MMMM DD, YYYY hh:mma')
|
|
29634
|
-
),
|
|
29401
|
+
'p',
|
|
29402
|
+
null,
|
|
29403
|
+
moment(topArticle.published).format('MMMM DD, YYYY hh:mma')
|
|
29404
|
+
),
|
|
29405
|
+
React__default.createElement(
|
|
29406
|
+
'p',
|
|
29407
|
+
null,
|
|
29408
|
+
'By ',
|
|
29635
29409
|
React__default.createElement(
|
|
29636
|
-
'
|
|
29410
|
+
'b',
|
|
29637
29411
|
null,
|
|
29638
|
-
|
|
29639
|
-
React__default.createElement(
|
|
29640
|
-
'b',
|
|
29641
|
-
null,
|
|
29642
|
-
topArticle.authorMapping[0].displayName
|
|
29643
|
-
)
|
|
29412
|
+
topArticle.authorMapping[0].displayName
|
|
29644
29413
|
)
|
|
29645
29414
|
)
|
|
29646
29415
|
)
|
|
@@ -29651,34 +29420,30 @@ var fbsHero = function fbsHero(props) {
|
|
|
29651
29420
|
{ className: 'fbs-sub-article-container' },
|
|
29652
29421
|
subArticles.map(function (article, index) {
|
|
29653
29422
|
return React__default.createElement(
|
|
29654
|
-
|
|
29655
|
-
{ key: index, href: '/view/' + article.url.current },
|
|
29423
|
+
'a',
|
|
29424
|
+
{ key: index, href: '/view/' + article.url.current, className: 'fbs-sub-article' },
|
|
29425
|
+
React__default.createElement('img', { src: urlFor(article.thumbnail.asset).width(250).url() }),
|
|
29656
29426
|
React__default.createElement(
|
|
29657
|
-
'
|
|
29658
|
-
|
|
29659
|
-
React__default.createElement('img', { src: urlFor(article.thumbnail.asset).width(250).url() }),
|
|
29427
|
+
'div',
|
|
29428
|
+
null,
|
|
29660
29429
|
React__default.createElement(
|
|
29661
|
-
'
|
|
29430
|
+
'h2',
|
|
29431
|
+
{ className: 'fbs-sub-article--title' },
|
|
29432
|
+
article.title
|
|
29433
|
+
),
|
|
29434
|
+
React__default.createElement(
|
|
29435
|
+
'p',
|
|
29662
29436
|
null,
|
|
29437
|
+
moment(article.published).format('MMMM DD, YYYY hh:mma')
|
|
29438
|
+
),
|
|
29439
|
+
React__default.createElement(
|
|
29440
|
+
'p',
|
|
29441
|
+
null,
|
|
29442
|
+
'By ',
|
|
29663
29443
|
React__default.createElement(
|
|
29664
|
-
'
|
|
29665
|
-
{ className: 'fbs-sub-article--title' },
|
|
29666
|
-
article.title
|
|
29667
|
-
),
|
|
29668
|
-
React__default.createElement(
|
|
29669
|
-
'p',
|
|
29670
|
-
null,
|
|
29671
|
-
moment(article.published).format('MMMM DD, YYYY hh:mma')
|
|
29672
|
-
),
|
|
29673
|
-
React__default.createElement(
|
|
29674
|
-
'p',
|
|
29444
|
+
'b',
|
|
29675
29445
|
null,
|
|
29676
|
-
|
|
29677
|
-
React__default.createElement(
|
|
29678
|
-
'b',
|
|
29679
|
-
null,
|
|
29680
|
-
topArticle.authorMapping[0].displayName
|
|
29681
|
-
)
|
|
29446
|
+
topArticle.authorMapping[0].displayName
|
|
29682
29447
|
)
|
|
29683
29448
|
)
|
|
29684
29449
|
)
|
|
@@ -29725,42 +29490,30 @@ var HorizontalHero = function HorizontalHero(props) {
|
|
|
29725
29490
|
'div',
|
|
29726
29491
|
{ className: 'horizontal-hero-inner' },
|
|
29727
29492
|
React__default.createElement(
|
|
29728
|
-
|
|
29729
|
-
{ href: '/view/
|
|
29730
|
-
React__default.createElement(
|
|
29731
|
-
'a',
|
|
29732
|
-
{ className: 'horizontal-hero-img' },
|
|
29733
|
-
React__default.createElement('img', { src: urlFor(topArticle.thumbnail.asset).width(350).url() })
|
|
29734
|
-
)
|
|
29493
|
+
'a',
|
|
29494
|
+
{ href: '/view/' + topArticle.url.current, className: 'horizontal-hero-img' },
|
|
29495
|
+
React__default.createElement('img', { src: urlFor(topArticle.thumbnail.asset).width(350).url() })
|
|
29735
29496
|
),
|
|
29736
29497
|
React__default.createElement(
|
|
29737
29498
|
'div',
|
|
29738
29499
|
{ className: 'horizontal-articles-wrap' },
|
|
29739
29500
|
React__default.createElement(
|
|
29740
|
-
|
|
29741
|
-
{ href: topArticle.url.current },
|
|
29501
|
+
'a',
|
|
29502
|
+
{ href: topArticle.url.current, className: 'horizontal-article' },
|
|
29742
29503
|
React__default.createElement(
|
|
29743
|
-
'
|
|
29744
|
-
|
|
29745
|
-
|
|
29746
|
-
'p',
|
|
29747
|
-
null,
|
|
29748
|
-
topArticle.title
|
|
29749
|
-
)
|
|
29504
|
+
'p',
|
|
29505
|
+
null,
|
|
29506
|
+
topArticle.title
|
|
29750
29507
|
)
|
|
29751
29508
|
),
|
|
29752
29509
|
subArticles.map(function (article, index) {
|
|
29753
29510
|
return React__default.createElement(
|
|
29754
|
-
|
|
29755
|
-
{ key: index, href: '/view/
|
|
29511
|
+
'a',
|
|
29512
|
+
{ key: index, href: '/view/' + article.url.current, className: 'horizontal-article' },
|
|
29756
29513
|
React__default.createElement(
|
|
29757
|
-
'
|
|
29758
|
-
|
|
29759
|
-
|
|
29760
|
-
'p',
|
|
29761
|
-
null,
|
|
29762
|
-
article.title
|
|
29763
|
-
)
|
|
29514
|
+
'p',
|
|
29515
|
+
null,
|
|
29516
|
+
article.title
|
|
29764
29517
|
)
|
|
29765
29518
|
);
|
|
29766
29519
|
})
|
|
@@ -29770,20 +29523,16 @@ var HorizontalHero = function HorizontalHero(props) {
|
|
|
29770
29523
|
'div',
|
|
29771
29524
|
{ className: 'horizontal-view-more' },
|
|
29772
29525
|
React__default.createElement(
|
|
29773
|
-
|
|
29526
|
+
'a',
|
|
29774
29527
|
{ href: props.linkTo },
|
|
29528
|
+
'View More ',
|
|
29529
|
+
heroTitle,
|
|
29530
|
+
' ',
|
|
29531
|
+
' ',
|
|
29775
29532
|
React__default.createElement(
|
|
29776
|
-
'
|
|
29533
|
+
'span',
|
|
29777
29534
|
null,
|
|
29778
|
-
|
|
29779
|
-
heroTitle,
|
|
29780
|
-
' ',
|
|
29781
|
-
' ',
|
|
29782
|
-
React__default.createElement(
|
|
29783
|
-
'span',
|
|
29784
|
-
null,
|
|
29785
|
-
React__default.createElement(FaLongArrowAltRight, null)
|
|
29786
|
-
)
|
|
29535
|
+
React__default.createElement(FaLongArrowAltRight, null)
|
|
29787
29536
|
)
|
|
29788
29537
|
)
|
|
29789
29538
|
),
|
|
@@ -29807,41 +29556,37 @@ var OncliveHero = function OncliveHero(props) {
|
|
|
29807
29556
|
{ className: 'article-group--container' },
|
|
29808
29557
|
props.dataRecord.map(function (article, index) {
|
|
29809
29558
|
return React__default.createElement(
|
|
29810
|
-
|
|
29811
|
-
{ key: index, href: '/view/
|
|
29559
|
+
'a',
|
|
29560
|
+
{ key: index, href: '/view/' + article.url.current, className: 'article-group' },
|
|
29812
29561
|
React__default.createElement(
|
|
29813
|
-
'
|
|
29814
|
-
|
|
29562
|
+
'figure',
|
|
29563
|
+
null,
|
|
29564
|
+
React__default.createElement('img', { src: urlFor(article.thumbnail.asset).width(250).url(), alt: article.title })
|
|
29565
|
+
),
|
|
29566
|
+
React__default.createElement(
|
|
29567
|
+
'div',
|
|
29568
|
+
{ className: 'article-group--body' },
|
|
29815
29569
|
React__default.createElement(
|
|
29816
|
-
'
|
|
29570
|
+
'h2',
|
|
29817
29571
|
null,
|
|
29818
|
-
|
|
29572
|
+
article.title
|
|
29819
29573
|
),
|
|
29820
|
-
React__default.createElement(
|
|
29821
|
-
|
|
29822
|
-
|
|
29574
|
+
React__default.createElement('div', null),
|
|
29575
|
+
moment(article.published).format('MMMM Do YYYY, h:mma'),
|
|
29576
|
+
article.authorMapping[0].displayName && React__default.createElement(
|
|
29577
|
+
'p',
|
|
29578
|
+
{ className: 'mb-2' },
|
|
29579
|
+
'By ',
|
|
29823
29580
|
React__default.createElement(
|
|
29824
|
-
'
|
|
29581
|
+
'b',
|
|
29825
29582
|
null,
|
|
29826
|
-
article.
|
|
29827
|
-
),
|
|
29828
|
-
React__default.createElement('div', null),
|
|
29829
|
-
moment(article.published).format('MMMM Do YYYY, h:mma'),
|
|
29830
|
-
article.authorMapping[0].displayName && React__default.createElement(
|
|
29831
|
-
'p',
|
|
29832
|
-
{ className: 'mb-2' },
|
|
29833
|
-
'By ',
|
|
29834
|
-
React__default.createElement(
|
|
29835
|
-
'b',
|
|
29836
|
-
null,
|
|
29837
|
-
article.authorMapping[0].displayName
|
|
29838
|
-
)
|
|
29839
|
-
),
|
|
29840
|
-
React__default.createElement(
|
|
29841
|
-
'p',
|
|
29842
|
-
{ className: 'article-group--summary' },
|
|
29843
|
-
article.summary
|
|
29583
|
+
article.authorMapping[0].displayName
|
|
29844
29584
|
)
|
|
29585
|
+
),
|
|
29586
|
+
React__default.createElement(
|
|
29587
|
+
'p',
|
|
29588
|
+
{ className: 'article-group--summary' },
|
|
29589
|
+
article.summary
|
|
29845
29590
|
)
|
|
29846
29591
|
)
|
|
29847
29592
|
);
|
|
@@ -29868,35 +29613,31 @@ var OncliveLargeHero = function OncliveLargeHero(props) {
|
|
|
29868
29613
|
'div',
|
|
29869
29614
|
{ className: 'article-hero-container' },
|
|
29870
29615
|
React__default.createElement(
|
|
29871
|
-
|
|
29872
|
-
{ href: '/view/
|
|
29616
|
+
'a',
|
|
29617
|
+
{ href: '/view/' + topArticle.url.current, className: 'top-article' },
|
|
29873
29618
|
React__default.createElement(
|
|
29874
|
-
'
|
|
29875
|
-
|
|
29619
|
+
'figure',
|
|
29620
|
+
null,
|
|
29621
|
+
React__default.createElement('img', {
|
|
29622
|
+
src: urlFor(topArticle.thumbnail.asset).width(500).url() })
|
|
29623
|
+
),
|
|
29624
|
+
React__default.createElement(
|
|
29625
|
+
'div',
|
|
29626
|
+
{ className: 'top-article--body' },
|
|
29876
29627
|
React__default.createElement(
|
|
29877
|
-
'
|
|
29628
|
+
'h1',
|
|
29878
29629
|
null,
|
|
29879
|
-
|
|
29880
|
-
src: urlFor(topArticle.thumbnail.asset).width(500).url() })
|
|
29630
|
+
topArticle.title
|
|
29881
29631
|
),
|
|
29882
29632
|
React__default.createElement(
|
|
29883
|
-
'
|
|
29884
|
-
|
|
29885
|
-
|
|
29886
|
-
|
|
29887
|
-
|
|
29888
|
-
|
|
29889
|
-
|
|
29890
|
-
|
|
29891
|
-
'p',
|
|
29892
|
-
null,
|
|
29893
|
-
moment(topArticle.published).format('MMMM DD, YYYY hh:mma')
|
|
29894
|
-
),
|
|
29895
|
-
React__default.createElement(
|
|
29896
|
-
'p',
|
|
29897
|
-
null,
|
|
29898
|
-
clean_html_1(topArticle.summary)
|
|
29899
|
-
)
|
|
29633
|
+
'p',
|
|
29634
|
+
null,
|
|
29635
|
+
moment(topArticle.published).format('MMMM DD, YYYY hh:mma')
|
|
29636
|
+
),
|
|
29637
|
+
React__default.createElement(
|
|
29638
|
+
'p',
|
|
29639
|
+
null,
|
|
29640
|
+
clean_html_1(topArticle.summary)
|
|
29900
29641
|
)
|
|
29901
29642
|
)
|
|
29902
29643
|
),
|
|
@@ -29905,38 +29646,34 @@ var OncliveLargeHero = function OncliveLargeHero(props) {
|
|
|
29905
29646
|
{ className: 'sub-articles-container' },
|
|
29906
29647
|
subArticles && subArticles.map(function (article, index) {
|
|
29907
29648
|
return React__default.createElement(
|
|
29908
|
-
|
|
29909
|
-
{ href: '/view/
|
|
29649
|
+
'a',
|
|
29650
|
+
{ href: '/view/' + article.url.current, className: 'sub-article' },
|
|
29910
29651
|
React__default.createElement(
|
|
29911
|
-
'
|
|
29912
|
-
|
|
29652
|
+
'figure',
|
|
29653
|
+
null,
|
|
29654
|
+
React__default.createElement('img', {
|
|
29655
|
+
src: urlFor(article.thumbnail.asset).width(250).url(),
|
|
29656
|
+
alt: article.title
|
|
29657
|
+
})
|
|
29658
|
+
),
|
|
29659
|
+
React__default.createElement(
|
|
29660
|
+
'div',
|
|
29661
|
+
{ className: 'sub-article--body' },
|
|
29913
29662
|
React__default.createElement(
|
|
29914
|
-
'
|
|
29663
|
+
'h2',
|
|
29915
29664
|
null,
|
|
29916
|
-
|
|
29917
|
-
src: urlFor(article.thumbnail.asset).width(250).url(),
|
|
29918
|
-
alt: article.title
|
|
29919
|
-
})
|
|
29665
|
+
article.title
|
|
29920
29666
|
),
|
|
29921
|
-
React__default.createElement(
|
|
29922
|
-
|
|
29923
|
-
|
|
29667
|
+
React__default.createElement('div', null),
|
|
29668
|
+
moment(article.published).format('MMMM Do YYYY, h:mma'),
|
|
29669
|
+
article.authorMapping[0].displayName && React__default.createElement(
|
|
29670
|
+
'p',
|
|
29671
|
+
{ className: 'mb-2' },
|
|
29672
|
+
'By ',
|
|
29924
29673
|
React__default.createElement(
|
|
29925
|
-
'
|
|
29674
|
+
'b',
|
|
29926
29675
|
null,
|
|
29927
|
-
article.
|
|
29928
|
-
),
|
|
29929
|
-
React__default.createElement('div', null),
|
|
29930
|
-
moment(article.published).format('MMMM Do YYYY, h:mma'),
|
|
29931
|
-
article.authorMapping[0].displayName && React__default.createElement(
|
|
29932
|
-
'p',
|
|
29933
|
-
{ className: 'mb-2' },
|
|
29934
|
-
'By ',
|
|
29935
|
-
React__default.createElement(
|
|
29936
|
-
'b',
|
|
29937
|
-
null,
|
|
29938
|
-
article.authorMapping[0].displayName
|
|
29939
|
-
)
|
|
29676
|
+
article.authorMapping[0].displayName
|
|
29940
29677
|
)
|
|
29941
29678
|
)
|
|
29942
29679
|
)
|
|
@@ -29979,29 +29716,21 @@ var VerticalHero = function VerticalHero(props) {
|
|
|
29979
29716
|
),
|
|
29980
29717
|
props.dataRecord.map(function (article, index) {
|
|
29981
29718
|
return index === 0 ? React__default.createElement(
|
|
29982
|
-
|
|
29983
|
-
{ href: '/view/
|
|
29719
|
+
'a',
|
|
29720
|
+
{ href: '/view/' + article.url.current, key: index, className: 'vertical-article' },
|
|
29721
|
+
React__default.createElement('img', { src: urlFor(article.thumbnail.asset).width(500).url() }),
|
|
29984
29722
|
React__default.createElement(
|
|
29985
|
-
'
|
|
29986
|
-
|
|
29987
|
-
|
|
29988
|
-
React__default.createElement(
|
|
29989
|
-
'h2',
|
|
29990
|
-
null,
|
|
29991
|
-
article.title
|
|
29992
|
-
)
|
|
29723
|
+
'h2',
|
|
29724
|
+
null,
|
|
29725
|
+
article.title
|
|
29993
29726
|
)
|
|
29994
29727
|
) : React__default.createElement(
|
|
29995
|
-
|
|
29996
|
-
{ href: '/view/
|
|
29728
|
+
'a',
|
|
29729
|
+
{ href: '/view/' + article.url.current, className: 'vertical-article' },
|
|
29997
29730
|
React__default.createElement(
|
|
29998
|
-
'
|
|
29999
|
-
|
|
30000
|
-
|
|
30001
|
-
'h2',
|
|
30002
|
-
null,
|
|
30003
|
-
article.title
|
|
30004
|
-
)
|
|
29731
|
+
'h2',
|
|
29732
|
+
null,
|
|
29733
|
+
article.title
|
|
30005
29734
|
)
|
|
30006
29735
|
);
|
|
30007
29736
|
})
|
|
@@ -30027,38 +29756,34 @@ var YahooHero = function YahooHero(props) {
|
|
|
30027
29756
|
'div',
|
|
30028
29757
|
{ className: 'article-hero' },
|
|
30029
29758
|
React__default.createElement(
|
|
30030
|
-
|
|
30031
|
-
{ href: '/view/
|
|
29759
|
+
'a',
|
|
29760
|
+
{ href: '/view/' + topArticle.url.current },
|
|
30032
29761
|
React__default.createElement(
|
|
30033
|
-
'
|
|
30034
|
-
|
|
29762
|
+
'div',
|
|
29763
|
+
{ className: 'yh-top-article' },
|
|
30035
29764
|
React__default.createElement(
|
|
30036
29765
|
'div',
|
|
30037
|
-
{ className: 'yh-top-article' },
|
|
29766
|
+
{ className: 'yh-top-article--img' },
|
|
29767
|
+
React__default.createElement('img', { src: urlFor(topArticle.thumbnail.asset).width(600).url(), alt: topArticle.thumbnail.asset.originalFileName })
|
|
29768
|
+
),
|
|
29769
|
+
React__default.createElement('div', { className: 'yh-top-article--blur' }),
|
|
29770
|
+
React__default.createElement(
|
|
29771
|
+
'div',
|
|
29772
|
+
{ className: 'yh-top-article--body' },
|
|
30038
29773
|
React__default.createElement(
|
|
30039
|
-
'
|
|
30040
|
-
|
|
30041
|
-
|
|
29774
|
+
'h1',
|
|
29775
|
+
null,
|
|
29776
|
+
topArticle.title
|
|
30042
29777
|
),
|
|
30043
|
-
React__default.createElement('div', { className: 'yh-top-article--blur' }),
|
|
30044
29778
|
React__default.createElement(
|
|
30045
|
-
'
|
|
30046
|
-
|
|
30047
|
-
|
|
30048
|
-
|
|
30049
|
-
|
|
30050
|
-
|
|
30051
|
-
|
|
30052
|
-
|
|
30053
|
-
'p',
|
|
30054
|
-
null,
|
|
30055
|
-
moment(topArticle.published).format('MMMM DD, YYYY hh:mma')
|
|
30056
|
-
),
|
|
30057
|
-
React__default.createElement(
|
|
30058
|
-
'p',
|
|
30059
|
-
null,
|
|
30060
|
-
clean_html_1(topArticle.summary)
|
|
30061
|
-
)
|
|
29779
|
+
'p',
|
|
29780
|
+
null,
|
|
29781
|
+
moment(topArticle.published).format('MMMM DD, YYYY hh:mma')
|
|
29782
|
+
),
|
|
29783
|
+
React__default.createElement(
|
|
29784
|
+
'p',
|
|
29785
|
+
null,
|
|
29786
|
+
clean_html_1(topArticle.summary)
|
|
30062
29787
|
)
|
|
30063
29788
|
)
|
|
30064
29789
|
)
|
|
@@ -30068,31 +29793,27 @@ var YahooHero = function YahooHero(props) {
|
|
|
30068
29793
|
{ className: 'yh-sub-article-container' },
|
|
30069
29794
|
subArticles.map(function (article, index) {
|
|
30070
29795
|
return React__default.createElement(
|
|
30071
|
-
|
|
30072
|
-
{ href: '/view/' + article.url.current },
|
|
29796
|
+
'a',
|
|
29797
|
+
{ href: '/view/' + article.url.current, key: index, className: 'yh-sub-article' },
|
|
29798
|
+
React__default.createElement('img', { src: urlFor(article.thumbnail.asset).width(250).url() }),
|
|
30073
29799
|
React__default.createElement(
|
|
30074
|
-
'
|
|
30075
|
-
{
|
|
30076
|
-
|
|
30077
|
-
|
|
30078
|
-
|
|
30079
|
-
|
|
30080
|
-
|
|
30081
|
-
),
|
|
30082
|
-
|
|
30083
|
-
|
|
30084
|
-
|
|
30085
|
-
|
|
30086
|
-
|
|
29800
|
+
'h6',
|
|
29801
|
+
{ className: 'yh-sub-article--title' },
|
|
29802
|
+
article.title
|
|
29803
|
+
),
|
|
29804
|
+
React__default.createElement(
|
|
29805
|
+
'p',
|
|
29806
|
+
{ className: 'yh-sub-article--info' },
|
|
29807
|
+
moment(article.published).format('MMMM DD, YYYY hh:mma')
|
|
29808
|
+
),
|
|
29809
|
+
React__default.createElement(
|
|
29810
|
+
'p',
|
|
29811
|
+
{ className: 'yh-sub-article--info' },
|
|
29812
|
+
'By ',
|
|
30087
29813
|
React__default.createElement(
|
|
30088
|
-
'
|
|
30089
|
-
|
|
30090
|
-
|
|
30091
|
-
React__default.createElement(
|
|
30092
|
-
'b',
|
|
30093
|
-
null,
|
|
30094
|
-
article.authorMapping[0].displayName
|
|
30095
|
-
)
|
|
29814
|
+
'b',
|
|
29815
|
+
null,
|
|
29816
|
+
article.authorMapping[0].displayName
|
|
30096
29817
|
)
|
|
30097
29818
|
)
|
|
30098
29819
|
);
|
|
@@ -30159,37 +29880,33 @@ var RelatedContent = function RelatedContent(props) {
|
|
|
30159
29880
|
{ className: 'related-articles-container' },
|
|
30160
29881
|
dataRecord.map(function (article, index) {
|
|
30161
29882
|
return React__default.createElement(
|
|
30162
|
-
|
|
30163
|
-
{ href: '/view/
|
|
29883
|
+
'a',
|
|
29884
|
+
{ href: '/view/' + article.url.current, className: 'related-article' },
|
|
30164
29885
|
React__default.createElement(
|
|
30165
|
-
'
|
|
30166
|
-
|
|
30167
|
-
React__default.createElement(
|
|
30168
|
-
|
|
30169
|
-
|
|
30170
|
-
|
|
30171
|
-
|
|
30172
|
-
|
|
30173
|
-
|
|
29886
|
+
'figure',
|
|
29887
|
+
null,
|
|
29888
|
+
React__default.createElement('img', {
|
|
29889
|
+
src: article.thumbnail ? urlFor(article.thumbnail.asset).width(500).url() : defaultImage,
|
|
29890
|
+
alt: article.title
|
|
29891
|
+
})
|
|
29892
|
+
),
|
|
29893
|
+
React__default.createElement(
|
|
29894
|
+
'div',
|
|
29895
|
+
{ className: 'related-article-body' },
|
|
29896
|
+
React__default.createElement('h4', { dangerouslySetInnerHTML: { __html: article.title } }),
|
|
29897
|
+
props.showPublished && React__default.createElement(
|
|
29898
|
+
'p',
|
|
29899
|
+
{ className: 'pb-0 mb-0' },
|
|
29900
|
+
moment(article.published).format('MMMM DD, YYYY hh:mma')
|
|
30174
29901
|
),
|
|
30175
|
-
React__default.createElement(
|
|
30176
|
-
'
|
|
30177
|
-
|
|
30178
|
-
|
|
30179
|
-
|
|
30180
|
-
'
|
|
30181
|
-
{ className: 'pb-0 mb-0' },
|
|
30182
|
-
moment(article.published).format('MMMM DD, YYYY hh:mma')
|
|
30183
|
-
),
|
|
30184
|
-
props.showAuthor && article.authorMapping && article.authorMapping[0] && React__default.createElement(
|
|
30185
|
-
'p',
|
|
29902
|
+
props.showAuthor && article.authorMapping && article.authorMapping[0] && React__default.createElement(
|
|
29903
|
+
'p',
|
|
29904
|
+
null,
|
|
29905
|
+
'By ',
|
|
29906
|
+
React__default.createElement(
|
|
29907
|
+
'b',
|
|
30186
29908
|
null,
|
|
30187
|
-
|
|
30188
|
-
React__default.createElement(
|
|
30189
|
-
'b',
|
|
30190
|
-
null,
|
|
30191
|
-
article.authorMapping[0].displayName
|
|
30192
|
-
)
|
|
29909
|
+
article.authorMapping[0].displayName
|
|
30193
29910
|
)
|
|
30194
29911
|
)
|
|
30195
29912
|
)
|
|
@@ -30268,13 +29985,9 @@ var ConferenceArticleCard = function ConferenceArticleCard(props) {
|
|
|
30268
29985
|
'p',
|
|
30269
29986
|
{ className: 'mb-1 conference-group' },
|
|
30270
29987
|
React__default.createElement(
|
|
30271
|
-
|
|
30272
|
-
{ href: '/conference/
|
|
30273
|
-
|
|
30274
|
-
'a',
|
|
30275
|
-
{ alt: data.thumbnail.alt || data.title },
|
|
30276
|
-
data.documentGroup.name
|
|
30277
|
-
)
|
|
29988
|
+
'a',
|
|
29989
|
+
{ href: '/conference/' + data.documentGroup.identifier.current, alt: data.thumbnail.alt || data.title },
|
|
29990
|
+
data.documentGroup.name
|
|
30278
29991
|
)
|
|
30279
29992
|
),
|
|
30280
29993
|
React__default.createElement('p', { className: 'pt-2 card-text', dangerouslySetInnerHTML: { __html: data.summary } })
|