blocks-dusted 0.1.12 → 0.1.13

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.
Files changed (148) hide show
  1. package/package.json +1 -1
  2. package/src/installers/patchRenderBlocks.js +1 -1
  3. package/src/registry/validateTemplateManifest.js +2 -1
  4. package/templates/blocks/BannerDD790432/Component.tsx +63 -0
  5. package/templates/blocks/BannerDD790432/config.ts +54 -0
  6. package/templates/blocks/BannerDD790432/manifest.json +80 -0
  7. package/templates/blocks/Button47/Component.tsx +124 -0
  8. package/templates/blocks/Button47/config.ts +75 -0
  9. package/templates/blocks/Button47/link.ts +22 -0
  10. package/templates/blocks/Button47/manifest.json +105 -0
  11. package/templates/blocks/Button47/styles.module.scss +75 -0
  12. package/templates/blocks/DD-Accordion/Component.tsx +55 -36
  13. package/templates/blocks/DD-Accordion/config.ts +71 -59
  14. package/templates/blocks/DD-AnimText/Component.tsx +50 -32
  15. package/templates/blocks/DD-AnimText/config.ts +296 -295
  16. package/templates/blocks/DD-AsideNav/Component.tsx +323 -319
  17. package/templates/blocks/DD-Banner/Component.tsx +54 -51
  18. package/templates/blocks/DD-BookCall/Component.tsx +535 -535
  19. package/templates/blocks/DD-ButtonPop/Component.tsx +118 -117
  20. package/templates/blocks/DD-Card/Component.tsx +4 -4
  21. package/templates/blocks/DD-CardTemplate01/Component.tsx +139 -140
  22. package/templates/blocks/DD-CardsWithVariantV3/Component.tsx +472 -0
  23. package/templates/blocks/DD-CardsWithVariantV3/ElectricBorder/index.tsx +203 -0
  24. package/templates/blocks/DD-CardsWithVariantV3/ElectricBorder/styles.ts +87 -0
  25. package/templates/blocks/DD-CardsWithVariantV3/ElectricBorder/useInjectStyle.ts +39 -0
  26. package/templates/blocks/DD-CardsWithVariantV3/config.ts +326 -0
  27. package/templates/blocks/DD-CardsWithVariantV3/manifest.json +110 -0
  28. package/templates/blocks/DD-Carousel-A/Component.tsx +251 -249
  29. package/templates/blocks/DD-Carousel-B/Component.tsx +405 -403
  30. package/templates/blocks/DD-ComparisonTable/Component.tsx +255 -256
  31. package/templates/blocks/DD-Contact/Component.tsx +433 -435
  32. package/templates/blocks/DD-Counter/Component.tsx +11 -6
  33. package/templates/blocks/DD-DeliCard/Component.tsx +303 -0
  34. package/templates/blocks/DD-DeliCard/config.ts +186 -0
  35. package/templates/blocks/DD-DeliCard/manifest.json +94 -0
  36. package/templates/blocks/DD-FeatCat/Component.tsx +302 -302
  37. package/templates/blocks/DD-FeatProd/CircularGallery.tsx +1179 -0
  38. package/templates/blocks/DD-FeatProd/Component.tsx +484 -0
  39. package/templates/blocks/DD-FeatProd/config.ts +173 -0
  40. package/templates/blocks/DD-FeatProd/manifest.json +93 -0
  41. package/templates/blocks/DD-FeatServ/Component.tsx +607 -0
  42. package/templates/blocks/DD-FeatServ/config.ts +213 -0
  43. package/templates/blocks/DD-FeatServ/manifest.json +113 -0
  44. package/templates/blocks/DD-FeatStrip/Component.tsx +584 -585
  45. package/templates/blocks/DD-FluidBtn/ButtonsEyeCatching.tsx +627 -628
  46. package/templates/blocks/DD-FluidBtn/Component.tsx +46 -43
  47. package/templates/blocks/DD-GooeyInfo/Component.tsx +150 -149
  48. package/templates/blocks/DD-GooeyInfo/config.ts +136 -135
  49. package/templates/blocks/DD-Hero/Component.tsx +296 -297
  50. package/templates/blocks/DD-HeroPlas/Component.tsx +50 -0
  51. package/templates/blocks/DD-HeroPlas/ThreeScene.tsx +109 -0
  52. package/templates/blocks/DD-HeroPlas/config.ts +33 -0
  53. package/templates/blocks/DD-HeroPlas/manifest.json +88 -0
  54. package/templates/blocks/DD-HorizontalScroll/Component.tsx +937 -936
  55. package/templates/blocks/DD-Icon/Component.tsx +46 -81
  56. package/templates/blocks/DD-IconButton/Component.tsx +13 -20
  57. package/templates/blocks/DD-IdTag/Component.tsx +22 -21
  58. package/templates/blocks/DD-LineAnim/Component.tsx +42 -36
  59. package/templates/blocks/DD-LogoMarq/Component.tsx +38 -48
  60. package/templates/blocks/DD-Lottie/Component.tsx +11 -3
  61. package/templates/blocks/DD-MasonaryMedia/Component.tsx +544 -545
  62. package/templates/blocks/DD-MasonaryMedia/config.ts +389 -389
  63. package/templates/blocks/DD-Masonry/Component.tsx +654 -644
  64. package/templates/blocks/DD-Masonry/config.ts +475 -475
  65. package/templates/blocks/DD-MaterialSwatches/Component.tsx +85 -0
  66. package/templates/blocks/DD-MaterialSwatches/config.ts +232 -0
  67. package/templates/blocks/DD-MaterialSwatches/manifest.json +84 -0
  68. package/templates/blocks/DD-MaterialSwatches/material.ts +107 -0
  69. package/templates/blocks/DD-NineCanvas/Component.tsx +129 -0
  70. package/templates/blocks/DD-NineCanvas/RenderBlocks.tsx +244 -0
  71. package/templates/blocks/DD-NineCanvas/allowedCanvasBlocks.ts +6 -0
  72. package/templates/blocks/DD-NineCanvas/blockComponents.tsx +8 -0
  73. package/templates/blocks/DD-NineCanvas/canvas/CanvasGrid.tsx +316 -0
  74. package/templates/blocks/DD-NineCanvas/canvas/RadialNav.tsx +432 -0
  75. package/templates/blocks/DD-NineCanvas/canvas/canvas-panels.css +889 -0
  76. package/templates/blocks/DD-NineCanvas/canvas/icons/custom-icons.tsx +364 -0
  77. package/templates/blocks/DD-NineCanvas/config.ts +61 -0
  78. package/templates/blocks/DD-NineCanvas/manifest.json +165 -0
  79. package/templates/blocks/DD-NineCanvas/styles.scss +152 -0
  80. package/templates/blocks/DD-NineCanvas/tooltip/get-strict-context.tsx +26 -0
  81. package/templates/blocks/DD-NineCanvas/tooltip/primitives.tsx +178 -0
  82. package/templates/blocks/DD-NineCanvas/tooltip/tooltip.tsx +71 -0
  83. package/templates/blocks/DD-NineCanvas/tooltip/use-controlled-state.tsx +33 -0
  84. package/templates/blocks/DD-NineCanvas/utilities/FadeOnScroll.tsx +68 -0
  85. package/templates/blocks/DD-NineCanvas/utilities/ParallaxWrapper.tsx +157 -0
  86. package/templates/blocks/DD-NineCanvas/utilities/renderCustomCSS.ts +5 -0
  87. package/templates/blocks/DD-NineCanvas/utilities/webglCleanup.ts +27 -0
  88. package/templates/blocks/DD-PayloadAIAssistant/Component.tsx +78 -0
  89. package/templates/blocks/DD-PayloadAIAssistant/DustedBot.tsx +590 -0
  90. package/templates/blocks/DD-PayloadAIAssistant/config.ts +37 -0
  91. package/templates/blocks/DD-PayloadAIAssistant/demo.css +125 -0
  92. package/templates/blocks/DD-PayloadAIAssistant/manifest.json +93 -0
  93. package/templates/blocks/DD-PayloadAIAssistant/source-defaults.ts +17 -0
  94. package/templates/blocks/DD-PayloadAIAssistant/styles.ts +306 -0
  95. package/templates/blocks/DD-Pricing/Component.tsx +2 -3
  96. package/templates/blocks/DD-Pricing/config.ts +215 -215
  97. package/templates/blocks/DD-Process/Component.tsx +2 -2
  98. package/templates/blocks/DD-ProjHeader/Component.tsx +93 -91
  99. package/templates/blocks/DD-ProjSlider/Component.tsx +1 -1
  100. package/templates/blocks/DD-Section/Component.tsx +265 -266
  101. package/templates/blocks/DD-Separator/Component.tsx +66 -66
  102. package/templates/blocks/DD-Services/Component.tsx +176 -176
  103. package/templates/blocks/DD-ShowcaseGrid/Component.tsx +306 -307
  104. package/templates/blocks/DD-Slider-A/Component.tsx +2 -2
  105. package/templates/blocks/DD-StackCards/Component.tsx +172 -171
  106. package/templates/blocks/DD-Team/Component.tsx +247 -247
  107. package/templates/blocks/DD-TeamCards/Component.tsx +251 -251
  108. package/templates/blocks/DD-TechStack/Component.tsx +173 -174
  109. package/templates/blocks/DD-TestMarq/Component.tsx +158 -132
  110. package/templates/blocks/DD-Testim/Component.tsx +247 -247
  111. package/templates/blocks/DD-Testim2/Component.tsx +265 -256
  112. package/templates/blocks/DD-Testimonials/Component.tsx +139 -139
  113. package/templates/blocks/DD-Thanks/Component.tsx +1 -1
  114. package/templates/blocks/DD-Work/Component.tsx +318 -318
  115. package/templates/blocks/DD-Work-B/Component.tsx +294 -294
  116. package/templates/blocks/DDHG-CTASection2/Component.tsx +183 -184
  117. package/templates/blocks/DDHG-HighlightArc/Component.tsx +6 -3
  118. package/templates/blocks/DDHG-LogoMarquee/Component.tsx +45 -8
  119. package/templates/blocks/DDHG-NavCodeGrid/Component.tsx +1 -3
  120. package/templates/blocks/DDHG-ServiceDetails/ServiceDetailCard.tsx +9 -22
  121. package/templates/blocks/DDHG-ServiceHero/Component.tsx +10 -10
  122. package/templates/blocks/DDHG-TeamCards/Component.tsx +6 -35
  123. package/templates/blocks/Form/Checkbox/index.tsx +45 -0
  124. package/templates/blocks/Form/Component.tsx +163 -0
  125. package/templates/blocks/Form/Country/index.tsx +65 -0
  126. package/templates/blocks/Form/Country/options.ts +982 -0
  127. package/templates/blocks/Form/Email/index.tsx +38 -0
  128. package/templates/blocks/Form/Error/index.tsx +15 -0
  129. package/templates/blocks/Form/Message/index.tsx +13 -0
  130. package/templates/blocks/Form/Number/index.tsx +36 -0
  131. package/templates/blocks/Form/Select/index.tsx +63 -0
  132. package/templates/blocks/Form/State/index.tsx +64 -0
  133. package/templates/blocks/Form/State/options.ts +52 -0
  134. package/templates/blocks/Form/Text/index.tsx +32 -0
  135. package/templates/blocks/Form/Textarea/index.tsx +40 -0
  136. package/templates/blocks/Form/Width/index.tsx +13 -0
  137. package/templates/blocks/Form/config.ts +51 -0
  138. package/templates/blocks/Form/fields.tsx +21 -0
  139. package/templates/blocks/Form/manifest.json +168 -0
  140. package/templates/blocks/MediaBlock/Component.tsx +67 -0
  141. package/templates/blocks/MediaBlock/config.ts +14 -0
  142. package/templates/blocks/MediaBlock/manifest.json +92 -0
  143. package/templates/blocks/TransitionsDustedShowcase/Component.tsx +9 -0
  144. package/templates/blocks/TransitionsDustedShowcase/config.ts +13 -0
  145. package/templates/blocks/TransitionsDustedShowcase/manifest.json +80 -0
  146. package/templates/blocks/rawHtml/Component.tsx +25 -0
  147. package/templates/blocks/rawHtml/config.ts +56 -0
  148. package/templates/blocks/rawHtml/manifest.json +80 -0
