actions.js 2.78 KB
import * as Types from './types';

const TYPE = {notuse: 'notuse', use: 'use', overtime: 'overtime'};

function _handleCoupon(item, type) {
  if (type === TYPE.use) {
    item.is_used = true;
  }

  if (type === TYPE.use || item.is_overtime === 'Y' || item.is_invalid === 'Y') {
    item.usedOvertimeOrInValid = true;
  }

  item.useNowLink = true;

  // 线下店不可使用
  if (!item.is_online_avail) {
    item.useNowLink = '';
  }

  return item;
}

function _handleUfoCoupon(item) {
  item.coupon_value_str = item.coupon_value;
  item.catalog_name = 'UFO';
  item.catalog = 'UFO';
  return item;
}

export default {
  async fetchYohoList({commit, state}, {type, filter = 0, refresh = false}) {
    commit(Types.FETCH_YOHO_COUPON_REQUEST);

    if (!refresh) {
      if (state.yohoList[type].page > state.yohoList[type].pageNum) {
        return false;
      }
    }

    const fetchPage = refresh ? 1 : state.yohoList[type].page + 1;

    // 下一页的数据
    const result = await this.$api.get('/api/coupon/yoho/list', {
      type,
      filter,
      limit: 10,
      page: fetchPage
    });

    if (result && result.code === 200) {
      const data = {
        type,
        couponList: result.data.couponList ? result.data.couponList.map((i) => _handleCoupon(i, type)) : [],
        pageNum: result.data.pageNum,
        pageSize: result.data.pageSize,
        total: result.data.total,
        filterId: filter,
        page: fetchPage,
        refresh
      };

      if (type === TYPE.notuse) {
        data.filter = result.data.filters;
      }

      commit(Types.FETCH_YOHO_COUPON_SUCCESS, data);
    } else {
      commit(Types.FETCH_YOHO_COUPON_FAILED);
    }

    return result.data.couponList ? result.data.couponList.length !== 0 : false;
  },

  async fetchYohoNum({commit}) {
    commit(Types.FETCH_YOHO_COUPON_REQUEST);

    const result = await this.$api.get('/api/coupon/yoho/num', {});

    if (result && result.code === 200) {
      commit(Types.FETCH_YOHO_COUPON_NUM_SUCCESS, result.data);
    } else {
      commit(Types.FETCH_YOHO_COUPON_FAILED);
    }
  },

  async fetchUfoList({commit}) {
    commit(Types.FETCH_YOHO_COUPON_REQUEST);

    const result = await this.$api.get('/api/coupon/ufo/list');

    if (result && result.code === 200) {
      commit(Types.FETCH_UFO_COUPON_SUCCESS, {
        list: result.data.map(_handleUfoCoupon)
      });
    } else {
      commit(Types.FETCH_YOHO_COUPON_FAILED);
    }
  },

  async getCouponCode({commit}, {code}) {
    commit(Types.FETCH_YOHO_COUPON_REQUEST);

    const result = await this.$api.post('/api/coupon/yoho/getcoupon', {
      coupon_code: code
    });

    if (result && result.code === 200) {
      commit(Types.FETCH_YOHO_COUPON_CODE_SUCCESS);
    } else {
      commit(Types.FETCH_YOHO_COUPON_FAILED);
    }

    return result || {};
  }
};