Skip to content

Commit f5c8a8f

Browse files
committed
added x and y position to customise dialogue
1 parent c525549 commit f5c8a8f

File tree

3 files changed

+87
-29
lines changed

3 files changed

+87
-29
lines changed

app/product/[productType]/page.tsx

+12-1
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,23 @@ export type Position = "front" | "back";
1212

1313
export default async function ProductTypePage({
1414
params: { productType },
15-
searchParams: { imageId, country, position = "front", scale = 0.7 },
15+
searchParams: {
16+
imageId,
17+
country,
18+
position = "front",
19+
scale = 0.7,
20+
x = 0.5,
21+
y = 0.5,
22+
},
1623
}: {
1724
params: { productType: string };
1825
searchParams: {
1926
imageId: string;
2027
country: CountryCode;
2128
position?: Position;
2229
scale?: number;
30+
x?: number;
31+
y?: number;
2332
};
2433
}) {
2534
if (!country) {
@@ -40,6 +49,8 @@ export default async function ProductTypePage({
4049
blueprintId: productInfo.blueprintId,
4150
position,
4251
scale,
52+
x,
53+
y,
4354
});
4455
console.log({ msg: "Fetched product", product });
4556
const variants = await fetchProductVariants(

components/product/ClothingProductDetails.tsx

+69-26
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@ import {
1818
Dialog,
1919
DialogContent,
2020
DialogHeader,
21+
DialogTitle,
2122
DialogTrigger,
2223
} from "@/components/ui/dialog";
2324
import { toggleImageBackgroundButtonAction } from "@/actions/toggleImageBackgroundButtonAction";
2425
import {
26+
ReadonlyURLSearchParams,
2527
useParams,
2628
usePathname,
2729
useRouter,
@@ -32,6 +34,8 @@ import { CountryCode } from "@/lib/stripe/createCheckoutSession";
3234
import { DisplayName } from "@/lib/printify/productsData";
3335
import { Slider } from "@/components/ui/slider";
3436
import { Label } from "@/components/ui/label";
37+
import { AppRouterInstance } from "next/dist/shared/lib/app-router-context.shared-runtime";
38+
import { capitalize } from "lodash";
3539

3640
export interface Options {
3741
id: number;
@@ -58,6 +62,8 @@ export function ClothingProductDetails({
5862
const country = searchParams.get("country") as CountryCode;
5963
const imageId = searchParams.get("imageId") as string;
6064
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;
6167
const params = useParams();
6268
const productType = params["productType"] as DisplayName;
6369
const displayName = decodeURIComponent(productType);
@@ -195,7 +201,9 @@ export function ClothingProductDetails({
195201
<Button variant={"outline"}>Customise</Button>
196202
</DialogTrigger>
197203
<DialogContent>
198-
<DialogHeader></DialogHeader>
204+
<DialogHeader>
205+
<DialogTitle>Customise</DialogTitle>
206+
</DialogHeader>
199207
<Button
200208
variant={"secondary"}
201209
onClick={async () => {
@@ -231,20 +239,29 @@ export function ClothingProductDetails({
231239
</a>
232240
</>
233241
)}
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}
248265
/>
249266
</DialogContent>
250267
</Dialog>
@@ -298,17 +315,6 @@ export function ClothingProductDetails({
298315
</Button>
299316

300317
<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> */}
312318
</div>
313319
</div>
314320
);
@@ -350,3 +356,40 @@ function getFilteredColorsForSize(size: string, variants: Variant[]) {
350356
function roundUpToNearestInteger(x: number) {
351357
return Math.ceil(x / 1) * 1;
352358
}
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+
}

lib/printify/product/createPrintifyProduct.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,16 @@ export async function createPrintifyProduct({
1010
blueprintId,
1111
position = "front",
1212
scale,
13+
x,
14+
y,
1315
}: {
1416
printifyImageId: string;
1517
printProviderId: number;
1618
blueprintId: number;
1719
position?: "front" | "back";
1820
scale: number; // between 0 and 1
21+
x: number;
22+
y: number;
1923
}) {
2024
const variants = await fetchProductVariants(blueprintId, printProviderId);
2125
const variantIds = variants.map((variant) => variant.id);
@@ -34,8 +38,8 @@ export async function createPrintifyProduct({
3438
images: [
3539
{
3640
id: printifyImageId,
37-
x: 0.5,
38-
y: 0.5,
41+
x,
42+
y,
3943
scale,
4044
angle: 0,
4145
},

0 commit comments

Comments
 (0)