| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332 |
- import Dialog from 'tdesign-miniprogram/dialog/index';
- import { fetchCartGroupData, fetchCartItems, deleteCartItem, updateCartItemCount,getSwipe } from '../../services/cart/cart';
- import { getSkuDetail } from '../../services/sku/sku';
- import { objectToParamString } from '../../utils/util';
- import { getSingleCloudImageTempUrl, getCloudImageTempUrl } from '../../utils/cloudImageHandler';
- let updateCartItemCountTimeout = null;
- Component({
- data: {
- cartGroupData: null,
- cartItems: [],
- selectedCartItemNum: 0,
- allSelected: false,
- totalAmount: 0,
- loading: false,
- inited: false,
- imgSrcs: [], // 广告图数据
- },
- observers: {
- cartItems: function (cartItems) {
- const selectedCartItems = cartItems.filter((x) => x.selected === true);
- const selectedCartItemNum = selectedCartItems.length;
- const totalAmount = selectedCartItems.reduce((acc, cur) => acc + cur.count * cur.sku.price, 0);
- const allSelected = selectedCartItemNum === cartItems.length;
- this.setData({
- selectedCartItemNum,
- allSelected,
- totalAmount,
- });
- },
- },
- lifetimes: {
- attached: async function () {
- // console.log('called attached');
- // // 调用自定义tabbar的init函数,使页面与tabbar激活状态保持一致
- // this.getTabBar().init();
- // await this.setLoading();
- // await this.setDataPromise({ inited: true });
- // try {
- // await this.init();
- // } finally {
- // await this.unsetLoading();
- // }
- },
- },
- pageLifetimes: {
- show: async function () {
- // 调用自定义tabbar的init函数,使页面与tabbar激活状态保持一致
- this.getTabBar().init();
- await this.setLoading();
- try {
- await this.init();
- } finally {
- await this.unsetLoading();
- }
- },
- },
- methods: {
- async init() {
- const cartItems = (await fetchCartItems()).map((x) =>
- Object.assign(x, {
- selected: false,
- }),
- );
- await Promise.all(
- cartItems.map(async (cartItem) => {
- const skuId = cartItem.sku._id;
- const sku = await getSkuDetail(skuId);
- if (sku.image) {
- sku.image = await getSingleCloudImageTempUrl(sku.image);
- }
- cartItem.sku = sku;
- }),
- );
- await this.setDataPromise({
- cartItems,
- });
-
- // 加载广告图数据
- this.loadAdvertisementImages();
- },
- findGoods(spuId, skuId) {
- let currentStore;
- let currentActivity;
- let currentGoods;
- const { storeGoods } = this.data.cartGroupData;
- for (const store of storeGoods) {
- for (const activity of store.promotionGoodsList) {
- for (const goods of activity.goodsPromotionList) {
- if (goods.spuId === spuId && goods.skuId === skuId) {
- currentStore = store;
- currentActivity = currentActivity;
- currentGoods = goods;
- return {
- currentStore,
- currentActivity,
- currentGoods,
- };
- }
- }
- }
- }
- return {
- currentStore,
- currentActivity,
- currentGoods,
- };
- },
- // 注:实际场景时应该调用接口获取购物车数据
- getCartGroupData() {
- const { cartGroupData } = this.data;
- if (!cartGroupData) {
- return fetchCartGroupData();
- }
- return Promise.resolve({ data: cartGroupData });
- },
- // 选择单个商品
- // 注:实际场景时应该调用接口更改选中状态
- selectGoodsService({ spuId, skuId, isSelected }) {
- this.findGoods(spuId, skuId).currentGoods.isSelected = isSelected;
- return Promise.resolve();
- },
- // 全选门店
- // 注:实际场景时应该调用接口更改选中状态
- selectStoreService({ storeId, isSelected }) {
- const currentStore = this.data.cartGroupData.storeGoods.find((s) => s.storeId === storeId);
- currentStore.isSelected = isSelected;
- currentStore.promotionGoodsList.forEach((activity) => {
- activity.goodsPromotionList.forEach((goods) => {
- goods.isSelected = isSelected;
- });
- });
- return Promise.resolve();
- },
- // 加购数量变更
- // 注:实际场景时应该调用接口
- changeQuantityService({ spuId, skuId, quantity }) {
- this.findGoods(spuId, skuId).currentGoods.quantity = quantity;
- return Promise.resolve();
- },
- // 删除加购商品
- // 注:实际场景时应该调用接口
- deleteGoodsService({ spuId, skuId }) {
- function deleteGoods(group) {
- for (const gindex in group) {
- const goods = group[gindex];
- if (goods.spuId === spuId && goods.skuId === skuId) {
- group.splice(gindex, 1);
- return gindex;
- }
- }
- return -1;
- }
- const { storeGoods, invalidGoodItems } = this.data.cartGroupData;
- for (const store of storeGoods) {
- for (const activity of store.promotionGoodsList) {
- if (deleteGoods(activity.goodsPromotionList) > -1) {
- return Promise.resolve();
- }
- }
- if (deleteGoods(store.shortageGoodsList) > -1) {
- return Promise.resolve();
- }
- }
- if (deleteGoods(invalidGoodItems) > -1) {
- return Promise.resolve();
- }
- return Promise.reject();
- },
- onGoodsSelect({ detail: { goods } }) {
- const { cartItems } = this.data;
- const item = cartItems.find((x) => x._id === goods._id);
- if (item == null) {
- console.warn('Cart item not found!');
- return;
- }
- item.selected = !item.selected;
- this.setData({ cartItems });
- },
- // 加载广告图数据
- async loadAdvertisementImages() {
- try {
- const { images } = await getSwipe();
- console.log("获取到的广告图数据:", images);
-
- // 确保images是数组格式
- let handledImages = [];
- if (Array.isArray(images)) {
- handledImages = await getCloudImageTempUrl(images);
- }
- console.log("handledImages",handledImages[0]);
- this.setData({ imgSrcs: handledImages });
- } catch (error) {
- console.error("加载广告图失败:", error);
- }
- },
-
- onQuantityChange({ detail: { cartItemId, count } }) {
- const { cartItems } = this.data;
- const item = cartItems.find((x) => x._id === cartItemId);
- if (item == null) {
- console.warn('Cart item not found');
- return;
- }
- item.count = count;
- this.setData({ cartItems });
- this.debouncedUpdateCartItemCount({ cartItemId, count });
- },
- debouncedUpdateCartItemCount({ cartItemId, count }) {
- clearTimeout(updateCartItemCountTimeout);
- updateCartItemCountTimeout = setTimeout(async () => {
- this.setLoading();
- try {
- await updateCartItemCount({ cartItemId, count });
- } finally {
- this.unsetLoading();
- }
- }, 500);
- },
- goCollect() {
- /** 活动肯定有一个活动ID,用来获取活动banner,活动商品列表等 */
- const promotionID = '123';
- wx.navigateTo({
- url: `/pages/promotion-detail/index?promotion_id=${promotionID}`,
- });
- },
- goGoodsDetail({
- detail: {
- goods: {
- sku: {
- spu: { _id },
- },
- },
- },
- }) {
- wx.navigateTo({
- url: `/pages/goods/details/index?spuId=${_id}`,
- });
- },
- async onGoodsDelete({
- detail: {
- goods: { _id },
- },
- }) {
- try {
- await Dialog.confirm({
- context: this,
- closeOnOverlayClick: true,
- title: '确认删除该商品吗?',
- confirmBtn: '确定',
- cancelBtn: '取消',
- });
- this.setLoading();
- try {
- await deleteCartItem({ cartItemId: _id });
- const { cartItems } = this.data;
- this.setData({
- cartItems: cartItems.filter((x) => x._id !== _id),
- });
- } finally {
- this.unsetLoading();
- }
- } catch {
- console.warn('deletion is cancelled');
- }
- },
- onSelectAll() {
- const { cartItems, allSelected } = this.data;
- cartItems.forEach((x) => (x.selected = !allSelected));
- this.setData({ cartItems });
- },
- onToSettle() {
- wx.navigateTo({
- url: `/pages/order/order-confirm/index?${objectToParamString({
- type: 'cart',
- cartIds: this.data.cartItems
- .filter((x) => x.selected === true)
- .map((x) => x._id)
- .join(','),
- })}`,
- });
- },
- onGotoHome() {
- wx.switchTab({ url: '/pages/home/home' });
- },
- setLoading() {
- return this.setDataPromise({
- loading: true,
- });
- },
- unsetLoading() {
- return this.setDataPromise({
- loading: false,
- });
- },
- toggleLoading() {
- this.setData({
- loading: !this.data.loading,
- });
- },
- setDataPromise(data) {
- return new Promise((res) => {
- this.setData(data, () => res());
- });
- },
- },
- });
|