@moonbase.sh/vue 0.1.80 → 0.1.82

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.
package/dist/index.cjs CHANGED
@@ -278,23 +278,45 @@ function useCart() {
278
278
  if (!storefront)
279
279
  throw new Error("No storefront configured");
280
280
  return {
281
- items: (0, import_vue8.computed)(() => storefront.currentOrder.value.items),
281
+ items: (0, import_vue8.computed)(() => storefront.currentOrder.value.items.map((item) => {
282
+ if (item.type === "Product") {
283
+ const product = storefront.storefront.value.products.find((p) => p.id === item.productId);
284
+ const variations = (product == null ? void 0 : product.variations) || [];
285
+ const variation = variations.find((v) => v.id === item.variationId);
286
+ return {
287
+ ...item,
288
+ product,
289
+ variation,
290
+ price: variation == null ? void 0 : variation.price
291
+ };
292
+ } else {
293
+ const bundle = storefront.storefront.value.bundles.find((b) => b.id === item.bundleId);
294
+ const variations = (bundle == null ? void 0 : bundle.variations) || [];
295
+ const variation = variations.find((v) => v.id === item.variationId);
296
+ return {
297
+ ...item,
298
+ bundle,
299
+ variation,
300
+ price: variation == null ? void 0 : variation.price
301
+ };
302
+ }
303
+ })),
282
304
  currency: (0, import_vue8.computed)(() => storefront.currentOrder.value.currency || storefront.storefront.value.suggestedCurrency),
283
305
  total: (0, import_vue8.computed)(() => {
284
306
  const currency = storefront.currentOrder.value.currency || storefront.storefront.value.suggestedCurrency;
285
307
  const total = storefront.currentOrder.value.items.reduce((agg, item) => {
286
- var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
308
+ var _a, _b, _c, _d, _e, _f;
287
309
  let price;
288
310
  if (item.type === "Product") {
289
- const product = useProduct(item.productId);
290
- const variations = ((_a = product.value) == null ? void 0 : _a.variations) || [];
311
+ const product = storefront.storefront.value.products.find((p) => p.id === item.productId);
312
+ const variations = (product == null ? void 0 : product.variations) || [];
291
313
  const pickedVariation = variations.find((v) => v.id === item.variationId);
292
- price = (_e = (_d = pickedVariation == null ? void 0 : pickedVariation.price[currency]) != null ? _d : (_c = (_b = product.value) == null ? void 0 : _b.defaultVariation) == null ? void 0 : _c.price[currency]) != null ? _e : 0;
314
+ price = (_c = (_b = pickedVariation == null ? void 0 : pickedVariation.price[currency]) != null ? _b : (_a = product == null ? void 0 : product.defaultVariation) == null ? void 0 : _a.price[currency]) != null ? _c : 0;
293
315
  } else {
294
- const bundle = useBundle(item.bundleId);
295
- const variations = ((_f = bundle.value) == null ? void 0 : _f.variations) || [];
316
+ const bundle = storefront.storefront.value.bundles.find((b) => b.id === item.bundleId);
317
+ const variations = (bundle == null ? void 0 : bundle.variations) || [];
296
318
  const pickedVariation = variations.find((v) => v.id === item.variationId);
297
- price = (_j = (_i = pickedVariation == null ? void 0 : pickedVariation.price[currency]) != null ? _i : (_h = (_g = bundle.value) == null ? void 0 : _g.defaultVariation) == null ? void 0 : _h.price[currency]) != null ? _j : 0;
319
+ price = (_f = (_e = pickedVariation == null ? void 0 : pickedVariation.price[currency]) != null ? _e : (_d = bundle == null ? void 0 : bundle.defaultVariation) == null ? void 0 : _d.price[currency]) != null ? _f : 0;
298
320
  }
299
321
  return agg + price * item.quantity;
300
322
  }, 0);
package/dist/index.js CHANGED
@@ -244,23 +244,45 @@ function useCart() {
244
244
  if (!storefront)
245
245
  throw new Error("No storefront configured");
246
246
  return {
247
- items: computed5(() => storefront.currentOrder.value.items),
247
+ items: computed5(() => storefront.currentOrder.value.items.map((item) => {
248
+ if (item.type === "Product") {
249
+ const product = storefront.storefront.value.products.find((p) => p.id === item.productId);
250
+ const variations = (product == null ? void 0 : product.variations) || [];
251
+ const variation = variations.find((v) => v.id === item.variationId);
252
+ return {
253
+ ...item,
254
+ product,
255
+ variation,
256
+ price: variation == null ? void 0 : variation.price
257
+ };
258
+ } else {
259
+ const bundle = storefront.storefront.value.bundles.find((b) => b.id === item.bundleId);
260
+ const variations = (bundle == null ? void 0 : bundle.variations) || [];
261
+ const variation = variations.find((v) => v.id === item.variationId);
262
+ return {
263
+ ...item,
264
+ bundle,
265
+ variation,
266
+ price: variation == null ? void 0 : variation.price
267
+ };
268
+ }
269
+ })),
248
270
  currency: computed5(() => storefront.currentOrder.value.currency || storefront.storefront.value.suggestedCurrency),
249
271
  total: computed5(() => {
250
272
  const currency = storefront.currentOrder.value.currency || storefront.storefront.value.suggestedCurrency;
251
273
  const total = storefront.currentOrder.value.items.reduce((agg, item) => {
252
- var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
274
+ var _a, _b, _c, _d, _e, _f;
253
275
  let price;
254
276
  if (item.type === "Product") {
255
- const product = useProduct(item.productId);
256
- const variations = ((_a = product.value) == null ? void 0 : _a.variations) || [];
277
+ const product = storefront.storefront.value.products.find((p) => p.id === item.productId);
278
+ const variations = (product == null ? void 0 : product.variations) || [];
257
279
  const pickedVariation = variations.find((v) => v.id === item.variationId);
258
- price = (_e = (_d = pickedVariation == null ? void 0 : pickedVariation.price[currency]) != null ? _d : (_c = (_b = product.value) == null ? void 0 : _b.defaultVariation) == null ? void 0 : _c.price[currency]) != null ? _e : 0;
280
+ price = (_c = (_b = pickedVariation == null ? void 0 : pickedVariation.price[currency]) != null ? _b : (_a = product == null ? void 0 : product.defaultVariation) == null ? void 0 : _a.price[currency]) != null ? _c : 0;
259
281
  } else {
260
- const bundle = useBundle(item.bundleId);
261
- const variations = ((_f = bundle.value) == null ? void 0 : _f.variations) || [];
282
+ const bundle = storefront.storefront.value.bundles.find((b) => b.id === item.bundleId);
283
+ const variations = (bundle == null ? void 0 : bundle.variations) || [];
262
284
  const pickedVariation = variations.find((v) => v.id === item.variationId);
263
- price = (_j = (_i = pickedVariation == null ? void 0 : pickedVariation.price[currency]) != null ? _i : (_h = (_g = bundle.value) == null ? void 0 : _g.defaultVariation) == null ? void 0 : _h.price[currency]) != null ? _j : 0;
285
+ price = (_f = (_e = pickedVariation == null ? void 0 : pickedVariation.price[currency]) != null ? _e : (_d = bundle == null ? void 0 : bundle.defaultVariation) == null ? void 0 : _d.price[currency]) != null ? _f : 0;
264
286
  }
265
287
  return agg + price * item.quantity;
266
288
  }, 0);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@moonbase.sh/vue",
3
3
  "type": "module",
4
- "version": "0.1.80",
4
+ "version": "0.1.82",
5
5
  "description": "Package to let you build vue.js storefronts with Moonbase.sh as payment and delivery provider",
6
6
  "author": "Tobias Lønnerød Madsen <m@dsen.tv>",
7
7
  "license": "MIT",
@@ -18,7 +18,7 @@
18
18
  "dependencies": {
19
19
  "@vue/devtools-api": "^6.5.1",
20
20
  "uuid": "^9.0.1",
21
- "@moonbase.sh/storefront-api": "0.1.80"
21
+ "@moonbase.sh/storefront-api": "0.1.82"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@types/uuid": "^9.0.7",