@riosst100/pwa-marketplace 1.8.7 → 1.8.8
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/package.json +1 -1
- package/src/components/CustomSubCategoryPage/subCategoryPage.js +5 -3
- package/src/components/FilterTopBackup/CustomFilters/customFilters.js +2 -0
- package/src/components/NonSportCardsSets/index.js +2 -0
- package/src/components/NonSportCardsSets/nonSportCardsSets.js +257 -0
- package/src/components/NonSportCardsSets/nonSportCardsSets.module.css +76 -0
- package/src/components/NonSportCardsSets/nonSportCardsSets.shimmer.js +50 -0
- package/src/components/SportCardsSets/sportCardsSets.js +65 -153
- package/src/components/SubCategory/customSubCategory.js +19 -9
- package/src/overwrites/venia-ui/lib/RootComponents/Category/category.js +5 -1
- package/src/overwrites/venia-ui/lib/RootComponents/Category/categoryContent.js +27 -5
- package/src/overwrites/venia-ui/lib/components/Breadcrumbs/breadcrumbs.js +12 -3
- package/src/overwrites/venia-ui/lib/components/FilterModal/CurrentFilters/currentFilters.js +2 -2
- package/src/talons/NonSportCardsSets/nonSportCardsSets.gql.js +59 -0
- package/src/talons/NonSportCardsSets/useNonSportCardsSets.js +238 -0
- package/src/talons/SportCardsSets/sportCardsSets.gql.js +2 -2
- package/src/talons/SportCardsSets/useSportCardsSets.js +9 -9
package/package.json
CHANGED
|
@@ -69,12 +69,14 @@ const SubCategoryPage = props => {
|
|
|
69
69
|
setSearchQuery('')
|
|
70
70
|
}
|
|
71
71
|
|
|
72
|
+
const title = category ? 'All ' + category.parent[0].name : '';
|
|
73
|
+
|
|
72
74
|
return (
|
|
73
75
|
<Fragment>
|
|
74
|
-
<StoreTitle>{
|
|
75
|
-
<Breadcrumbs categoryId={categoryId} customPage={
|
|
76
|
+
<StoreTitle>{title}</StoreTitle>
|
|
77
|
+
<Breadcrumbs categoryId={categoryId} customPage={title} />
|
|
76
78
|
<h1 className='mx-auto relative block text-xl font-bold text-center pt-10 pb-4'>
|
|
77
|
-
{
|
|
79
|
+
{title}
|
|
78
80
|
</h1>
|
|
79
81
|
<div className='border border-gray-100 px-6'>
|
|
80
82
|
{dataResult ? (
|
|
@@ -54,6 +54,8 @@ const CustomFilters = props => {
|
|
|
54
54
|
// removeItem({ group, item });
|
|
55
55
|
// }, [group, item, removeItem]);
|
|
56
56
|
|
|
57
|
+
// console.log(customFiltersData)
|
|
58
|
+
|
|
57
59
|
// create elements and params at the same time for efficiency
|
|
58
60
|
const filterElements = useMemo(() => {
|
|
59
61
|
const elements = [];
|
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
import React, { Fragment, useEffect, useMemo, useState } from 'react';
|
|
2
|
+
import ErrorView from '@magento/venia-ui/lib/components/ErrorView';
|
|
3
|
+
import { StoreTitle, Meta } from '@magento/venia-ui/lib/components/Head';
|
|
4
|
+
import { useNonSportCardsSets } from '@riosst100/pwa-marketplace/src/talons/NonSportCardsSets/useNonSportCardsSets';
|
|
5
|
+
import { Link, useLocation } from 'react-router-dom';
|
|
6
|
+
import resourceUrl from '@magento/peregrine/lib/util/makeUrl';
|
|
7
|
+
import defaultClasses from './nonSportCardsSets.module.css';
|
|
8
|
+
import { useStyle } from '@magento/venia-ui/lib/classify';
|
|
9
|
+
import cn from 'classnames';
|
|
10
|
+
import Divider from '@riosst100/pwa-marketplace/src/components/Divider';
|
|
11
|
+
import { NonSportCardsSetsShimmer } from '@riosst100/pwa-marketplace/src/components/NonSportCardsSets';
|
|
12
|
+
import CustomSortBy from '@riosst100/pwa-marketplace/src/components/CustomSortBy';
|
|
13
|
+
import ArraySearchInput from '@riosst100/pwa-marketplace/src/components/ArraySearchInput';
|
|
14
|
+
import { useCustomSort } from '@riosst100/pwa-marketplace/src/hooks/useCustomSort';
|
|
15
|
+
import Breadcrumbs from '@magento/venia-ui/lib/components/Breadcrumbs';
|
|
16
|
+
|
|
17
|
+
const NonSportCardsSets = props => {
|
|
18
|
+
const { categoryId } = props
|
|
19
|
+
|
|
20
|
+
const { location } = globalThis;
|
|
21
|
+
|
|
22
|
+
const query = new URLSearchParams(location.search);
|
|
23
|
+
const activeParam = query.get('active_tab') || null;
|
|
24
|
+
|
|
25
|
+
const [active, setActive] = useState('all');
|
|
26
|
+
const [activeTab, setActiveTab] = useState(activeParam ? activeParam : 'leagues');
|
|
27
|
+
const [activeBrand, setActiveBrand] = useState('all');
|
|
28
|
+
|
|
29
|
+
const [searchQuery, setSearchQuery] = useState('');
|
|
30
|
+
|
|
31
|
+
let availableLeagues = [];
|
|
32
|
+
let availableBrands = [];
|
|
33
|
+
|
|
34
|
+
const shopby = query.get('shopby') || null;
|
|
35
|
+
const setType = query.get('set_type') || null;
|
|
36
|
+
const brandsFilter = query.get('sc_brands[filter]') || null;
|
|
37
|
+
|
|
38
|
+
let defaultSort = {
|
|
39
|
+
sortText: 'All (A-Z)',
|
|
40
|
+
value: 'all'
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
if (shopby == "release_year") {
|
|
44
|
+
defaultSort = {
|
|
45
|
+
sortText: 'All (By Year)',
|
|
46
|
+
value: 'date'
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
const sortProps = useCustomSort({ sortFromSearch: false, defaultSort: defaultSort});
|
|
51
|
+
|
|
52
|
+
const [currentSort] = sortProps;
|
|
53
|
+
|
|
54
|
+
const [sortBy, setSortBy] = useState({
|
|
55
|
+
sortText: 'All (A-Z)',
|
|
56
|
+
value: 'all'
|
|
57
|
+
});
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
const classes = useStyle(defaultClasses);
|
|
61
|
+
|
|
62
|
+
const talonProps = useNonSportCardsSets({ searchQuery, setActive, currentSort, shopby, setType, categoryId, activeTab });
|
|
63
|
+
|
|
64
|
+
const { error, loading, nonSportCardsSets, categoryUrlSuffix, categoryUrlKey, productType, filteredNonSportCardsSets, availableGroups, category } = talonProps;
|
|
65
|
+
|
|
66
|
+
console.log(filteredNonSportCardsSets)
|
|
67
|
+
|
|
68
|
+
if (loading && !nonSportCardsSets)
|
|
69
|
+
return <NonSportCardsSetsShimmer />;
|
|
70
|
+
if (error && !nonSportCardsSets) return <ErrorView />;
|
|
71
|
+
|
|
72
|
+
if (!nonSportCardsSets && !loading && !error) {
|
|
73
|
+
return <NonSportCardsSetsShimmer />;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
const setsLengthArr = [];
|
|
77
|
+
|
|
78
|
+
const newNonSportCardsSets = searchQuery ? filteredNonSportCardsSets : nonSportCardsSets;
|
|
79
|
+
|
|
80
|
+
// useEffect(() => {
|
|
81
|
+
if (newNonSportCardsSets && newNonSportCardsSets.length) {
|
|
82
|
+
newNonSportCardsSets.map((setRelease, index) => {
|
|
83
|
+
const { group, sets } = setRelease;
|
|
84
|
+
|
|
85
|
+
setsLengthArr[group] = sets.length
|
|
86
|
+
})
|
|
87
|
+
}
|
|
88
|
+
// }, [nonSportCardsSets])
|
|
89
|
+
|
|
90
|
+
if (nonSportCardsSets && nonSportCardsSets.length) {
|
|
91
|
+
nonSportCardsSets.map((setRelease, index) => {
|
|
92
|
+
const { group, sets } = setRelease;
|
|
93
|
+
// if (active == 'all' || active != "all" && active == group) {
|
|
94
|
+
if (sets.length) {
|
|
95
|
+
sets.map((set, index) => {
|
|
96
|
+
if (set.sc_league) {
|
|
97
|
+
if (!availableLeagues.includes(set.sc_league)) {
|
|
98
|
+
availableLeagues.push(set.sc_league)
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
})
|
|
102
|
+
}
|
|
103
|
+
// }
|
|
104
|
+
})
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
const splitToNChunks = (array, n) => {
|
|
108
|
+
let result = [];
|
|
109
|
+
for (let i = n; i > 0; i--) {
|
|
110
|
+
result.push(array.splice(0, Math.ceil(array.length / i)));
|
|
111
|
+
}
|
|
112
|
+
return result;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
let shopbyUrl = "release";
|
|
116
|
+
|
|
117
|
+
const { search } = useLocation();
|
|
118
|
+
|
|
119
|
+
let filterSearchArr = search ? search.split('&') : [];
|
|
120
|
+
filterSearchArr = filterSearchArr.filter(function(data) {
|
|
121
|
+
return !data.includes('shopby');
|
|
122
|
+
})
|
|
123
|
+
let filterSearch = filterSearchArr.join('&')
|
|
124
|
+
|
|
125
|
+
if (!filterSearch.includes('?')) {
|
|
126
|
+
filterSearch = '?'+filterSearch;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
let additionalFilter = '';
|
|
130
|
+
|
|
131
|
+
const setRelases = newNonSportCardsSets && newNonSportCardsSets.length && newNonSportCardsSets.map((setRelease, index) => {
|
|
132
|
+
const { group, sets } = setRelease;
|
|
133
|
+
|
|
134
|
+
const setsResult = [];
|
|
135
|
+
|
|
136
|
+
if (sets.length) {
|
|
137
|
+
sets.map((set, index) => {
|
|
138
|
+
const { set_name, option_id, release_year } = set;
|
|
139
|
+
|
|
140
|
+
// const categoryUrl = resourceUrl(
|
|
141
|
+
// `/${category?.url_path}${categoryUrlSuffix || ''}?sc_${category?.url_key}_${shopbyUrl}[filter]=${set_name},${option_id}`
|
|
142
|
+
// );
|
|
143
|
+
const filter = 'nsc_' + category?.url_key + '_' + shopbyUrl + '[filter]=' + set_name + ',' + option_id;
|
|
144
|
+
const params = filterSearch ? filterSearch + '&' + filter + additionalFilter : '?' + filter + additionalFilter;
|
|
145
|
+
|
|
146
|
+
const categoryUrl = resourceUrl(
|
|
147
|
+
`/${category.url_path}${categoryUrlSuffix || ''}${params}`
|
|
148
|
+
);
|
|
149
|
+
|
|
150
|
+
setsResult.push(<li className='list-none'>
|
|
151
|
+
<Link to={categoryUrl} className="hover_bg-darkblue-900 hover_text-white w-full block text-[14px] py-[2px] px-2">
|
|
152
|
+
{set_name}
|
|
153
|
+
</Link>
|
|
154
|
+
</li>)
|
|
155
|
+
})
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
let setsResultSplitted = [];
|
|
159
|
+
if (active == group || newNonSportCardsSets.length == 1) {
|
|
160
|
+
setsResultSplitted = splitToNChunks(setsResult, 3);
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
return (
|
|
164
|
+
<>
|
|
165
|
+
{active == "all" && newNonSportCardsSets.length > 1 ?
|
|
166
|
+
<div className={cn('singles_group-wrapper mb-4 px-2 inline-block', classes.singlesGroupWrapper)}>
|
|
167
|
+
<div className='singles_item_group_letter text-xl font-semibold border-b border-gray-100 pb-1 mb-2' >
|
|
168
|
+
{group}
|
|
169
|
+
</div>
|
|
170
|
+
<div className={cn('singles_item-list flex flex-col')}>{setsResult}</div>
|
|
171
|
+
</div> : ''}
|
|
172
|
+
{active == group || newNonSportCardsSets.length == 1 ? setsResultSplitted && setsResultSplitted.length && setsResultSplitted.map((setsResult, index) =>
|
|
173
|
+
<div key={index} className={cn('singles_group-wrapper mb-4 px-2 inline-block', classes.singlesGroupWrapper)}>
|
|
174
|
+
{index == 0 ? <div className='singles_item_group_letter text-xl font-semibold border-b border-gray-100 pb-1 mb-2'>{group}</div> :
|
|
175
|
+
<div className='singles_item_group_letter text-xl font-semibold pb-1 mb-2' style={{"marginTop":"35px"}}></div>}
|
|
176
|
+
<div className={cn('singles_item-list flex flex-col')}>{setsResult}</div>
|
|
177
|
+
</div>
|
|
178
|
+
)
|
|
179
|
+
: ''}
|
|
180
|
+
</>
|
|
181
|
+
);
|
|
182
|
+
});
|
|
183
|
+
|
|
184
|
+
const handleActive = (val) => {
|
|
185
|
+
setActive(val);
|
|
186
|
+
|
|
187
|
+
setSearchQuery('')
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
const handleActiveTab = (val) => {
|
|
191
|
+
setActiveTab(val);
|
|
192
|
+
setSearchQuery('')
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
const handleActiveFilter = (val) => {
|
|
196
|
+
setActiveFilter(val);
|
|
197
|
+
|
|
198
|
+
setActive('all');
|
|
199
|
+
|
|
200
|
+
setSearchQuery('')
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
let brandName = brandsFilter ? brandsFilter.split(',')[0] : '';
|
|
204
|
+
|
|
205
|
+
let title = "By Release/Set";
|
|
206
|
+
|
|
207
|
+
return (
|
|
208
|
+
<Fragment>
|
|
209
|
+
<StoreTitle>{title}</StoreTitle>
|
|
210
|
+
<Breadcrumbs categoryId={categoryId} customPage={title} />
|
|
211
|
+
{shopby != "release_year" && productType != "expansion_sets" && <h1 className='mx-auto relative block text-xl font-bold text-center pt-10 pb-4'>
|
|
212
|
+
{title}
|
|
213
|
+
</h1>}
|
|
214
|
+
<ul className={classes.nav}>
|
|
215
|
+
{availableGroups.map((group, index) => (
|
|
216
|
+
<li key={index} className={classes.nav_item}>
|
|
217
|
+
<button
|
|
218
|
+
onClick={() => {
|
|
219
|
+
handleActive(group)
|
|
220
|
+
}}
|
|
221
|
+
>
|
|
222
|
+
{active == group ? <b>{group}</b> : group}
|
|
223
|
+
</button>
|
|
224
|
+
</li>
|
|
225
|
+
))}
|
|
226
|
+
<li className={classes.nav_item}>
|
|
227
|
+
<button
|
|
228
|
+
onClick={() => {
|
|
229
|
+
handleActive('all')
|
|
230
|
+
}}
|
|
231
|
+
>
|
|
232
|
+
{active == 'all' ? <b>All</b> : 'All'}
|
|
233
|
+
</button>
|
|
234
|
+
</li>
|
|
235
|
+
</ul>
|
|
236
|
+
<div className='border border-gray-100 px-6'>
|
|
237
|
+
{nonSportCardsSets ? (
|
|
238
|
+
<div
|
|
239
|
+
className={classes.toolbar}
|
|
240
|
+
>
|
|
241
|
+
<div style={{"width":"35%"}}><ArraySearchInput active={active} searchQuery={searchQuery} placeholder="Search sets..." isOpen={true} setSearchQuery={setSearchQuery} /></div>
|
|
242
|
+
{/* <CustomSortBy sortProps={sortProps} availableSortMethods={availableSortBy} /> */}
|
|
243
|
+
</div>
|
|
244
|
+
) : ''}
|
|
245
|
+
<Divider className="mb-5 px-4 mt-5" />
|
|
246
|
+
<section className='singles-container'>
|
|
247
|
+
<div className={cn('singles-wrapper block -mx-4', classes.singlesWrapper)}>
|
|
248
|
+
{newNonSportCardsSets && newNonSportCardsSets.length ? setRelases : (searchQuery ? <div className='singles_group-wrapper mb-4 px-2 inline-block w-full'>No sets found for <b>{searchQuery}</b> search query.</div> : <div className='singles_group-wrapper mb-4 px-2 inline-block w-full'>No sets found.</div>)}
|
|
249
|
+
</div>
|
|
250
|
+
</section>
|
|
251
|
+
</div>
|
|
252
|
+
</Fragment>
|
|
253
|
+
);
|
|
254
|
+
return '';
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
export default NonSportCardsSets;
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
.nav {
|
|
2
|
+
composes: flex from global;
|
|
3
|
+
composes: flex-wrap from global;
|
|
4
|
+
margin: 50px 0 30px 0;
|
|
5
|
+
composes: gap-[10px] from global;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.nav_item {
|
|
9
|
+
composes: px-4 from global;
|
|
10
|
+
composes: py-2 from global;
|
|
11
|
+
composes: transition-colors from global;
|
|
12
|
+
composes: duration-150 from global;
|
|
13
|
+
composes: border from global;
|
|
14
|
+
composes: border-solid from global;
|
|
15
|
+
composes: leading-normal from global;
|
|
16
|
+
composes: text-base from global;
|
|
17
|
+
composes: text-colorDefault from global;
|
|
18
|
+
composes: bg-white from global;
|
|
19
|
+
composes: border-gray-100 from global;
|
|
20
|
+
border-radius: 5px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.toolbar {
|
|
24
|
+
composes: relative from global;
|
|
25
|
+
composes: ml-2xs from global;
|
|
26
|
+
display: flex;
|
|
27
|
+
justify-content: space-between;
|
|
28
|
+
margin-top: 20px;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.tabs {
|
|
32
|
+
composes: flex from global;
|
|
33
|
+
composes: flex-wrap from global;
|
|
34
|
+
composes: mt-3 from global;
|
|
35
|
+
composes: gap-[15px] from global;
|
|
36
|
+
margin-bottom: 30px;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.tabs_item {
|
|
40
|
+
composes: px-4 from global;
|
|
41
|
+
composes: py-2 from global;
|
|
42
|
+
composes: transition-colors from global;
|
|
43
|
+
composes: duration-150 from global;
|
|
44
|
+
composes: border from global;
|
|
45
|
+
composes: border-solid from global;
|
|
46
|
+
composes: leading-normal from global;
|
|
47
|
+
composes: text-base from global;
|
|
48
|
+
composes: text-colorDefault from global;
|
|
49
|
+
composes: bg-white from global;
|
|
50
|
+
composes: border-gray-100 from global;
|
|
51
|
+
border-radius: 5px;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.singlesWrapper {
|
|
55
|
+
column-count: 1;
|
|
56
|
+
display: flex;
|
|
57
|
+
width: 100%;
|
|
58
|
+
flex-wrap: wrap;
|
|
59
|
+
flex-direction: row;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.singlesGroupWrapper {
|
|
63
|
+
width: 100%;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
@media screen and (min-width: 768px) {
|
|
67
|
+
.singlesGroupWrapper {
|
|
68
|
+
width: 50%;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
@media screen and (min-width: 1023px) {
|
|
73
|
+
.singlesGroupWrapper {
|
|
74
|
+
width: 33.33%;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { shape, string } from 'prop-types';
|
|
3
|
+
import { useStyle } from '@magento/venia-ui/lib/classify';
|
|
4
|
+
|
|
5
|
+
import Shimmer from '@magento/venia-ui/lib/components/Shimmer';
|
|
6
|
+
import defaultClasses from './nonSportCardsSets.module.css';
|
|
7
|
+
import cn from 'classnames';
|
|
8
|
+
import Divider from '@riosst100/pwa-marketplace/src/components/Divider';
|
|
9
|
+
|
|
10
|
+
const NonSportCardsSets = props => {
|
|
11
|
+
const classes = useStyle(defaultClasses, props.classes);
|
|
12
|
+
|
|
13
|
+
return (
|
|
14
|
+
<>
|
|
15
|
+
<h1 className='mx-auto relative block text-xl font-bold text-center pt-10 pb-4'><Shimmer width="25%" height="6vh" /></h1>
|
|
16
|
+
<div className='border border-gray-100 px-6'>
|
|
17
|
+
<center>
|
|
18
|
+
<section className='single_list-indexing-container relative m-auto pt-5'>
|
|
19
|
+
<Shimmer width="95%" height="6vh" />
|
|
20
|
+
</section>
|
|
21
|
+
</center>
|
|
22
|
+
<Divider className="mb-5 px-4" />
|
|
23
|
+
<section className='singles-container'>
|
|
24
|
+
<div className={cn('singles-wrapper block -mx-4', classes.singlesWrapper)}>
|
|
25
|
+
<div className='singles_group-wrapper mb-4 px-2 inline-block w-full'>
|
|
26
|
+
<div className='singles_item_group_letter text-xl font-semibold border-b border-gray-100 pb-1 mb-2' ><Shimmer width="95%" height="100vh" /></div>
|
|
27
|
+
</div>
|
|
28
|
+
<div className='singles_group-wrapper mb-4 px-2 inline-block w-full'>
|
|
29
|
+
<div className='singles_item_group_letter text-xl font-semibold border-b border-gray-100 pb-1 mb-2' ><Shimmer width="95%" height="100vh" /></div>
|
|
30
|
+
</div>
|
|
31
|
+
<div className='singles_group-wrapper mb-4 px-2 inline-block w-full'>
|
|
32
|
+
<div className='singles_item_group_letter text-xl font-semibold border-b border-gray-100 pb-1 mb-2' ><Shimmer width="95%" height="100vh" /></div>
|
|
33
|
+
</div>
|
|
34
|
+
<div className='singles_group-wrapper mb-4 px-2 inline-block w-full'>
|
|
35
|
+
<div className='singles_item_group_letter text-xl font-semibold border-b border-gray-100 pb-1 mb-2' ><Shimmer width="95%" height="100vh" /></div>
|
|
36
|
+
</div>
|
|
37
|
+
<div className='singles_group-wrapper mb-4 px-2 inline-block w-full'>
|
|
38
|
+
<div className='singles_item_group_letter text-xl font-semibold border-b border-gray-100 pb-1 mb-2' ><Shimmer width="95%" height="100vh" /></div>
|
|
39
|
+
</div>
|
|
40
|
+
<div className='singles_group-wrapper mb-4 px-2 inline-block w-full'>
|
|
41
|
+
<div className='singles_item_group_letter text-xl font-semibold border-b border-gray-100 pb-1 mb-2' ><Shimmer width="95%" height="100vh" /></div>
|
|
42
|
+
</div>
|
|
43
|
+
</div>
|
|
44
|
+
</section>
|
|
45
|
+
</div>
|
|
46
|
+
</>
|
|
47
|
+
);
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
export default NonSportCardsSets;
|