common.js 5.27 KB
/**
 * 页面公共逻辑和接口
 * @author: xuqi<qi.xu@yoho.cn>
 * @date: 2015/11/23
 */
var $ = require('yoho-jquery');


var $body = $('body');


function cookie(name) {
    var re = new RegExp(name + '=([^;$]*)', 'i'),
        matchPattern = '$1';

    return re.test(decodeURIComponent(document.cookie)) ? RegExp[matchPattern] : '';
}

function setCookie(name, value, options) {
    var expires = '',
        path,
        domain,
        secure,
        date;

    if (typeof value !== 'undefined') {
        options = options || {};
        if (value === null) {
            value = '';
            options.expires = -1;
        }

        if (options.expires &&
            (typeof options.expires === 'number' || options.expires.toUTCString)) {
            if (typeof options.expires === 'number') {
                date = new Date();
                date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
            } else {
                date = options.expires;
            }
            expires = '; expires=' + date.toUTCString();
        }
        path = options.path ? '; path=' + options.path : '';
        domain = options.domain ? '; domain=' + options.domain : '';
        secure = options.secure ? '; secure' : '';
        document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
    }
}

function getUser() {
    var c = cookie('_UID'),
        user;

    if (typeof c === 'undefined') {
        return 0;
    }

    user = c.split('::');

    if (typeof user === 'undefined' || user.length < 4) {
        return 0;
    }

    return user;
}

function getUid() {
    var user = getUser();

    if (user === 0) {
        return 0;
    }

    return user[1];
}

function getProfileName() {
    var user = getUser();

    if (user === 0) {
        return 0;
    }

    return decodeURIComponent(user[0]);
}

function getShoppingKey() {
    var c = cookie('_g');

    if (typeof c === 'undefined') {
        return '';
    }

    return JSON.parse(c).k;
}

// page cache改造-前端移动端检测
(function() {
    var mrefer = $('#m-refer').val();

    if (mrefer && window.navigator.userAgent.match(/(nokia|iphone|android|ipad|motorola|^mot\-|softbank|foma|docomo|kddi|up\.browser|up\.link|htc|dopod|blazer|netfront|helio|hosin|huawei|novarra|CoolPad|webos|techfaith|palmsource|blackberry|alcatel|amoi|ktouch|nexian|samsung|^sam\-|s[cg]h|^lge|ericsson|philips|sagem|wellcom|bunjalloo|maui|symbian|smartphone|midp|wap|phone|windows ce|iemobile|^spice|^bird|^zte\-|longcos|pantech|gionee|^sie\-|portalmmm|jig\s browser|hiptop|^ucweb|^benq|haier|^lct|opera\s*mobi|opera\*mini|320x320|240x320|176x220)/i)) { // eslint-disable-line
        window.location = mrefer;
    }
}());

// YAS统计代码
(function(w, d, s, j, f) {
    var a = d.createElement(s);
    var m = d.getElementsByTagName(s)[0];

    w.YohoAcquisitionObject = f;

    w[f] = function() {
        w[f].p = arguments;
    };

    a.async = 1;
    a.src = j;
    m.parentNode.insertBefore(a, m);
}(window, document, 'script', (document.location.protocol === 'https:' ? 'https' : 'http') + '://' + // eslint-disable-line
    'cdn.yoho.cn/yas-jssdk/1.0.18/yas.js', '_yas')); // eslint-disable-line

(function() {
    var uid = getUid();

    uid = uid === 0 ? '' : uid;

    window._ozuid = uid; // 暴露ozuid

    if (window._yas) {
        window._yas(1 * new Date(), '1.0.18', 'yohobuy_web', uid, '', '');
    }
}());

// window.resize在width<1180时适配成990
$(window).on('resize', function() {
    var w = $(this).width();

    // return top
    if (w < 1360) {
        $('.return-top').addClass('min');
    } else {
        $('.return-top').removeClass('min');
    }

    // body
    if (w < 1180) {
        $body.addClass('min-screen');
    } else {
        $body.removeClass('min-screen');
    }
}).trigger('resize');

// 对特殊的情况进行处理
function queryString() {
    var vars = {},
        hash,
        index,
        i,
        search = window.location.search,
        hashes = search ? decodeURIComponent(search).slice(1).split('&') : [];

    for (i = 0; i < hashes.length; i++) {
        index = hashes[i].indexOf('=');
        hash = hashes[i].substring(0, index);
        vars[hash] = hashes[i].substring(++index);
    }
    return vars;
}

// 个人中心左侧栏头像加载失败后,显示默认头像
(function() {
    $(window).load(function() {
        var thumb = document.getElementById('user-thumb');
        var img;

        if (!thumb) {
            return;
        }

        img = new Image();

        img.src = thumb.src;

        img.onerror = function() {
            $(thumb).parent().append('<div class="default-user-thumb"></div>').end().remove();
        };
    });
}());

function signinUrl() {
    return '//www.yohobuy.com/signin.html?refer=' + window.location.href;
}

function registerUrl() {
    return '//www.yohobuy.com/reg.html?refer=' + window.location.href;
}

function jumpUrl(url) {
    window.location.href = url;
}

window.cookie = cookie;

window.setCookie = setCookie;

window.getUser = getUser;

window.getUid = getUid;

window.getProfileName = getProfileName;

window.getShoppingKey = getShoppingKey;

window.queryString = queryString;

window.signinUrl = signinUrl;

window.registerUrl = registerUrl;

window.jumpUrl = jumpUrl;

require('./header');
require('./footer');