@@ -18,10 +18,12 @@ import {
18
18
Dialog ,
19
19
DialogContent ,
20
20
DialogHeader ,
21
+ DialogTitle ,
21
22
DialogTrigger ,
22
23
} from "@/components/ui/dialog" ;
23
24
import { toggleImageBackgroundButtonAction } from "@/actions/toggleImageBackgroundButtonAction" ;
24
25
import {
26
+ ReadonlyURLSearchParams ,
25
27
useParams ,
26
28
usePathname ,
27
29
useRouter ,
@@ -32,6 +34,8 @@ import { CountryCode } from "@/lib/stripe/createCheckoutSession";
32
34
import { DisplayName } from "@/lib/printify/productsData" ;
33
35
import { Slider } from "@/components/ui/slider" ;
34
36
import { Label } from "@/components/ui/label" ;
37
+ import { AppRouterInstance } from "next/dist/shared/lib/app-router-context.shared-runtime" ;
38
+ import { capitalize } from "lodash" ;
35
39
36
40
export interface Options {
37
41
id : number ;
@@ -58,6 +62,8 @@ export function ClothingProductDetails({
58
62
const country = searchParams . get ( "country" ) as CountryCode ;
59
63
const imageId = searchParams . get ( "imageId" ) as string ;
60
64
const scale = searchParams . get ( "scale" ) as unknown as number ;
65
+ const x = searchParams . get ( "x" ) as unknown as number ;
66
+ const y = searchParams . get ( "y" ) as unknown as number ;
61
67
const params = useParams ( ) ;
62
68
const productType = params [ "productType" ] as DisplayName ;
63
69
const displayName = decodeURIComponent ( productType ) ;
@@ -195,7 +201,9 @@ export function ClothingProductDetails({
195
201
< Button variant = { "outline" } > Customise</ Button >
196
202
</ DialogTrigger >
197
203
< DialogContent >
198
- < DialogHeader > </ DialogHeader >
204
+ < DialogHeader >
205
+ < DialogTitle > Customise</ DialogTitle >
206
+ </ DialogHeader >
199
207
< Button
200
208
variant = { "secondary" }
201
209
onClick = { async ( ) => {
@@ -231,20 +239,29 @@ export function ClothingProductDetails({
231
239
</ a >
232
240
</ >
233
241
) }
234
- < Label htmlFor = "scale-slider" > Image Scale</ Label >
235
- < Slider
236
- id = "scale-slider"
237
- defaultValue = { [ scale ?? 0.7 ] }
238
- max = { 1 }
239
- step = { 0.1 }
240
- onValueChange = { ( value ) => {
241
- const newParams = new URLSearchParams (
242
- searchParams . toString ( ) ,
243
- ) ;
244
- newParams . set ( "scale" , value [ 0 ] . toString ( ) ) ;
245
- const queryString = newParams . toString ( ) ;
246
- router . push ( pathname + "?" + queryString ) ;
247
- } }
242
+ < UpdateSearchParamSlider
243
+ name = "scale"
244
+ router = { router }
245
+ defaultValue = { 0.7 }
246
+ currentValue = { scale }
247
+ pathname = { pathname }
248
+ searchParams = { searchParams }
249
+ />
250
+ < UpdateSearchParamSlider
251
+ name = "x"
252
+ router = { router }
253
+ defaultValue = { 0.5 }
254
+ currentValue = { x }
255
+ pathname = { pathname }
256
+ searchParams = { searchParams }
257
+ />
258
+ < UpdateSearchParamSlider
259
+ name = "y"
260
+ router = { router }
261
+ defaultValue = { 0.5 }
262
+ currentValue = { y }
263
+ pathname = { pathname }
264
+ searchParams = { searchParams }
248
265
/>
249
266
</ DialogContent >
250
267
</ Dialog >
@@ -298,17 +315,6 @@ export function ClothingProductDetails({
298
315
</ Button >
299
316
300
317
< SomethingWrongButton />
301
- { /*
302
- <div className="mt-4 text-sm">
303
- Powered by
304
- <Image
305
- src="/stripe.svg"
306
- alt="Stripe"
307
- width={100}
308
- height={100}
309
- priority
310
- />
311
- </div> */ }
312
318
</ div >
313
319
</ div >
314
320
) ;
@@ -350,3 +356,40 @@ function getFilteredColorsForSize(size: string, variants: Variant[]) {
350
356
function roundUpToNearestInteger ( x : number ) {
351
357
return Math . ceil ( x / 1 ) * 1 ;
352
358
}
359
+
360
+ function UpdateSearchParamSlider ( {
361
+ name,
362
+ router,
363
+ searchParams,
364
+ pathname,
365
+ defaultValue,
366
+ currentValue,
367
+ } : {
368
+ name : string ;
369
+ router : AppRouterInstance ;
370
+ searchParams : ReadonlyURLSearchParams ;
371
+ pathname : string ;
372
+ defaultValue : number ;
373
+ currentValue ?: number ;
374
+ } ) {
375
+ return (
376
+ < >
377
+ < Label htmlFor = { `${ name } -slider` } > { capitalize ( name ) } </ Label >
378
+ < Slider
379
+ id = { `${ name } -slider` }
380
+ defaultValue = { [ currentValue ?? defaultValue ] }
381
+ max = { 1 }
382
+ min = { 0.1 }
383
+ step = { 0.1 }
384
+ onValueChange = { ( value ) => {
385
+ const newParams = new URLSearchParams (
386
+ searchParams . toString ( ) ,
387
+ ) ;
388
+ newParams . set ( name , value [ 0 ] . toString ( ) ) ;
389
+ const queryString = newParams . toString ( ) ;
390
+ router . push ( pathname + "?" + queryString ) ;
391
+ } }
392
+ />
393
+ </ >
394
+ ) ;
395
+ }
0 commit comments