@mjhls/mjh-framework 1.0.190 → 1.0.191
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 +513 -801
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +518 -806
- 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
|
})
|
|
@@ -29606,41 +29378,37 @@ var fbsHero = function fbsHero(props) {
|
|
|
29606
29378
|
'div',
|
|
29607
29379
|
{ className: 'article-hero' },
|
|
29608
29380
|
React__default.createElement(
|
|
29609
|
-
|
|
29610
|
-
{ href: '/view/
|
|
29381
|
+
'a',
|
|
29382
|
+
{ href: '/view/' + topArticle.url.current },
|
|
29611
29383
|
React__default.createElement(
|
|
29612
|
-
'
|
|
29613
|
-
|
|
29384
|
+
'div',
|
|
29385
|
+
{ className: 'fbs-top-article' },
|
|
29386
|
+
React__default.createElement(
|
|
29387
|
+
'div',
|
|
29388
|
+
{ className: 'fbs-top-article--img' },
|
|
29389
|
+
React__default.createElement('img', { src: urlFor(topArticle.thumbnail.asset).width(600).url(), alt: topArticle.thumbnail.asset.originalFileName })
|
|
29390
|
+
),
|
|
29614
29391
|
React__default.createElement(
|
|
29615
29392
|
'div',
|
|
29616
|
-
{ className: 'fbs-top-article' },
|
|
29393
|
+
{ className: 'fbs-top-article--body' },
|
|
29617
29394
|
React__default.createElement(
|
|
29618
|
-
'
|
|
29619
|
-
|
|
29620
|
-
|
|
29395
|
+
'h1',
|
|
29396
|
+
null,
|
|
29397
|
+
topArticle.title
|
|
29621
29398
|
),
|
|
29622
29399
|
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
|
-
),
|
|
29400
|
+
'p',
|
|
29401
|
+
null,
|
|
29402
|
+
moment(topArticle.published).format('MMMM DD, YYYY hh:mma')
|
|
29403
|
+
),
|
|
29404
|
+
React__default.createElement(
|
|
29405
|
+
'p',
|
|
29406
|
+
null,
|
|
29407
|
+
'By ',
|
|
29635
29408
|
React__default.createElement(
|
|
29636
|
-
'
|
|
29409
|
+
'b',
|
|
29637
29410
|
null,
|
|
29638
|
-
|
|
29639
|
-
React__default.createElement(
|
|
29640
|
-
'b',
|
|
29641
|
-
null,
|
|
29642
|
-
topArticle.authorMapping[0].displayName
|
|
29643
|
-
)
|
|
29411
|
+
topArticle.authorMapping[0].displayName
|
|
29644
29412
|
)
|
|
29645
29413
|
)
|
|
29646
29414
|
)
|
|
@@ -29651,34 +29419,30 @@ var fbsHero = function fbsHero(props) {
|
|
|
29651
29419
|
{ className: 'fbs-sub-article-container' },
|
|
29652
29420
|
subArticles.map(function (article, index) {
|
|
29653
29421
|
return React__default.createElement(
|
|
29654
|
-
|
|
29655
|
-
{ key: index, href: '/view/' + article.url.current },
|
|
29422
|
+
'a',
|
|
29423
|
+
{ key: index, href: '/view/' + article.url.current, className: 'fbs-sub-article' },
|
|
29424
|
+
React__default.createElement('img', { src: urlFor(article.thumbnail.asset).width(250).url() }),
|
|
29656
29425
|
React__default.createElement(
|
|
29657
|
-
'
|
|
29658
|
-
|
|
29659
|
-
React__default.createElement('img', { src: urlFor(article.thumbnail.asset).width(250).url() }),
|
|
29426
|
+
'div',
|
|
29427
|
+
null,
|
|
29660
29428
|
React__default.createElement(
|
|
29661
|
-
'
|
|
29429
|
+
'h2',
|
|
29430
|
+
{ className: 'fbs-sub-article--title' },
|
|
29431
|
+
article.title
|
|
29432
|
+
),
|
|
29433
|
+
React__default.createElement(
|
|
29434
|
+
'p',
|
|
29662
29435
|
null,
|
|
29436
|
+
moment(article.published).format('MMMM DD, YYYY hh:mma')
|
|
29437
|
+
),
|
|
29438
|
+
React__default.createElement(
|
|
29439
|
+
'p',
|
|
29440
|
+
null,
|
|
29441
|
+
'By ',
|
|
29663
29442
|
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',
|
|
29443
|
+
'b',
|
|
29675
29444
|
null,
|
|
29676
|
-
|
|
29677
|
-
React__default.createElement(
|
|
29678
|
-
'b',
|
|
29679
|
-
null,
|
|
29680
|
-
topArticle.authorMapping[0].displayName
|
|
29681
|
-
)
|
|
29445
|
+
topArticle.authorMapping[0].displayName
|
|
29682
29446
|
)
|
|
29683
29447
|
)
|
|
29684
29448
|
)
|
|
@@ -29725,42 +29489,30 @@ var HorizontalHero = function HorizontalHero(props) {
|
|
|
29725
29489
|
'div',
|
|
29726
29490
|
{ className: 'horizontal-hero-inner' },
|
|
29727
29491
|
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
|
-
)
|
|
29492
|
+
'a',
|
|
29493
|
+
{ href: '/view/' + topArticle.url.current, className: 'horizontal-hero-img' },
|
|
29494
|
+
React__default.createElement('img', { src: urlFor(topArticle.thumbnail.asset).width(350).url() })
|
|
29735
29495
|
),
|
|
29736
29496
|
React__default.createElement(
|
|
29737
29497
|
'div',
|
|
29738
29498
|
{ className: 'horizontal-articles-wrap' },
|
|
29739
29499
|
React__default.createElement(
|
|
29740
|
-
|
|
29741
|
-
{ href: topArticle.url.current },
|
|
29500
|
+
'a',
|
|
29501
|
+
{ href: topArticle.url.current, className: 'horizontal-article' },
|
|
29742
29502
|
React__default.createElement(
|
|
29743
|
-
'
|
|
29744
|
-
|
|
29745
|
-
|
|
29746
|
-
'p',
|
|
29747
|
-
null,
|
|
29748
|
-
topArticle.title
|
|
29749
|
-
)
|
|
29503
|
+
'p',
|
|
29504
|
+
null,
|
|
29505
|
+
topArticle.title
|
|
29750
29506
|
)
|
|
29751
29507
|
),
|
|
29752
29508
|
subArticles.map(function (article, index) {
|
|
29753
29509
|
return React__default.createElement(
|
|
29754
|
-
|
|
29755
|
-
{ key: index, href: '/view/
|
|
29510
|
+
'a',
|
|
29511
|
+
{ key: index, href: '/view/' + article.url.current, className: 'horizontal-article' },
|
|
29756
29512
|
React__default.createElement(
|
|
29757
|
-
'
|
|
29758
|
-
|
|
29759
|
-
|
|
29760
|
-
'p',
|
|
29761
|
-
null,
|
|
29762
|
-
article.title
|
|
29763
|
-
)
|
|
29513
|
+
'p',
|
|
29514
|
+
null,
|
|
29515
|
+
article.title
|
|
29764
29516
|
)
|
|
29765
29517
|
);
|
|
29766
29518
|
})
|
|
@@ -29770,20 +29522,16 @@ var HorizontalHero = function HorizontalHero(props) {
|
|
|
29770
29522
|
'div',
|
|
29771
29523
|
{ className: 'horizontal-view-more' },
|
|
29772
29524
|
React__default.createElement(
|
|
29773
|
-
|
|
29525
|
+
'a',
|
|
29774
29526
|
{ href: props.linkTo },
|
|
29527
|
+
'View More ',
|
|
29528
|
+
heroTitle,
|
|
29529
|
+
' ',
|
|
29530
|
+
' ',
|
|
29775
29531
|
React__default.createElement(
|
|
29776
|
-
'
|
|
29532
|
+
'span',
|
|
29777
29533
|
null,
|
|
29778
|
-
|
|
29779
|
-
heroTitle,
|
|
29780
|
-
' ',
|
|
29781
|
-
' ',
|
|
29782
|
-
React__default.createElement(
|
|
29783
|
-
'span',
|
|
29784
|
-
null,
|
|
29785
|
-
React__default.createElement(FaLongArrowAltRight, null)
|
|
29786
|
-
)
|
|
29534
|
+
React__default.createElement(FaLongArrowAltRight, null)
|
|
29787
29535
|
)
|
|
29788
29536
|
)
|
|
29789
29537
|
),
|
|
@@ -29807,41 +29555,37 @@ var OncliveHero = function OncliveHero(props) {
|
|
|
29807
29555
|
{ className: 'article-group--container' },
|
|
29808
29556
|
props.dataRecord.map(function (article, index) {
|
|
29809
29557
|
return React__default.createElement(
|
|
29810
|
-
|
|
29811
|
-
{ key: index, href: '/view/
|
|
29558
|
+
'a',
|
|
29559
|
+
{ key: index, href: '/view/' + article.url.current, className: 'article-group' },
|
|
29812
29560
|
React__default.createElement(
|
|
29813
|
-
'
|
|
29814
|
-
|
|
29561
|
+
'figure',
|
|
29562
|
+
null,
|
|
29563
|
+
React__default.createElement('img', { src: urlFor(article.thumbnail.asset).width(250).url(), alt: article.title })
|
|
29564
|
+
),
|
|
29565
|
+
React__default.createElement(
|
|
29566
|
+
'div',
|
|
29567
|
+
{ className: 'article-group--body' },
|
|
29815
29568
|
React__default.createElement(
|
|
29816
|
-
'
|
|
29569
|
+
'h2',
|
|
29817
29570
|
null,
|
|
29818
|
-
|
|
29571
|
+
article.title
|
|
29819
29572
|
),
|
|
29820
|
-
React__default.createElement(
|
|
29821
|
-
|
|
29822
|
-
|
|
29573
|
+
React__default.createElement('div', null),
|
|
29574
|
+
moment(article.published).format('MMMM Do YYYY, h:mma'),
|
|
29575
|
+
article.authorMapping[0].displayName && React__default.createElement(
|
|
29576
|
+
'p',
|
|
29577
|
+
{ className: 'mb-2' },
|
|
29578
|
+
'By ',
|
|
29823
29579
|
React__default.createElement(
|
|
29824
|
-
'
|
|
29580
|
+
'b',
|
|
29825
29581
|
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
|
|
29582
|
+
article.authorMapping[0].displayName
|
|
29844
29583
|
)
|
|
29584
|
+
),
|
|
29585
|
+
React__default.createElement(
|
|
29586
|
+
'p',
|
|
29587
|
+
{ className: 'article-group--summary' },
|
|
29588
|
+
article.summary
|
|
29845
29589
|
)
|
|
29846
29590
|
)
|
|
29847
29591
|
);
|
|
@@ -29868,35 +29612,31 @@ var OncliveLargeHero = function OncliveLargeHero(props) {
|
|
|
29868
29612
|
'div',
|
|
29869
29613
|
{ className: 'article-hero-container' },
|
|
29870
29614
|
React__default.createElement(
|
|
29871
|
-
|
|
29872
|
-
{ href: '/view/
|
|
29615
|
+
'a',
|
|
29616
|
+
{ href: '/view/' + topArticle.url.current, className: 'top-article' },
|
|
29873
29617
|
React__default.createElement(
|
|
29874
|
-
'
|
|
29875
|
-
|
|
29618
|
+
'figure',
|
|
29619
|
+
null,
|
|
29620
|
+
React__default.createElement('img', {
|
|
29621
|
+
src: urlFor(topArticle.thumbnail.asset).width(500).url() })
|
|
29622
|
+
),
|
|
29623
|
+
React__default.createElement(
|
|
29624
|
+
'div',
|
|
29625
|
+
{ className: 'top-article--body' },
|
|
29876
29626
|
React__default.createElement(
|
|
29877
|
-
'
|
|
29627
|
+
'h1',
|
|
29878
29628
|
null,
|
|
29879
|
-
|
|
29880
|
-
src: urlFor(topArticle.thumbnail.asset).width(500).url() })
|
|
29629
|
+
topArticle.title
|
|
29881
29630
|
),
|
|
29882
29631
|
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
|
-
)
|
|
29632
|
+
'p',
|
|
29633
|
+
null,
|
|
29634
|
+
moment(topArticle.published).format('MMMM DD, YYYY hh:mma')
|
|
29635
|
+
),
|
|
29636
|
+
React__default.createElement(
|
|
29637
|
+
'p',
|
|
29638
|
+
null,
|
|
29639
|
+
clean_html_1(topArticle.summary)
|
|
29900
29640
|
)
|
|
29901
29641
|
)
|
|
29902
29642
|
),
|
|
@@ -29905,38 +29645,34 @@ var OncliveLargeHero = function OncliveLargeHero(props) {
|
|
|
29905
29645
|
{ className: 'sub-articles-container' },
|
|
29906
29646
|
subArticles && subArticles.map(function (article, index) {
|
|
29907
29647
|
return React__default.createElement(
|
|
29908
|
-
|
|
29909
|
-
{ href: '/view/
|
|
29648
|
+
'a',
|
|
29649
|
+
{ href: '/view/' + article.url.current, className: 'sub-article' },
|
|
29910
29650
|
React__default.createElement(
|
|
29911
|
-
'
|
|
29912
|
-
|
|
29651
|
+
'figure',
|
|
29652
|
+
null,
|
|
29653
|
+
React__default.createElement('img', {
|
|
29654
|
+
src: urlFor(article.thumbnail.asset).width(250).url(),
|
|
29655
|
+
alt: article.title
|
|
29656
|
+
})
|
|
29657
|
+
),
|
|
29658
|
+
React__default.createElement(
|
|
29659
|
+
'div',
|
|
29660
|
+
{ className: 'sub-article--body' },
|
|
29913
29661
|
React__default.createElement(
|
|
29914
|
-
'
|
|
29662
|
+
'h2',
|
|
29915
29663
|
null,
|
|
29916
|
-
|
|
29917
|
-
src: urlFor(article.thumbnail.asset).width(250).url(),
|
|
29918
|
-
alt: article.title
|
|
29919
|
-
})
|
|
29664
|
+
article.title
|
|
29920
29665
|
),
|
|
29921
|
-
React__default.createElement(
|
|
29922
|
-
|
|
29923
|
-
|
|
29666
|
+
React__default.createElement('div', null),
|
|
29667
|
+
moment(article.published).format('MMMM Do YYYY, h:mma'),
|
|
29668
|
+
article.authorMapping[0].displayName && React__default.createElement(
|
|
29669
|
+
'p',
|
|
29670
|
+
{ className: 'mb-2' },
|
|
29671
|
+
'By ',
|
|
29924
29672
|
React__default.createElement(
|
|
29925
|
-
'
|
|
29673
|
+
'b',
|
|
29926
29674
|
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
|
-
)
|
|
29675
|
+
article.authorMapping[0].displayName
|
|
29940
29676
|
)
|
|
29941
29677
|
)
|
|
29942
29678
|
)
|
|
@@ -29979,29 +29715,21 @@ var VerticalHero = function VerticalHero(props) {
|
|
|
29979
29715
|
),
|
|
29980
29716
|
props.dataRecord.map(function (article, index) {
|
|
29981
29717
|
return index === 0 ? React__default.createElement(
|
|
29982
|
-
|
|
29983
|
-
{ href: '/view/
|
|
29718
|
+
'a',
|
|
29719
|
+
{ href: '/view/' + article.url.current, key: index, className: 'vertical-article' },
|
|
29720
|
+
React__default.createElement('img', { src: urlFor(article.thumbnail.asset).width(500).url() }),
|
|
29984
29721
|
React__default.createElement(
|
|
29985
|
-
'
|
|
29986
|
-
|
|
29987
|
-
|
|
29988
|
-
React__default.createElement(
|
|
29989
|
-
'h2',
|
|
29990
|
-
null,
|
|
29991
|
-
article.title
|
|
29992
|
-
)
|
|
29722
|
+
'h2',
|
|
29723
|
+
null,
|
|
29724
|
+
article.title
|
|
29993
29725
|
)
|
|
29994
29726
|
) : React__default.createElement(
|
|
29995
|
-
|
|
29996
|
-
{ href: '/view/
|
|
29727
|
+
'a',
|
|
29728
|
+
{ href: '/view/' + article.url.current, className: 'vertical-article' },
|
|
29997
29729
|
React__default.createElement(
|
|
29998
|
-
'
|
|
29999
|
-
|
|
30000
|
-
|
|
30001
|
-
'h2',
|
|
30002
|
-
null,
|
|
30003
|
-
article.title
|
|
30004
|
-
)
|
|
29730
|
+
'h2',
|
|
29731
|
+
null,
|
|
29732
|
+
article.title
|
|
30005
29733
|
)
|
|
30006
29734
|
);
|
|
30007
29735
|
})
|
|
@@ -30027,38 +29755,34 @@ var YahooHero = function YahooHero(props) {
|
|
|
30027
29755
|
'div',
|
|
30028
29756
|
{ className: 'article-hero' },
|
|
30029
29757
|
React__default.createElement(
|
|
30030
|
-
|
|
30031
|
-
{ href: '/view/
|
|
29758
|
+
'a',
|
|
29759
|
+
{ href: '/view/' + topArticle.url.current },
|
|
30032
29760
|
React__default.createElement(
|
|
30033
|
-
'
|
|
30034
|
-
|
|
29761
|
+
'div',
|
|
29762
|
+
{ className: 'yh-top-article' },
|
|
30035
29763
|
React__default.createElement(
|
|
30036
29764
|
'div',
|
|
30037
|
-
{ className: 'yh-top-article' },
|
|
29765
|
+
{ className: 'yh-top-article--img' },
|
|
29766
|
+
React__default.createElement('img', { src: urlFor(topArticle.thumbnail.asset).width(600).url(), alt: topArticle.thumbnail.asset.originalFileName })
|
|
29767
|
+
),
|
|
29768
|
+
React__default.createElement('div', { className: 'yh-top-article--blur' }),
|
|
29769
|
+
React__default.createElement(
|
|
29770
|
+
'div',
|
|
29771
|
+
{ className: 'yh-top-article--body' },
|
|
30038
29772
|
React__default.createElement(
|
|
30039
|
-
'
|
|
30040
|
-
|
|
30041
|
-
|
|
29773
|
+
'h1',
|
|
29774
|
+
null,
|
|
29775
|
+
topArticle.title
|
|
30042
29776
|
),
|
|
30043
|
-
React__default.createElement('div', { className: 'yh-top-article--blur' }),
|
|
30044
29777
|
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
|
-
)
|
|
29778
|
+
'p',
|
|
29779
|
+
null,
|
|
29780
|
+
moment(topArticle.published).format('MMMM DD, YYYY hh:mma')
|
|
29781
|
+
),
|
|
29782
|
+
React__default.createElement(
|
|
29783
|
+
'p',
|
|
29784
|
+
null,
|
|
29785
|
+
clean_html_1(topArticle.summary)
|
|
30062
29786
|
)
|
|
30063
29787
|
)
|
|
30064
29788
|
)
|
|
@@ -30068,31 +29792,27 @@ var YahooHero = function YahooHero(props) {
|
|
|
30068
29792
|
{ className: 'yh-sub-article-container' },
|
|
30069
29793
|
subArticles.map(function (article, index) {
|
|
30070
29794
|
return React__default.createElement(
|
|
30071
|
-
|
|
30072
|
-
{ href: '/view/' + article.url.current },
|
|
29795
|
+
'a',
|
|
29796
|
+
{ href: '/view/' + article.url.current, key: index, className: 'yh-sub-article' },
|
|
29797
|
+
React__default.createElement('img', { src: urlFor(article.thumbnail.asset).width(250).url() }),
|
|
30073
29798
|
React__default.createElement(
|
|
30074
|
-
'
|
|
30075
|
-
{
|
|
30076
|
-
|
|
30077
|
-
|
|
30078
|
-
|
|
30079
|
-
|
|
30080
|
-
|
|
30081
|
-
),
|
|
30082
|
-
|
|
30083
|
-
|
|
30084
|
-
|
|
30085
|
-
|
|
30086
|
-
|
|
29799
|
+
'h6',
|
|
29800
|
+
{ className: 'yh-sub-article--title' },
|
|
29801
|
+
article.title
|
|
29802
|
+
),
|
|
29803
|
+
React__default.createElement(
|
|
29804
|
+
'p',
|
|
29805
|
+
{ className: 'yh-sub-article--info' },
|
|
29806
|
+
moment(article.published).format('MMMM DD, YYYY hh:mma')
|
|
29807
|
+
),
|
|
29808
|
+
React__default.createElement(
|
|
29809
|
+
'p',
|
|
29810
|
+
{ className: 'yh-sub-article--info' },
|
|
29811
|
+
'By ',
|
|
30087
29812
|
React__default.createElement(
|
|
30088
|
-
'
|
|
30089
|
-
|
|
30090
|
-
|
|
30091
|
-
React__default.createElement(
|
|
30092
|
-
'b',
|
|
30093
|
-
null,
|
|
30094
|
-
article.authorMapping[0].displayName
|
|
30095
|
-
)
|
|
29813
|
+
'b',
|
|
29814
|
+
null,
|
|
29815
|
+
article.authorMapping[0].displayName
|
|
30096
29816
|
)
|
|
30097
29817
|
)
|
|
30098
29818
|
);
|
|
@@ -30159,37 +29879,33 @@ var RelatedContent = function RelatedContent(props) {
|
|
|
30159
29879
|
{ className: 'related-articles-container' },
|
|
30160
29880
|
dataRecord.map(function (article, index) {
|
|
30161
29881
|
return React__default.createElement(
|
|
30162
|
-
|
|
30163
|
-
{ href: '/view/
|
|
29882
|
+
'a',
|
|
29883
|
+
{ href: '/view/' + article.url.current, className: 'related-article' },
|
|
30164
29884
|
React__default.createElement(
|
|
30165
|
-
'
|
|
30166
|
-
|
|
30167
|
-
React__default.createElement(
|
|
30168
|
-
|
|
30169
|
-
|
|
30170
|
-
|
|
30171
|
-
|
|
30172
|
-
|
|
30173
|
-
|
|
29885
|
+
'figure',
|
|
29886
|
+
null,
|
|
29887
|
+
React__default.createElement('img', {
|
|
29888
|
+
src: article.thumbnail ? urlFor(article.thumbnail.asset).width(500).url() : defaultImage,
|
|
29889
|
+
alt: article.title
|
|
29890
|
+
})
|
|
29891
|
+
),
|
|
29892
|
+
React__default.createElement(
|
|
29893
|
+
'div',
|
|
29894
|
+
{ className: 'related-article-body' },
|
|
29895
|
+
React__default.createElement('h4', { dangerouslySetInnerHTML: { __html: article.title } }),
|
|
29896
|
+
props.showPublished && React__default.createElement(
|
|
29897
|
+
'p',
|
|
29898
|
+
{ className: 'pb-0 mb-0' },
|
|
29899
|
+
moment(article.published).format('MMMM DD, YYYY hh:mma')
|
|
30174
29900
|
),
|
|
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',
|
|
29901
|
+
props.showAuthor && article.authorMapping && article.authorMapping[0] && React__default.createElement(
|
|
29902
|
+
'p',
|
|
29903
|
+
null,
|
|
29904
|
+
'By ',
|
|
29905
|
+
React__default.createElement(
|
|
29906
|
+
'b',
|
|
30186
29907
|
null,
|
|
30187
|
-
|
|
30188
|
-
React__default.createElement(
|
|
30189
|
-
'b',
|
|
30190
|
-
null,
|
|
30191
|
-
article.authorMapping[0].displayName
|
|
30192
|
-
)
|
|
29908
|
+
article.authorMapping[0].displayName
|
|
30193
29909
|
)
|
|
30194
29910
|
)
|
|
30195
29911
|
)
|
|
@@ -30268,13 +29984,9 @@ var ConferenceArticleCard = function ConferenceArticleCard(props) {
|
|
|
30268
29984
|
'p',
|
|
30269
29985
|
{ className: 'mb-1 conference-group' },
|
|
30270
29986
|
React__default.createElement(
|
|
30271
|
-
|
|
30272
|
-
{ href: '/conference/
|
|
30273
|
-
|
|
30274
|
-
'a',
|
|
30275
|
-
{ alt: data.thumbnail.alt || data.title },
|
|
30276
|
-
data.documentGroup.name
|
|
30277
|
-
)
|
|
29987
|
+
'a',
|
|
29988
|
+
{ href: '/conference/' + data.documentGroup.identifier.current, alt: data.thumbnail.alt || data.title },
|
|
29989
|
+
data.documentGroup.name
|
|
30278
29990
|
)
|
|
30279
29991
|
),
|
|
30280
29992
|
React__default.createElement('p', { className: 'pt-2 card-text', dangerouslySetInnerHTML: { __html: data.summary } })
|