forked from DavidHDev/react-bits
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLanyard.tsx
More file actions
356 lines (328 loc) · 11.7 KB
/
Copy pathLanyard.tsx
File metadata and controls
356 lines (328 loc) · 11.7 KB
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
/* eslint-disable react/no-unknown-property */
'use client';
import { useEffect, useMemo, useRef, useState } from 'react';
import { Canvas, extend, useFrame, type ThreeElement, type ThreeEvent } from '@react-three/fiber';
import { useGLTF, useTexture, Environment, Lightformer } from '@react-three/drei';
import {
BallCollider,
CuboidCollider,
Physics,
RigidBody,
useRopeJoint,
useSphericalJoint,
type RapierRigidBody,
type RigidBodyProps
} from '@react-three/rapier';
import { MeshLineGeometry, MeshLineMaterial } from 'meshline';
import * as THREE from 'three';
// replace with your own imports, see the usage snippet for details
import cardGLB from './card.glb';
import lanyard from './lanyard.png';
import './Lanyard.css';
extend({ MeshLineGeometry, MeshLineMaterial });
declare module '@react-three/fiber' {
interface ThreeElements {
meshLineGeometry: ThreeElement<typeof MeshLineGeometry>;
meshLineMaterial: ThreeElement<typeof MeshLineMaterial>;
}
}
// 1x1 transparent pixel — lets useTexture be called unconditionally when a
// front/back image isn't supplied.
const BLANK_PIXEL =
'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==';
// The card model's front face is UV-mapped to the LEFT half of the texture
// atlas and the back face to the RIGHT half (measured from card.glb). Each
// custom image is composited into its own half so the two faces render
// independently, aspect-preserving (no stretching).
const FRONT_UV_RECT = { x: 0, y: 0, w: 0.5, h: 0.755 };
const BACK_UV_RECT = { x: 0.5, y: 0, w: 0.5, h: 0.757 };
interface LanyardProps {
position?: [number, number, number];
gravity?: [number, number, number];
fov?: number;
transparent?: boolean;
frontImage?: string | null;
backImage?: string | null;
imageFit?: 'cover' | 'contain';
lanyardImage?: string | null;
lanyardWidth?: number;
}
export default function Lanyard({
position = [0, 0, 30],
gravity = [0, -40, 0],
fov = 20,
transparent = true,
frontImage = null,
backImage = null,
imageFit = 'cover',
lanyardImage = null,
lanyardWidth = 1
}: LanyardProps) {
const [isMobile, setIsMobile] = useState<boolean>(() => typeof window !== 'undefined' && window.innerWidth < 768);
useEffect(() => {
const handleResize = (): void => setIsMobile(window.innerWidth < 768);
window.addEventListener('resize', handleResize);
return () => window.removeEventListener('resize', handleResize);
}, []);
return (
<div className="lanyard-wrapper">
<Canvas
camera={{ position, fov }}
dpr={[1, isMobile ? 1.5 : 2]}
gl={{ alpha: transparent }}
onCreated={({ gl }) => gl.setClearColor(new THREE.Color(0x000000), transparent ? 0 : 1)}
>
<ambientLight intensity={Math.PI} />
<Physics gravity={gravity} timeStep={isMobile ? 1 / 30 : 1 / 60}>
<Band
isMobile={isMobile}
frontImage={frontImage}
backImage={backImage}
imageFit={imageFit}
lanyardImage={lanyardImage}
lanyardWidth={lanyardWidth}
/>
</Physics>
<Environment blur={0.75}>
<Lightformer
intensity={2}
color="white"
position={[0, -1, 5]}
rotation={[0, 0, Math.PI / 3]}
scale={[100, 0.1, 1]}
/>
<Lightformer
intensity={3}
color="white"
position={[-1, -1, 1]}
rotation={[0, 0, Math.PI / 3]}
scale={[100, 0.1, 1]}
/>
<Lightformer
intensity={3}
color="white"
position={[1, 1, 1]}
rotation={[0, 0, Math.PI / 3]}
scale={[100, 0.1, 1]}
/>
<Lightformer
intensity={10}
color="white"
position={[-10, 0, 14]}
rotation={[0, Math.PI / 2, Math.PI / 3]}
scale={[100, 10, 1]}
/>
</Environment>
</Canvas>
</div>
);
}
interface BandProps {
maxSpeed?: number;
minSpeed?: number;
isMobile?: boolean;
frontImage?: string | null;
backImage?: string | null;
imageFit?: 'cover' | 'contain';
lanyardImage?: string | null;
lanyardWidth?: number;
}
type LanyardRigidBody = RapierRigidBody & {
lerped?: THREE.Vector3;
};
function Band({
maxSpeed = 50,
minSpeed = 0,
isMobile = false,
frontImage = null,
backImage = null,
imageFit = 'cover',
lanyardImage = null,
lanyardWidth = 1
}: BandProps) {
const band = useRef<THREE.Mesh<InstanceType<typeof MeshLineGeometry>, InstanceType<typeof MeshLineMaterial>>>(null!);
const fixed = useRef<RapierRigidBody>(null!);
const j1 = useRef<LanyardRigidBody>(null!);
const j2 = useRef<LanyardRigidBody>(null!);
const j3 = useRef<RapierRigidBody>(null!);
const card = useRef<RapierRigidBody>(null!);
const vec = new THREE.Vector3();
const ang = new THREE.Vector3();
const rot = new THREE.Vector3();
const dir = new THREE.Vector3();
const segmentProps: RigidBodyProps = {
type: 'dynamic',
canSleep: true,
colliders: false,
angularDamping: 4,
linearDamping: 4
};
const getLerped = (body: LanyardRigidBody): THREE.Vector3 => {
if (!body.lerped) {
body.lerped = new THREE.Vector3().copy(body.translation());
}
return body.lerped;
};
const { nodes, materials } = useGLTF(cardGLB) as any;
const texture = useTexture(lanyardImage || lanyard);
// useTexture must be called unconditionally; use a blank pixel when an image
// isn't supplied for a given face, then skip compositing it below.
const frontTex = useTexture(frontImage || BLANK_PIXEL);
const backTex = useTexture(backImage || BLANK_PIXEL);
// Composite the front/back images into the card's texture atlas (front = left
// half, back = right half). Each image is drawn aspect-preserving (no stretch).
const cardMap = useMemo(() => {
const baseMap = materials.base.map as THREE.Texture;
if (!frontImage && !backImage) return baseMap;
const baseImg = baseMap.image as any;
const W = baseImg.width;
const H = baseImg.height;
const canvas = document.createElement('canvas');
canvas.width = W;
canvas.height = H;
const ctx = canvas.getContext('2d');
if (!ctx) return baseMap;
// Keep the original baked atlas for the card edges and any untouched face.
ctx.drawImage(baseImg, 0, 0, W, H);
const drawFitted = (img: any, rect: typeof FRONT_UV_RECT) => {
const rx = rect.x * W;
const ry = rect.y * H;
const rw = rect.w * W;
const rh = rect.h * H;
const pick = imageFit === 'contain' ? Math.min : Math.max;
const scale = pick(rw / img.width, rh / img.height);
const dw = img.width * scale;
const dh = img.height * scale;
const dx = rx + (rw - dw) / 2;
const dy = ry + (rh - dh) / 2;
ctx.save();
ctx.beginPath();
ctx.rect(rx, ry, rw, rh);
ctx.clip();
ctx.drawImage(img, dx, dy, dw, dh);
ctx.restore();
};
if (frontImage && frontTex.image) drawFitted(frontTex.image, FRONT_UV_RECT);
if (backImage && backTex.image) drawFitted(backTex.image, BACK_UV_RECT);
const composite = new THREE.CanvasTexture(canvas);
composite.colorSpace = THREE.SRGBColorSpace;
composite.flipY = baseMap.flipY;
composite.anisotropy = 16;
composite.needsUpdate = true;
return composite;
}, [frontImage, backImage, imageFit, frontTex, backTex, materials.base.map]);
const [curve] = useState(
() =>
new THREE.CatmullRomCurve3([new THREE.Vector3(), new THREE.Vector3(), new THREE.Vector3(), new THREE.Vector3()])
);
const [dragged, drag] = useState<false | THREE.Vector3>(false);
const [hovered, hover] = useState(false);
useRopeJoint(fixed, j1, [[0, 0, 0], [0, 0, 0], 1]);
useRopeJoint(j1, j2, [[0, 0, 0], [0, 0, 0], 1]);
useRopeJoint(j2, j3, [[0, 0, 0], [0, 0, 0], 1]);
useSphericalJoint(j3, card, [
[0, 0, 0],
[0, 1.45, 0]
]);
useEffect(() => {
if (hovered) {
document.body.style.cursor = dragged ? 'grabbing' : 'grab';
return () => {
document.body.style.cursor = 'auto';
};
}
}, [hovered, dragged]);
useFrame((state, delta) => {
if (dragged && typeof dragged !== 'boolean') {
vec.set(state.pointer.x, state.pointer.y, 0.5).unproject(state.camera);
dir.copy(vec).sub(state.camera.position).normalize();
vec.add(dir.multiplyScalar(state.camera.position.length()));
[card, j1, j2, j3, fixed].forEach(ref => ref.current?.wakeUp());
card.current?.setNextKinematicTranslation({
x: vec.x - dragged.x,
y: vec.y - dragged.y,
z: vec.z - dragged.z
});
}
if (fixed.current) {
[j1, j2].forEach(ref => {
const lerped = getLerped(ref.current);
const clampedDistance = Math.max(0.1, Math.min(1, lerped.distanceTo(ref.current.translation())));
lerped.lerp(ref.current.translation(), delta * (minSpeed + clampedDistance * (maxSpeed - minSpeed)));
});
curve.points[0].copy(j3.current.translation());
curve.points[1].copy(getLerped(j2.current));
curve.points[2].copy(getLerped(j1.current));
curve.points[3].copy(fixed.current.translation());
band.current.geometry.setPoints(curve.getPoints(isMobile ? 16 : 32));
ang.copy(card.current.angvel());
rot.copy(card.current.rotation());
card.current.setAngvel({ x: ang.x, y: ang.y - rot.y * 0.25, z: ang.z }, true);
}
});
curve.curveType = 'chordal';
texture.wrapS = texture.wrapT = THREE.RepeatWrapping;
return (
<>
<group position={[0, 4, 0]}>
<RigidBody ref={fixed} {...segmentProps} type="fixed" />
<RigidBody position={[0.5, 0, 0]} ref={j1} {...segmentProps} type="dynamic">
<BallCollider args={[0.1]} />
</RigidBody>
<RigidBody position={[1, 0, 0]} ref={j2} {...segmentProps} type="dynamic">
<BallCollider args={[0.1]} />
</RigidBody>
<RigidBody position={[1.5, 0, 0]} ref={j3} {...segmentProps} type="dynamic">
<BallCollider args={[0.1]} />
</RigidBody>
<RigidBody
position={[2, 0, 0]}
ref={card}
{...segmentProps}
type={dragged ? 'kinematicPosition' : 'dynamic'}
>
<CuboidCollider args={[0.8, 1.125, 0.01]} />
<group
scale={2.25}
position={[0, -1.2, -0.05]}
onPointerOver={() => hover(true)}
onPointerOut={() => hover(false)}
onPointerUp={(e: ThreeEvent<PointerEvent>) => {
(e.target as Element).releasePointerCapture(e.pointerId);
drag(false);
}}
onPointerDown={(e: ThreeEvent<PointerEvent>) => {
(e.target as Element).setPointerCapture(e.pointerId);
drag(new THREE.Vector3().copy(e.point).sub(vec.copy(card.current.translation())));
}}
>
<mesh geometry={nodes.card.geometry}>
<meshPhysicalMaterial
map={cardMap}
map-anisotropy={16}
clearcoat={isMobile ? 0 : 1}
clearcoatRoughness={0.15}
roughness={0.9}
metalness={0.8}
/>
</mesh>
<mesh geometry={nodes.clip.geometry} material={materials.metal} material-roughness={0.3} />
<mesh geometry={nodes.clamp.geometry} material={materials.metal} />
</group>
</RigidBody>
</group>
<mesh ref={band}>
<meshLineGeometry />
<meshLineMaterial
color="white"
depthTest={false}
resolution={isMobile ? [1000, 2000] : [1000, 1000]}
useMap
map={texture}
repeat={[-4, 1]}
lineWidth={lanyardWidth}
/>
</mesh>
</>
);
}