jfs-components 0.0.68 → 0.0.69
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/CHANGELOG.md +17 -0
- package/lib/commonjs/components/MediaCard/MediaCard.js +91 -55
- package/lib/commonjs/icons/registry.js +1 -1
- package/lib/module/components/MediaCard/MediaCard.js +91 -55
- package/lib/module/icons/registry.js +1 -1
- package/lib/typescript/src/components/MediaCard/MediaCard.d.ts +36 -10
- package/lib/typescript/src/icons/registry.d.ts +1 -1
- package/package.json +2 -1
- package/src/components/MediaCard/MediaCard.tsx +117 -48
- package/src/icons/registry.ts +1 -1
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import React, { createContext, useContext } from 'react';
|
|
4
4
|
import { View, Text, StyleSheet, Platform } from 'react-native';
|
|
5
|
+
import { BlurView } from 'expo-blur';
|
|
5
6
|
import { getVariableByName } from '../../design-tokens/figma-variables-resolver';
|
|
6
7
|
import Image from '../Image/Image';
|
|
7
8
|
import { EMPTY_MODES } from '../../utils/react-utils';
|
|
@@ -10,11 +11,20 @@ const MediaCardContext = /*#__PURE__*/createContext({});
|
|
|
10
11
|
/**
|
|
11
12
|
* MediaCard component implementation from Figma node 1241:4140.
|
|
12
13
|
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
* the
|
|
17
|
-
*
|
|
14
|
+
* Layout contract (important — read this before editing):
|
|
15
|
+
* - The **background** (image or custom `media`) is the only child in
|
|
16
|
+
* normal flow. It dictates the card's height — typically via
|
|
17
|
+
* `aspectRatio` on the inner `<Image>`. There is no `minHeight`.
|
|
18
|
+
* - `Header` and `Footer` are **absolutely positioned overlays**:
|
|
19
|
+
* - `Header` pinned to top-left/right with safe padding.
|
|
20
|
+
* - `Footer` pinned to bottom-left/right with `zIndex: 2` so it sits
|
|
21
|
+
* on top of the header (and on top of the image). This guarantees
|
|
22
|
+
* the footer never moves no matter how many lines the title wraps
|
|
23
|
+
* to — the title may overflow the header bounds, but the footer's
|
|
24
|
+
* position is a function of the card box, not the title.
|
|
25
|
+
* - `pointerEvents="box-none"` is applied so taps still land on the
|
|
26
|
+
* interactive elements inside the overlays without the wrapper itself
|
|
27
|
+
* capturing them.
|
|
18
28
|
*/
|
|
19
29
|
export function MediaCard({
|
|
20
30
|
imageSource,
|
|
@@ -25,21 +35,11 @@ export function MediaCard({
|
|
|
25
35
|
style
|
|
26
36
|
}) {
|
|
27
37
|
const radius = parseFloat(getVariableByName('cardMedia/radius', modes) || '24');
|
|
28
|
-
|
|
29
|
-
// No magic minHeight, no aspectRatio on the container. The card simply
|
|
30
|
-
// hugs whatever the background renders at: the <Image> sits in normal
|
|
31
|
-
// flow with `aspectRatio: ratio`, so its rendered height becomes the
|
|
32
|
-
// card's height. Header and Footer are absolutely positioned overlays
|
|
33
|
-
// and don't contribute to layout.
|
|
34
38
|
const containerStyle = {
|
|
35
39
|
borderRadius: radius,
|
|
36
40
|
overflow: 'hidden',
|
|
37
41
|
position: 'relative'
|
|
38
42
|
};
|
|
39
|
-
|
|
40
|
-
// `media` wins as an escape hatch (gradient/video/etc.). Otherwise we
|
|
41
|
-
// delegate to the shared <Image> for image-source backgrounds. The
|
|
42
|
-
// background renders in normal flow so its height drives the card.
|
|
43
43
|
const background = media ?? (imageSource != null ? /*#__PURE__*/_jsx(Image, {
|
|
44
44
|
imageSource: imageSource,
|
|
45
45
|
ratio: ratio,
|
|
@@ -67,33 +67,26 @@ export function MediaCard({
|
|
|
67
67
|
// ----------------------------------------------------------------------------
|
|
68
68
|
|
|
69
69
|
/**
|
|
70
|
-
* Header
|
|
71
|
-
*
|
|
72
|
-
*
|
|
70
|
+
* Header overlay — pinned to the top of the card. Title content can wrap to
|
|
71
|
+
* any number of lines without affecting the footer's position; if it grows
|
|
72
|
+
* taller than the card, the card's `overflow: 'hidden'` clips it.
|
|
73
|
+
*
|
|
74
|
+
* Default `padding: 16` matches the Figma "title wrap" spec.
|
|
73
75
|
*/
|
|
74
76
|
export function Header({
|
|
75
77
|
children,
|
|
76
78
|
style
|
|
77
79
|
}) {
|
|
78
|
-
// NOTE: the previous `flex: 1` shorthand expanded on Yoga (Android) to
|
|
79
|
-
// `{ flexGrow: 1, flexShrink: 1, flexBasis: 0 }`. With `flexBasis: 0` the
|
|
80
|
-
// Header has *no intrinsic floor*, so when MediaCard is placed inside a
|
|
81
|
-
// height-unbounded parent — e.g. a Carousel slot whose contentContainer
|
|
82
|
-
// is `alignItems: 'flex-start'` — Yoga's first measurement pass sizes
|
|
83
|
-
// the Header at 0 and the card's overall height becomes non-deterministic.
|
|
84
|
-
// On native this manifests as the card "over-stretching" vertically (the
|
|
85
|
-
// same Yoga foot-gun we fixed in `CardCTA` rightWrap). Web hides it
|
|
86
|
-
// because browsers honor `min-height: auto` on flex items. Use explicit
|
|
87
|
-
// `flexGrow / flexShrink: 0 / flexBasis: 'auto'` so the Header is sized
|
|
88
|
-
// to its content as a floor and only grows to consume the extra space
|
|
89
|
-
// contributed by `MediaCard`'s `minHeight: 308`.
|
|
90
80
|
return /*#__PURE__*/_jsx(View, {
|
|
91
81
|
style: [{
|
|
82
|
+
position: 'absolute',
|
|
83
|
+
top: 0,
|
|
84
|
+
left: 0,
|
|
85
|
+
right: 0,
|
|
92
86
|
padding: 16,
|
|
93
|
-
|
|
94
|
-
flexShrink: 0,
|
|
95
|
-
flexBasis: 'auto'
|
|
87
|
+
zIndex: 1
|
|
96
88
|
}, style],
|
|
89
|
+
pointerEvents: "box-none",
|
|
97
90
|
children: children
|
|
98
91
|
});
|
|
99
92
|
}
|
|
@@ -128,8 +121,23 @@ export function Title({
|
|
|
128
121
|
}
|
|
129
122
|
|
|
130
123
|
/**
|
|
131
|
-
* Glass Footer
|
|
132
|
-
*
|
|
124
|
+
* Glass Footer — pinned to the bottom of the card, **always** on top of the
|
|
125
|
+
* Header (`zIndex: 2`).
|
|
126
|
+
*
|
|
127
|
+
* Glass implementation (April 2026 best practice for RN/Expo):
|
|
128
|
+
* - **iOS:** `expo-blur`'s `BlurView` renders a native `UIVisualEffectView`,
|
|
129
|
+
* so this is a real OS-level live blur of whatever's underneath. We pick
|
|
130
|
+
* `tint` from the Figma "Contrast Context" mode (`'dark'` / `'light'`)
|
|
131
|
+
* and a moderate intensity that matches the Figma `blur/minimal` token.
|
|
132
|
+
* - **Android:** the same `BlurView` with `experimentalBlurMethod="dimezisBlurView"`
|
|
133
|
+
* enables the hardware-accelerated `RenderEffect` blur on Android 12+.
|
|
134
|
+
* On older Android, expo-blur cleanly degrades to a tinted scrim — we
|
|
135
|
+
* layer a subtle noise/grain overlay on top so the surface still reads
|
|
136
|
+
* as "frosted glass" instead of a flat color.
|
|
137
|
+
* - **Web:** `BlurView` on web is implemented as `backdrop-filter: blur()`,
|
|
138
|
+
* which already worked in the previous version. Same component, same API.
|
|
139
|
+
*
|
|
140
|
+
* Tokens still drive the tint color, blur radius and inner spacing.
|
|
133
141
|
*/
|
|
134
142
|
export function Footer({
|
|
135
143
|
children,
|
|
@@ -142,28 +150,56 @@ export function Footer({
|
|
|
142
150
|
const paddingHorizontal = parseFloat(getVariableByName('cardMedia/footer/padding/horizontal', modes) || '16');
|
|
143
151
|
const paddingVertical = parseFloat(getVariableByName('cardMedia/footer/padding/vertical', modes) || '12');
|
|
144
152
|
|
|
145
|
-
//
|
|
146
|
-
//
|
|
147
|
-
//
|
|
148
|
-
//
|
|
153
|
+
// Figma tokens:
|
|
154
|
+
// blur/minimal/background -> tint laid over the native blur
|
|
155
|
+
// blur/minimal -> blur radius (px). expo-blur takes a 0-100
|
|
156
|
+
// "intensity" instead of px; we map roughly:
|
|
157
|
+
// intensity ≈ clamp(radius * 1.7, 0, 100).
|
|
149
158
|
const glassBgColor = getVariableByName('blur/minimal/background', modes) || '#1414174a';
|
|
150
159
|
const blurRadius = parseFloat(getVariableByName('blur/minimal', modes) || '29');
|
|
151
|
-
const
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
160
|
+
const intensity = Math.max(0, Math.min(100, Math.round(blurRadius * 1.7)));
|
|
161
|
+
|
|
162
|
+
// Pick the iOS/Android material tint from "Contrast Context" mode so the
|
|
163
|
+
// glass adapts to dark/light backgrounds the same way the Figma tokens do.
|
|
164
|
+
const contrast = modes['Contrast Context'] || 'on dark';
|
|
165
|
+
const tint = contrast === 'on light' ? 'light' : 'dark';
|
|
166
|
+
return /*#__PURE__*/_jsxs(View, {
|
|
167
|
+
style: [{
|
|
168
|
+
position: 'absolute',
|
|
169
|
+
left: 0,
|
|
170
|
+
right: 0,
|
|
171
|
+
bottom: 0,
|
|
172
|
+
overflow: 'hidden',
|
|
173
|
+
// zIndex 2 ensures Footer always paints above Header,
|
|
174
|
+
// regardless of which is rendered first in the tree.
|
|
175
|
+
zIndex: 2
|
|
176
|
+
}, style],
|
|
177
|
+
pointerEvents: "box-none",
|
|
178
|
+
children: [/*#__PURE__*/_jsx(BlurView, {
|
|
179
|
+
style: StyleSheet.absoluteFill,
|
|
180
|
+
tint: tint,
|
|
181
|
+
intensity: intensity,
|
|
182
|
+
experimentalBlurMethod: "dimezisBlurView"
|
|
183
|
+
}), /*#__PURE__*/_jsx(View, {
|
|
184
|
+
style: [StyleSheet.absoluteFill, {
|
|
185
|
+
backgroundColor: glassBgColor
|
|
186
|
+
}]
|
|
187
|
+
}), Platform.OS === 'android' ? /*#__PURE__*/_jsx(View, {
|
|
188
|
+
style: [StyleSheet.absoluteFill, {
|
|
189
|
+
backgroundColor: 'rgba(255,255,255,0.03)',
|
|
190
|
+
opacity: 0.6
|
|
191
|
+
}],
|
|
192
|
+
pointerEvents: "none"
|
|
193
|
+
}) : null, /*#__PURE__*/_jsx(View, {
|
|
194
|
+
style: {
|
|
195
|
+
flexDirection: 'row',
|
|
196
|
+
alignItems: 'center',
|
|
197
|
+
gap,
|
|
198
|
+
paddingHorizontal,
|
|
199
|
+
paddingVertical
|
|
200
|
+
},
|
|
201
|
+
children: children
|
|
202
|
+
})]
|
|
167
203
|
});
|
|
168
204
|
}
|
|
169
205
|
|