util.js 3.58 KB
import yoho from 'yoho';
import interceptClick from 'common/intercept-click';
import Modal from 'common/modal';
import cookie from 'yoho-cookie';

const getImgHost = function(url, bucket = 'goodsimg') {
    let urlArr = url.split('/'),
        num = urlArr[urlArr.length - 1].substr(1, 1),
        domain = `static.yhbimg.com/${bucket}`;

    url = domain + url;
    if (num === '1') {
        return '//img11.' + url;
    } else {
        return '//img12.' + url;
    }
};

const visibilitychange = function() {
    document.addEventListener('visibilitychange', function() {
        if (yoho.isApp && !document.hidden) {
            yoho.showLoading(false);
        }
    });

};

const getImgUrl = function(src, width = 300, height = 300, mode = 2) {
    return src ? src.replace(/(\{width}|\{height}|\{mode})/g, function($0) {
        const dict = {
            '{width}': width,
            '{height}': height,
            '{mode}': mode || 2
        };

        return dict[$0];
    }).replace(/https?:/, '') + '/interlace/1' : '';
};

const replaceHttp = function(src) {
    return src.replace(/https?:/, '');
};

// 退换货 申请 成功, 打开 modal
const applySuccuss = function(type, applyId) {
    yoho.store.set('orderDetail', true);

    const config = {
        exchange: {
            name: '换货',
            detailUrl: `/me/return/exchange/detail/${applyId}`
        },
        refund: {
            name: '退货',
            detailUrl: `/me/return/refund/detail/${applyId}`
        }
    };
    const kind = config[type];
    const goStatusPage = function() {
        const header = Object.assign({}, interceptClick.defaultTitleMap[1]);

        header.left.action = location.origin + '/me/return';
        header.title.des = `${kind.name}状态`;
        return yoho.goNewPage({
            header: header,
            url: location.origin + kind.detailUrl,
            backThrough: '1'
        });
    };

    const modal = new Modal({
        styleClass: 'return-success-modal',
        title: `${kind.name}申请已提交,请等待审核.....`,
        buttons: [{
            text: '返回订单',
            handler: function() {
                this.hide();
                yoho.goBack();
            }
        }, {
            text: '查看进度',
            handler: function() {
                this.hide();
                goStatusPage();
            }
        }]
    });

    modal.show();
};

const getChannel = function() {
    let channel = [
        {
            id: 0,
            en: 'men'
        },
        {
            id: 1,
            en: 'women'
        }
    ];

    yoho.ready(function() {
        yoho.getChannel({}, function(val) {
            const opt = {
                path: '/'
            };

            val = val - 1;
            cookie.set('_Channel', channel[val].en, opt);
            cookie.set('_ChannelIndex', val, opt);
        });
    });
};

const miniVersion = function (miniVersion) {
    let appVersion = cookie.get('app_version');
    let miniVersions = miniVersion.split('.');

    if (appVersion && typeof appVersion === 'string') {
        let versions = appVersion.split('.');

        if (versions.length === 3 &&
            (+versions[0] > +miniVersions[0] ||
            (+versions[0] === +miniVersions[0] && +versions[1] > +miniVersions[1]) ||
            (+versions[0] === +miniVersions[0] && +versions[1] === +miniVersions[1] && +versions[2] >= +miniVersions[2]))) {
            return true;
        }
    }
    return false;
};

export default {
    getImgHost,
    getImgUrl,
    applySuccuss,
    visibilitychange,
    getChannel,
    replaceHttp,
    miniVersion
};