..
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119 | import React from 'react';
import styled, { keyframes, css } from 'styled-components';
const pulseAnimation = keyframes`
0%, 100% { background-color: var(--global-primary-skeleton); }
50% { background-color: var(--global-secondary-skeleton); }
`;
const popInAnimation = keyframes`
0%, 100% { opacity: 0; transform: scale(0.95); }
50% { opacity: 1; transform: scale(1); }
75% { opacity: 0.5; transform: scale(1); }
`;
const playerPopInAnimation = keyframes`
0% { opacity: 0; transform: scale(0.9); }
100% { opacity: 1; transform: scale(1); }
`;
const SkeletonPulse = keyframes`
0%, 100% { background-color: var(--global-primary-skeleton); }
25%, 75% { background-color: var(--global-secondary-skeleton); }
50% { background-color: var(--global-primary-skeleton); }
`;
const animationMixin = css`
animation:
${pulseAnimation} 1s infinite,
${popInAnimation} 1s infinite;
`;
const BaseSkeleton = styled.div`
background: var(--global-primary-skeleton);
border-radius: var(--global-border-radius);
`;
const SkeletonCards = styled(BaseSkeleton)`
width: 100%;
height: 0;
padding-top: calc(100% * 184 / 133);
margin-bottom: 5.1rem;
${animationMixin};
`;
const SkeletonTitle = styled(BaseSkeleton)`
height: 1.4rem;
margin: 0.5rem 0 0.3rem;
${animationMixin};
`;
const SkeletonDetails = styled(SkeletonTitle)`
height: 1.3rem;
width: 80%;
`;
export const SkeletonCard = React.memo(() => (
<SkeletonCards>
<SkeletonTitle />
<SkeletonDetails />
<SkeletonDetails />
</SkeletonCards>
));
const SkeletonSlides = styled(BaseSkeleton)<{ loading?: boolean }>`
width: 100%;
height: 24rem;
${({ loading }) => !loading && animationMixin}
@media (max-width: 1000px) {
height: 20rem;
}
@media (max-width: 500px) {
height: 18rem;
}
`;
export const SkeletonSlide: React.FC<{ loading?: boolean }> = React.memo(
({ loading }) => (
<SkeletonSlides loading={loading}>
<SkeletonImage />
</SkeletonSlides>
),
);
const SkeletonContainer = styled.div`
display: flex;
flex-direction: column;
gap: 0.2rem;
`;
const PlayerSkeleton = styled(BaseSkeleton)`
position: relative;
padding-top: 56.25%;
width: 100%;
height: 0;
animation:
${SkeletonPulse} 2.5s ease-in-out infinite,
${playerPopInAnimation} 0.5s ease-in-out;
`;
const PlayerButtons = styled(BaseSkeleton)`
position: relative;
height: 23px;
width: 100%;
animation:
${SkeletonPulse} 2.5s ease-in-out infinite,
${playerPopInAnimation} 0.5s ease-in-out;
`;
export const SkeletonPlayer = React.memo(() => (
<SkeletonContainer>
<PlayerSkeleton />
<PlayerButtons />
</SkeletonContainer>
));
const SkeletonImage = styled(BaseSkeleton)`
width: 100%;
height: 100%;
`;
|
|