File size: 5,004 Bytes
c7bb297 a71f048 c7bb297 a71f048 c7bb297 4e3d627 c7bb297 a71f048 c7bb297 4e3d627 c7bb297 a71f048 c7bb297 20a6f91 c7bb297 a71f048 c7bb297 a71f048 c7bb297 a71f048 c7bb297 a71f048 c7bb297 20a6f91 c7bb297 a71f048 c7bb297 a71f048 c7bb297 4e3d627 |
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 |
// frontend/src/useStore.js
import { create } from "zustand";
// небольшие хелперы для запросов
const postJSON = async (url, body) => {
const res = await fetch(url, {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(body),
});
if (!res.ok) throw new Error(await res.text());
return res.json();
};
const postFile = async (url, file) => {
const fd = new FormData();
fd.append("file", file);
const res = await fetch(url, { method: "POST", body: fd });
if (!res.ok) throw new Error(await res.text());
return res.json();
};
const createInitialDetail = () => ({
previewUrl: null,
transform: { scale: 1, tx: 0, ty: 0 },
tile: { enabled: false },
});
const useStore = create((set, get) => ({
// состояние
model: "MT",
active: "front",
details: {
front: createInitialDetail(),
sleeveL: createInitialDetail(),
back: createInitialDetail(),
sleeveR: createInitialDetail(),
},
uploadedPath: null,
uploadedUrl: null,
busy: false,
lastOrderInfo: null,
// сеттеры
setModel: (model) => set({ model }),
setActive: (active) => set({ active }),
setScale: (scale) =>
set((state) => ({
details: {
...state.details,
[state.active]: {
...state.details[state.active],
transform: {
...state.details[state.active].transform,
scale,
},
},
},
})),
setTx: (tx) =>
set((state) => ({
details: {
...state.details,
[state.active]: {
...state.details[state.active],
transform: {
...state.details[state.active].transform,
tx,
},
},
},
})),
setTy: (ty) =>
set((state) => ({
details: {
...state.details,
[state.active]: {
...state.details[state.active],
transform: {
...state.details[state.active].transform,
ty,
},
},
},
})),
toggleTile: () =>
set((state) => ({
details: {
...state.details,
[state.active]: {
...state.details[state.active],
tile: {
enabled: !state.details[state.active].tile.enabled,
},
},
},
})),
// 1) загрузка принта
async upload(file) {
set({ busy: true });
try {
const { path, url } = await postFile("/api/upload", file);
set({ uploadedPath: path, uploadedUrl: url });
return path;
} finally {
set({ busy: false });
}
},
// 2) построение превью из текущих контролов
async spread() {
const { model, active, details, uploadedPath } = get();
const detail = details[active];
if (!uploadedPath) throw new Error("Сначала загрузите принт");
const detail = details[active];
set({ busy: true });
try {
const payload = {
model,
view: active,
details: {
print_path: uploadedPath,
tile: detail.tile.enabled,
offset_x: detail.transform.tx,
offset_y: detail.transform.ty,
scale: detail.transform.scale,
},
};
const data = await postJSON("/api/preview", payload);
const urls =
data.previews ||
(data.preview_url ? { [active]: data.preview_url } : null);
if (urls) {
set((state) => {
const updatedDetails = { ...state.details };
for (const [key, url] of Object.entries(urls)) {
if (!updatedDetails[key]) continue;
updatedDetails[key] = {
...updatedDetails[key],
previewUrl: url,
};
}
return { details: updatedDetails, lastPreviewUrls: urls };
});
} else {
set({ lastPreviewUrls: urls });
}
return data;
} finally {
set({ busy: false });
}
},
// удобный комбинированный экшен под кнопку "Upload / Spread"
async uploadAndSpread(file) {
await get().upload(file);
return get().spread();
},
// 3) создание заказа
async startOrder() {
const { model, active, details, uploadedPath } = get();
const detail = details[active];
if (!uploadedPath) throw new Error("Сначала загрузите принт");
const detail = details[active];
set({ busy: true });
try {
const payload = {
model,
view: active,
details: {
print_path: uploadedPath,
tile: detail.tile.enabled,
offset_x: detail.transform.tx,
offset_y: detail.transform.ty,
scale: detail.transform.scale,
},
};
const data = await postJSON("/api/order", payload);
set({ lastOrderInfo: data });
return data;
} finally {
set({ busy: false });
}
},
}));
export default useStore;
|