@@ -1,318 +1,318 @@
1
- /* eslint-disable @next/next/no-img-element */
2
- 'use client'
3
-
4
- import React, { useRef, useState } from 'react'
5
- import Image from 'next/image'
6
- import { BarChart2, ExternalLink } from 'lucide-react'
7
- import { motion, type Variants } from 'framer-motion'
8
-
9
- import { cn } from '@/utilities/ui'
10
- export type DDWorkProps = Record<string, any>
11
- type Media = { url?: string | null; alt?: string | null; [key: string]: any }
12
- type CategoryItem = { id?: string | null; label?: string | null }
13
- type TagItem = { id?: string | null; tag?: string | null }
14
- type ProjectItem = {
15
- id?: string | null
16
- title?: string | null
17
- category?: string | null
18
- description?: string | null
19
- highlight?: string | null
20
- year?: string | null
21
- image?: Media | string | null
22
- imageFallbackUrl?: string | null
23
- tags?: TagItem[] | null
24
- link?: string | null
25
- }
26
-
27
- function isLocalImageSrc(src?: string | null): src is string {
28
- return typeof src === 'string' && src.startsWith('/api/media/file/')
29
- }
30
-
31
- // ─── SpotlightCard ────────────────────────────────────────────────────────────
32
- interface SpotlightCardProps {
33
- children: React.ReactNode
34
- className?: string
35
- spotlightColor?: string
36
- style?: React.CSSProperties
37
- }
38
-
39
- function SpotlightCard({
40
- children,
41
- className,
42
- spotlightColor = 'rgba(214,211,209,0.08)',
43
- style,
44
- }: SpotlightCardProps) {
45
- const cardRef = useRef<HTMLDivElement>(null)
46
- const [pos, setPos] = useState<{ x: number; y: number } | null>(null)
47
-
48
- const handleMouseMove = (e: React.MouseEvent<HTMLDivElement>) => {
49
- if (!cardRef.current) return
50
-
51
- const rect = cardRef.current.getBoundingClientRect()
52
-
53
- setPos({
54
- x: e.clientX - rect.left,
55
- y: e.clientY - rect.top,
56
- })
57
- }
58
-
59
- const handleMouseLeave = () => setPos(null)
60
-
61
- return (
62
- <div
63
- ref={cardRef}
64
- className={cn('relative overflow-hidden', className)}
65
- style={style}
66
- onMouseMove={handleMouseMove}
67
- onMouseLeave={handleMouseLeave}
68
- >
69
- {pos && (
70
- <div
71
- className="pointer-events-none absolute inset-0 z-0 transition-opacity duration-300"
72
- style={{
73
- background: `radial-gradient(400px circle at ${pos.x}px ${pos.y}px, ${spotlightColor}, transparent 60%)`,
74
- }}
75
- />
76
- )}
77
-
78
- <div className="relative z-10">{children}</div>
79
- </div>
80
- )
81
- }
82
-
83
- // ─── Animation variants ───────────────────────────────────────────────────────
84
- const containerVariants: Variants = {
85
- hidden: {},
86
- show: {
87
- transition: {
88
- staggerChildren: 0.1,
89
- delayChildren: 0.05,
90
- },
91
- },
92
- }
93
-
94
- const itemVariants: Variants = {
95
- hidden: {
96
- opacity: 0,
97
- y: 24,
98
- },
99
- show: {
100
- opacity: 1,
101
- y: 0,
102
- transition: {
103
- duration: 0.45,
104
- ease: 'easeOut',
105
- },
106
- },
107
- }
108
-
109
- // ─── Component ────────────────────────────────────────────────────────────────
110
- export const DDWork: React.FC<DDWorkProps> = ({
111
- eyebrow,
112
- headlineMain,
113
- headlineAccent,
114
- categories,
115
- projects,
116
- sectionId,
117
- customCSS,
118
- }) => {
119
- const categoryItems = (categories ?? []) as CategoryItem[]
120
- const projectItems = (projects ?? []) as ProjectItem[]
121
- const allLabel = categoryItems[0]?.label ?? 'All'
122
- const [activeCategory, setActiveCategory] = useState(allLabel)
123
-
124
- const filtered =
125
- activeCategory === allLabel
126
- ? projectItems
127
- : projectItems.filter((p) => p.category === activeCategory)
128
-
129
- return (
130
- <>
131
- {customCSS && <style dangerouslySetInnerHTML={{ __html: customCSS }} />}
132
-
133
- <div id={sectionId ?? 'work'} className="py-24">
134
- <div className="mx-auto max-w-6xl lg:max-w-7xl px-6">
135
- {/* Header */}#BlockName-DDWork
136
- <motion.div
137
- variants={containerVariants}
138
- initial="hidden"
139
- whileInView="show"
140
- viewport={{ once: false, amount: 0.2 }}
141
- className="mb-12 flex flex-col gap-6 overflow-hidden md:flex-row md:items-end md:justify-between px-0 md:px-4"
142
- >
143
- <motion.div variants={itemVariants}>
144
- {eyebrow && (
145
- <p className="top-caption mb-3 text-sm font-semibold uppercase tracking-widest text-stone-500 dark:text-stone-400">
146
- {eyebrow}
147
- </p>
148
- )}
149
-
150
- <h2 className="text-4xl font-bold leading-tight text-stone-900 dark:text-stone-50 md:text-5xl">
151
- {headlineMain}
152
- {headlineAccent && (
153
- <>
154
- <br />
155
- <span className="text-stone-600 dark:text-stone-400">{headlineAccent}</span>
156
- </>
157
- )}
158
- </h2>
159
- </motion.div>
160
-
161
- {/* Filter tabs */}
162
- {categoryItems.length > 1 && (
163
- <motion.div variants={itemVariants} className="flex flex-wrap gap-2 py-4">
164
- {categoryItems.map((cat, i) => {
165
- const categoryLabel = cat.label ?? ''
166
-
167
- return (
168
- <button
169
- key={cat.id ?? i}
170
- onClick={() => setActiveCategory(categoryLabel)}
171
- className={cn(
172
- 'cursor-pointer whitespace-nowrap rounded-full px-4 py-1.5 text-xs font-medium transition-all duration-300',
173
- activeCategory === categoryLabel
174
- ? 'border-indigo-500 bg-indigo-800 text-stone-200 shadow-lg shadow-blue-500/20'
175
- : 'border-stone-300 dark:border-stone-700 bg-stone-50/80 dark:bg-stone-900/80 text-stone-600 dark:text-stone-400 hover:border-stone-400 dark:hover:border-stone-500 hover:bg-stone-100 dark:hover:bg-stone-800 hover:text-stone-900 dark:hover:text-stone-50',
176
- )}
177
- >
178
- {categoryLabel}
179
- </button>
180
- )
181
- })}
182
- </motion.div>
183
- )}
184
- </motion.div>
185
-
186
- {/* Projects Grid */}
187
- <motion.div
188
- variants={containerVariants}
189
- initial="hidden"
190
- whileInView="show"
191
- viewport={{ once: false, amount: 0.1 }}
192
- className="grid grid-cols-1 gap-5 py-4 md:grid-cols-2 lg:grid-cols-3"
193
- >
194
- {filtered.map((project, i) => {
195
- const projectTitle = project.title ?? ''
196
- const projectDescription = project.description ?? ''
197
- const projectCategory = project.category ?? ''
198
- const projectYear = project.year ?? ''
199
- const projectHighlight = project.highlight ?? ''
200
- const projectLink = project.link ?? ''
201
- const imgSrc =
202
- project.image && typeof project.image === 'object'
203
- ? ((project.image as Media).url ?? project.imageFallbackUrl ?? undefined)
204
- : (project.imageFallbackUrl ?? undefined)
205
- const safeImgSrc = isLocalImageSrc(imgSrc) ? imgSrc : null
206
-
207
- const CardInner = (
208
- <SpotlightCard
209
- spotlightColor="rgba(214,211,209,0.08)"
210
- className="group h-full overflow-hidden rounded-3xl border border-stone-200 dark:border-stone-800 bg-stone-50 dark:bg-stone-900 shadow-md outline-none transition-colors duration-300 hover:border-indigo-500 hover:shadow-2xl hover:outline-4 hover:outline-stone-200/10 dark:hover:outline-stone-200/10"
211
- style={{ cornerShape: 'squircle' } as React.CSSProperties}
212
- >
213
- {/* Image */}
214
- <div className="relative h-52 w-full overflow-hidden rounded-t-2xl">
215
- {safeImgSrc ? (
216
- <Image
217
- src={safeImgSrc}
218
- alt={projectTitle}
219
- fill
220
- className="studio-card-image corner-squircle scale-105 rounded-[2.5rem] object-cover object-top transition-transform duration-500 group-hover:scale-110"
221
- sizes="(max-width: 768px) 100vw, (max-width: 1024px) 50vw, 33vw"
222
- priority={false}
223
- style={{ cornerShape: 'squircle' } as React.CSSProperties}
224
- />
225
- ) : (
226
- <div className="h-full w-full bg-stone-200 dark:bg-stone-800" />
227
- )}
228
-
229
- <div className="absolute inset-0 bg-linear-to-t from-black/60 via-black/20 to-transparent dark:from-stone-950/80 dark:via-stone-950/20 dark:to-transparent" />
230
-
231
- {projectCategory && (
232
- <span className="absolute top-2 left-2 z-20 border bg-lime-500/50 border-lime-500 text-stone-50 text-xs font-semibold px-2.5 py-1 rounded-full">
233
- {projectCategory}
234
- </span>
235
- )}
236
-
237
- {projectYear && (
238
- <span className="absolute top-2 right-2 z-20 border bg-stone-900/70 border-stone-700 text-stone-300 text-xs font-mono px-2.5 py-1 rounded-full">
239
- {projectYear}
240
- </span>
241
- )}
242
- </div>
243
-
244
- {/* Content */}
245
- <div className="card-content relative z-5 mx-2 mb-2 -mt-6 rounded-2xl bg-stone-50/90 dark:bg-stone-950/50 p-4 backdrop-blur-md drop-shadow-md transition-all duration-300 group-hover:-translate-y-1 group-hover:brightness-110 group-hover:shadow-2xl hover:duration-300 corner-squircle">
246
- <div className="mb-4 flex items-start justify-between gap-4">
247
- <div>
248
- <h3 className="mb-2 text-lg font-bold text-stone-900 dark:text-stone-50">
249
- {projectTitle}
250
- </h3>
251
-
252
- {projectDescription && (
253
- <p className="text-md mb-5 leading-relaxed text-stone-800 dark:text-stone-400">
254
- {projectDescription}
255
- </p>
256
- )}
257
- </div>
258
-
259
- {projectLink && (
260
- <ExternalLink className="mt-1 h-4 w-4 shrink-0 text-stone-400 dark:text-stone-400 transition-colors duration-300 group-hover:text-indigo-800" />
261
- )}
262
- </div>
263
-
264
- {/* Highlight */}
265
- {projectHighlight && (
266
- <div className="mb-4 flex items-center gap-2 rounded-lg border border-stone-200 dark:border-stone-800 bg-stone-100/60 group-hover:bg-stone-300 group-hover:shadow-xl dark:bg-stone-800/60 p-2.5">
267
- <BarChart2
268
- size={14}
269
- className="shrink-0 text-indigo-800 dark:text-indigo-400"
270
- />
271
- <span className="text-xs font-medium text-indigo-800 dark:text-indigo-400">
272
- {projectHighlight}
273
- </span>
274
- </div>
275
- )}
276
-
277
- {/* Tags */}
278
- {project.tags && project.tags.length > 0 && (
279
- <div className="flex flex-wrap gap-1.5">
280
- {project.tags.map((t, ti) => (
281
- <span
282
- key={t.id ?? ti}
283
- className="rounded-full border border-stone-200 dark:border-indigo-700 bg-stone-100 dark:bg-indigo-900/50 px-2 py-0.5 text-[11.5px] text-stone-700 dark:text-stone-300 transition-all duration-300"
284
- >
285
- {t.tag}
286
- </span>
287
- ))}
288
- </div>
289
- )}
290
- </div>
291
- </SpotlightCard>
292
- )
293
-
294
- return (
295
- <motion.div key={project.id ?? i} variants={itemVariants} className="h-full">
296
- {projectLink ? (
297
- <a
298
- href={projectLink}
299
- target="_blank"
300
- rel="noopener noreferrer"
301
- className="block h-full"
302
- >
303
- {CardInner}
304
- </a>
305
- ) : (
306
- CardInner
307
- )}
308
- </motion.div>
309
- )
310
- })}
311
- </motion.div>
312
- </div>
313
- </div>
314
- </>
315
- )
316
- }
317
-
318
- export default DDWork
1
+ /* eslint-disable @next/next/no-img-element */
2
+ 'use client'
3
+
4
+ import React, { useRef, useState } from 'react'
5
+ import Image from 'next/image'
6
+ import { BarChart2, ExternalLink } from 'lucide-react'
7
+ import { motion, type Variants } from 'framer-motion'
8
+
9
+ import { cn } from '@/utilities/ui'
10
+ export type DDWorkProps = Record<string, any>
11
+ type Media = { url?: string | null; alt?: string | null; [key: string]: any }
12
+ type CategoryItem = { id?: string | null; label?: string | null }
13
+ type TagItem = { id?: string | null; tag?: string | null }
14
+ type ProjectItem = {
15
+ id?: string | null
16
+ title?: string | null
17
+ category?: string | null
18
+ description?: string | null
19
+ highlight?: string | null
20
+ year?: string | null
21
+ image?: Media | string | null
22
+ imageFallbackUrl?: string | null
23
+ tags?: TagItem[] | null
24
+ link?: string | null
25
+ }
26
+
27
+ function isLocalImageSrc(src?: string | null): src is string {
28
+ return typeof src === 'string' && src.startsWith('/api/media/file/')
29
+ }
30
+
31
+ // ─── SpotlightCard ────────────────────────────────────────────────────────────
32
+ interface SpotlightCardProps {
33
+ children: React.ReactNode
34
+ className?: string
35
+ spotlightColor?: string
36
+ style?: React.CSSProperties
37
+ }
38
+
39
+ function SpotlightCard({
40
+ children,
41
+ className,
42
+ spotlightColor = 'rgba(214,211,209,0.08)',
43
+ style,
44
+ }: SpotlightCardProps) {
45
+ const cardRef = useRef<HTMLDivElement>(null)
46
+ const [pos, setPos] = useState<{ x: number; y: number } | null>(null)
47
+
48
+ const handleMouseMove = (e: React.MouseEvent<HTMLDivElement>) => {
49
+ if (!cardRef.current) return
50
+
51
+ const rect = cardRef.current.getBoundingClientRect()
52
+
53
+ setPos({
54
+ x: e.clientX - rect.left,
55
+ y: e.clientY - rect.top,
56
+ })
57
+ }
58
+
59
+ const handleMouseLeave = () => setPos(null)
60
+
61
+ return (
62
+ <div
63
+ ref={cardRef}
64
+ className={cn('relative overflow-hidden', className)}
65
+ style={style}
66
+ onMouseMove={handleMouseMove}
67
+ onMouseLeave={handleMouseLeave}
68
+ >
69
+ {pos && (
70
+ <div
71
+ className="pointer-events-none absolute inset-0 z-0 transition-opacity duration-300"
72
+ style={{
73
+ background: `radial-gradient(400px circle at ${pos.x}px ${pos.y}px, ${spotlightColor}, transparent 60%)`,
74
+ }}
75
+ />
76
+ )}
77
+
78
+ <div className="relative z-10">{children}</div>
79
+ </div>
80
+ )
81
+ }
82
+
83
+ // ─── Animation variants ───────────────────────────────────────────────────────
84
+ const containerVariants: Variants = {
85
+ hidden: {},
86
+ show: {
87
+ transition: {
88
+ staggerChildren: 0.1,
89
+ delayChildren: 0.05,
90
+ },
91
+ },
92
+ }
93
+
94
+ const itemVariants: Variants = {
95
+ hidden: {
96
+ opacity: 0,
97
+ y: 24,
98
+ },
99
+ show: {
100
+ opacity: 1,
101
+ y: 0,
102
+ transition: {
103
+ duration: 0.45,
104
+ ease: 'easeOut',
105
+ },
106
+ },
107
+ }
108
+
109
+ // ─── Component ────────────────────────────────────────────────────────────────
110
+ export const DDWork: React.FC<DDWorkProps> = ({
111
+ eyebrow,
112
+ headlineMain,
113
+ headlineAccent,
114
+ categories,
115
+ projects,
116
+ sectionId,
117
+ customCSS,
118
+ }) => {
119
+ const categoryItems = (categories ?? []) as CategoryItem[]
120
+ const projectItems = (projects ?? []) as ProjectItem[]
121
+ const allLabel = categoryItems[0]?.label ?? 'All'
122
+ const [activeCategory, setActiveCategory] = useState(allLabel)
123
+
124
+ const filtered =
125
+ activeCategory === allLabel
126
+ ? projectItems
127
+ : projectItems.filter((p) => p.category === activeCategory)
128
+
129
+ return (
130
+ <>
131
+ {customCSS && <style dangerouslySetInnerHTML={{ __html: customCSS }} />}
132
+
133
+ <div id={sectionId ?? 'work'} className="py-4">
134
+ <div className="mx-auto max-w-6xl lg:max-w-7xl px-6">
135
+ {/* Header */}
136
+ <motion.div
137
+ variants={containerVariants}
138
+ initial="hidden"
139
+ whileInView="show"
140
+ viewport={{ once: false, amount: 0.2 }}
141
+ className="mb-12 flex flex-col gap-6 overflow-hidden md:flex-row md:items-end md:justify-between px-0 md:px-4"
142
+ >
143
+ <motion.div variants={itemVariants}>
144
+ {eyebrow && (
145
+ <p className="top-caption mb-3 text-sm font-semibold uppercase tracking-widest text-stone-500 dark:text-stone-400">
146
+ {eyebrow}
147
+ </p>
148
+ )}
149
+
150
+ <h2 className="text-4xl font-bold leading-tight text-stone-900 dark:text-stone-50 md:text-5xl">
151
+ {headlineMain}
152
+ {headlineAccent && (
153
+ <>
154
+ <br />
155
+ <span className="text-stone-600 dark:text-stone-400">{headlineAccent}</span>
156
+ </>
157
+ )}
158
+ </h2>
159
+ </motion.div>
160
+
161
+ {/* Filter tabs */}
162
+ {categoryItems.length > 1 && (
163
+ <motion.div variants={itemVariants} className="flex flex-wrap gap-2 py-4">
164
+ {categoryItems.map((cat, i) => {
165
+ const categoryLabel = cat.label ?? ''
166
+
167
+ return (
168
+ <button
169
+ key={cat.id ?? i}
170
+ onClick={() => setActiveCategory(categoryLabel)}
171
+ className={cn(
172
+ 'cursor-pointer whitespace-nowrap rounded-full px-4 py-1.5 text-xs font-medium transition-all duration-300',
173
+ activeCategory === categoryLabel
174
+ ? 'border-indigo-500 bg-indigo-800 text-stone-200 shadow-lg shadow-blue-500/20'
175
+ : 'border-stone-300 dark:border-stone-700 bg-stone-50/80 dark:bg-stone-900/80 text-stone-600 dark:text-stone-400 hover:border-stone-400 dark:hover:border-stone-500 hover:bg-stone-100 dark:hover:bg-stone-800 hover:text-stone-900 dark:hover:text-stone-50',
176
+ )}
177
+ >
178
+ {categoryLabel}
179
+ </button>
180
+ )
181
+ })}
182
+ </motion.div>
183
+ )}
184
+ </motion.div>
185
+
186
+ {/* Projects Grid */}
187
+ <motion.div
188
+ variants={containerVariants}
189
+ initial="hidden"
190
+ whileInView="show"
191
+ viewport={{ once: false, amount: 0.1 }}
192
+ className="grid grid-cols-1 gap-5 py-4 md:grid-cols-2 lg:grid-cols-3"
193
+ >
194
+ {filtered.map((project, i) => {
195
+ const projectTitle = project.title ?? ''
196
+ const projectDescription = project.description ?? ''
197
+ const projectCategory = project.category ?? ''
198
+ const projectYear = project.year ?? ''
199
+ const projectHighlight = project.highlight ?? ''
200
+ const projectLink = project.link ?? ''
201
+ const imgSrc =
202
+ project.image && typeof project.image === 'object'
203
+ ? ((project.image as Media).url ?? project.imageFallbackUrl ?? undefined)
204
+ : (project.imageFallbackUrl ?? undefined)
205
+ const safeImgSrc = isLocalImageSrc(imgSrc) ? imgSrc : null
206
+
207
+ const CardInner = (
208
+ <SpotlightCard
209
+ spotlightColor="rgba(214,211,209,0.08)"
210
+ className="group h-full overflow-hidden rounded-3xl border border-stone-200 dark:border-stone-800 bg-stone-50 dark:bg-stone-900 shadow-md outline-none transition-colors duration-300 hover:border-indigo-500 hover:shadow-2xl hover:outline-4 hover:outline-stone-200/10 dark:hover:outline-stone-200/10"
211
+ style={{ cornerShape: 'squircle' } as React.CSSProperties}
212
+ >
213
+ {/* Image */}
214
+ <div className="relative h-52 w-full overflow-hidden rounded-t-2xl">
215
+ {safeImgSrc ? (
216
+ <Image
217
+ src={safeImgSrc}
218
+ alt={projectTitle}
219
+ fill
220
+ className="studio-card-image corner-squircle scale-105 rounded-[2.5rem] object-cover object-top transition-transform duration-500 group-hover:scale-110"
221
+ sizes="(max-width: 768px) 100vw, (max-width: 1024px) 50vw, 33vw"
222
+ priority={false}
223
+ style={{ cornerShape: 'squircle' } as React.CSSProperties}
224
+ />
225
+ ) : (
226
+ <div className="h-full w-full bg-stone-200 dark:bg-stone-800" />
227
+ )}
228
+
229
+ <div className="absolute inset-0 bg-linear-to-t from-black/60 via-black/20 to-transparent dark:from-stone-950/80 dark:via-stone-950/20 dark:to-transparent" />
230
+
231
+ {projectCategory && (
232
+ <span className="absolute top-2 left-2 z-20 border bg-lime-500/50 border-lime-500 text-stone-50 text-xs font-semibold px-2.5 py-1 rounded-full">
233
+ {projectCategory}
234
+ </span>
235
+ )}
236
+
237
+ {projectYear && (
238
+ <span className="absolute top-2 right-2 z-20 border bg-stone-900/70 border-stone-700 text-stone-300 text-xs font-mono px-2.5 py-1 rounded-full">
239
+ {projectYear}
240
+ </span>
241
+ )}
242
+ </div>
243
+
244
+ {/* Content */}
245
+ <div className="card-content relative z-5 mx-2 mb-2 -mt-6 rounded-2xl bg-stone-50/90 dark:bg-stone-950/50 p-4 backdrop-blur-md drop-shadow-md transition-all duration-300 group-hover:-translate-y-1 group-hover:brightness-110 group-hover:shadow-2xl hover:duration-300 corner-squircle">
246
+ <div className="mb-4 flex items-start justify-between gap-4">
247
+ <div>
248
+ <h3 className="mb-2 text-lg font-bold text-stone-900 dark:text-stone-50">
249
+ {projectTitle}
250
+ </h3>
251
+
252
+ {projectDescription && (
253
+ <p className="text-md mb-5 leading-relaxed text-stone-800 dark:text-stone-400">
254
+ {projectDescription}
255
+ </p>
256
+ )}
257
+ </div>
258
+
259
+ {projectLink && (
260
+ <ExternalLink className="mt-1 h-4 w-4 shrink-0 text-stone-400 dark:text-stone-400 transition-colors duration-300 group-hover:text-indigo-800" />
261
+ )}
262
+ </div>
263
+
264
+ {/* Highlight */}
265
+ {projectHighlight && (
266
+ <div className="mb-4 flex items-center gap-2 rounded-lg border border-stone-200 dark:border-stone-800 bg-stone-100/60 group-hover:bg-stone-300 group-hover:shadow-xl dark:bg-stone-800/60 p-2.5">
267
+ <BarChart2
268
+ size={14}
269
+ className="shrink-0 text-indigo-800 dark:text-indigo-400"
270
+ />
271
+ <span className="text-xs font-medium text-indigo-800 dark:text-indigo-400">
272
+ {projectHighlight}
273
+ </span>
274
+ </div>
275
+ )}
276
+
277
+ {/* Tags */}
278
+ {project.tags && project.tags.length > 0 && (
279
+ <div className="flex flex-wrap gap-1.5">
280
+ {project.tags.map((t, ti) => (
281
+ <span
282
+ key={t.id ?? ti}
283
+ className="rounded-full border border-stone-200 dark:border-indigo-700 bg-stone-100 dark:bg-indigo-900/50 px-2 py-0.5 text-[11.5px] text-stone-700 dark:text-stone-300 transition-all duration-300"
284
+ >
285
+ {t.tag}
286
+ </span>
287
+ ))}
288
+ </div>
289
+ )}
290
+ </div>
291
+ </SpotlightCard>
292
+ )
293
+
294
+ return (
295
+ <motion.div key={project.id ?? i} variants={itemVariants} className="h-full">
296
+ {projectLink ? (
297
+ <a
298
+ href={projectLink}
299
+ target="_blank"
300
+ rel="noopener noreferrer"
301
+ className="block h-full"
302
+ >
303
+ {CardInner}
304
+ </a>
305
+ ) : (
306
+ CardInner
307
+ )}
308
+ </motion.div>
309
+ )
310
+ })}
311
+ </motion.div>
312
+ </div>
313
+ </div>
314
+ </>
315
+ )
316
+ }
317
+
318
+ export default DDWork