header.js 30.2 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042
/**
 * 公共头部
 * @author: yyq<yanqing.yang@yoho.cn>
 * @date: 2016/5/9
 */
var $ = require('yoho-jquery'),
    handlebars = require('yoho-handlebars');

var $tool = $('.tool-wrapper'),
    $yohoGroup = $tool.find('.yoho-group'),
    $loginBox = $('#loginBox');

var $head = $('.head-wrapper'),
    $searchForm = $('#search-form'),
    $searchKey = $searchForm.find('.search-key'),
    $logotrans = $head.find('.main-logo'),
    $searchSug = $head.find('.search-suggest'),
    $searchHistory = $head.find('.search-suggest-history'),
    $searchHistoryHbs = $('#search-suggest-history'),
    $goCart = $head.find('.go-cart'),
    $myYohoBox = $('#myYohoBox'),
    $goodsNum = $goCart.find('.goods-num-tip'),
    $miniCart = $head.find('.mini-cart-wrapper'),
    $dropDown = $tool.find('.nav-drop-down-container');

var $subNav = $('.sub-nav-list.cure .contain-third');

var fetchUserInfoEvent = $.Callbacks('once'); // eslint-disable-line

var defaultSearch = $('#defaultsearch').val() || '';

var thirdLineNum = 9,
    delayer,
    centerFn,
    loginFn,
    cartFn,
    requestFrame;

var logoAngle = 0,
    loopTime = 500,
    reg = /^[\^\!\+\-\(\)\:\[\]\\\{\}\~\*\?\|\&\;\/]{0,}$/g;

var dataLayer = [];

var cartTimer;

// banner和地址的映射
var bannerMap = {
        listboys: '4f78b0f418fc42314d8b6e791cfb7fa8',
        listgirls: '00c1f025a51b6b597dc37925951ea27d',
        listkids: 'b02df11184727701ade1b6de9737d08c',
        listlifestyle: 'fd35c52dced0c880976ba858346d1fc5',
        searchboys: '9fb8986ea700cc27a8057361c3924394',
        searchgirls: 'e3e207a1443ca60c8037fe52a5560c18',
        searchkids: '620fc77f479da8feaeb06f2324e5d0bb',
        searchlifestyle: 'a3c93301c6ffaf3ed0f36a4a451be36d',
        uniquebrandboys: '2ebb0810c0d1a67e5229149c9c3aba7d',
        uniquebrandgirls: '99e23385f4ba4b65f406b7e2968ac821',
        uniquebrandkids: 'a74ebc9b17840c91b9ea46568111fe6b',
        uniquebrandlifestyle: '0e8c81ead53f56302baa4d0ad967f527',
        brandsboys: '77b352db07129c76a9d532acad149f9f',
        brandsgirls: 'bf047f16e52ebc38be5ce9c7623831e6',
        brandskids: 'e3ae1ce9b5e13c6d271ef3eccb831652',
        brandslifestyle: 'e4ac8029c30f65d7f1af030980d140fe',
        newboys: '869d3c5f3b450fb52101d00a61ce87cb',
        newgirls: 'd953b6dfdac02483d1dcce8d96055954',
        newkids: '0874cb6d75df8e0e78f2d475e53ecc08',
        newlifestyle: '43e8fc8e178115c262bbce2bd0012db7',
        saleboys: 'c846e3165c994769b4201d8c32f3ae9b',
        salegirls: '52b1d389edcbc62d65de71b80c4d6ad0',
        salekids: 'ad8b1703c761ba00973868ab5199cc27',
        salelifestyle: '7acc64905c70ac91846f43fb2cec4bbd',
        homeboys: 'b0856a771ef1b59ab1234c74688fa42d',
        homegirls: '2bd61fa12e4933211518f70fe5ce3c48',
        homekids: '895c59e8c64b40399c9533509507320c',
        homelifestyle: '2e037d4e25d2767352ca3e0a4627f7bd',
        indexboys: '0c911d3000f52e8ca7cffb74f5864c29',
        indexgirls: 'b645b8980c423ab30485e0a9d08c2ef7',
        indexkids: '17f6d5d5d454d2c507bc5fcbc90f7756',
        indexlifestyle: '735cd393e841762af8793c346abbbc36'
    },
    cookieMap = {};

$('#signin-url').attr('href', window.signinUrl());
$('#reg-url').attr('href', window.registerUrl());

$('.phoneapp').mouseenter(function() {
    window._html && window._hmt.push(['_trackEvent', '二维码', '头部手机版', '', '']); // eslint-disable-line
}).click(function() {
    window._html && window._hmt.push(['_trackEvent', '二维码', '头部手机版', '', '']); // eslint-disable-line
});

$('.we-chat').mouseenter(function() {
    window._html && window._hmt.push(['_trackEvent', '二维码', '头部手机版', '', '']);
}).click(function() {
    window._html && window._hmt.push(['_trackEvent', '二维码', '头部手机版', '', '']);
});

// handlebars模板
centerFn = handlebars.compile($('#simple-account-info-tpl').html() || '');
loginFn = handlebars.compile($('#header-login-info-tpl').html() || '');
cartFn = require('hbs/header/mini-cart-tpl.hbs'); // handlebars.compile($('#mini-cart-tpl').html() || '');

// handlebars helper
handlebars.registerHelper('notzero', function(v1, options) {
    if (v1 !== '0') {
        return options.fn(this);
    } else {
        return options.inverse(this);
    }
});

handlebars.registerHelper('gt', function(v1, v2, options) {
    var ret = v1 > v2;

    if (options.fn) {
        if (ret) {
            return options.fn(this);
        } else {
            // 不满足条件执行{{else}}部分
            return options.inverse(this);
        }
    } else {
        return ret;
    }
});

function getSource(column, postition, event) {
    dataLayer.push({
        louceng: column,
        weizhi: postition,
        event: event
    });
}

function closeCover() {
    var $cover = $('#cover');

    $cover.remove();
}

// 设置头部banner
function setTopBanner(data) {
    var topbanner = '';

    if (data && data.url !== '') {
        topbanner = '<a target="_blank" href="' + data.url + '" class="page-top-banner"' +
            'style="height:36px;border:none;background-image:url(' + window.unescape(data.src) + ');' +
            'background-position: center;display:block;">&nbsp;</a>';
    } else {
        topbanner = '<div class="yoho-notice">' +
            '<div class="notice-container center-content">' +
            '<h4 class="notice-title">关于系统升级的公告</h4>' +
            '<div class="notice-content">' +
            '<p class="tips">尊敬的顾客:</p>' +
            '<p class="detail">您好!为了向您提供更优质的服务,目前系统正在升级,请耐心等待。</p>' +
            '<p class="detail">系统升级期间,部分地区用户体验会有暂时中断,如遇紧急事宜,欢迎垂询客服热线:' +
            '400-889-9646 09:00-22:30(周一至周日)。稍后系统将恢复正常' +
            '使用,欢迎您继续光顾YOHO!BUY有货!带来不便之处深表歉意,请您谅解!</p>' +
            '</div>' +
            '</div>' +
            '</div>';
    }
    $('body').prepend(topbanner);
}

function browserLowVersionPrompt() {
    var prompt = '<div class="yoho-browser-notice">' +
        '<div class="center-content">' +
        '<h4 class="notice-title">YOHO!BUY有货</h4>' +
        '<div class="notice-content">' +
        '<p>尊敬的顾客:您好!您当前浏览器版本过低,存在安全风险,为了向您提供更优质的服务,请尽快升级浏览器,并设置安装的浏览器为默认浏览器!</p>' +
        '<div class="browser-list">' +
        '<a href="http://www.google.cn/intl/zh-CN/chrome/browser/desktop/index.html" target="_blank">' +
        '<span class="chrome-img browser-img"></span>' +
        '<span>谷歌浏览器</span>' +
        '</a>' +
        '<a href="http://www.firefox.com.cn/download/" target="_blank">' +
        '<span class="firefox-img browser-img"></span>' +
        '<span>火狐浏览器</span>' +
        '</a>' +
        '<a href="http://se.360.cn/" target="_blank">' +
        '<span class="qihu360-img browser-img"></span>' +
        '<span>360浏览器</span>' +
        '</a>' +
        '<label class="hide-notice">暂不,继续浏览 >></label>' +
        '</div>' +
        '</div>' +
        '</div>' +
        '</div>';

    $('body').prepend(prompt);

    $('.hide-notice').on('click', function() {
        $('.yoho-browser-notice').remove();
    });
}

// cookie集合
function exeCookieMap() {
    var cookies = document.cookie;

    // console.log(cookies);
    var cookiearr = cookies.split(';');
    var i;
    var temparr;
    var key;

    for (i = 0; i < cookiearr.length; i++) {
        temparr = cookiearr[i].split('=');
        if (typeof temparr[0] !== 'undefined') {
            key = temparr[0].replace(/\s/g, '');
            cookieMap[key] = temparr[1];
        }
    }
}

/**
 * 获得banner & 异常通知
 * @return {[type]} [description]
 */
function getBannerAndNotice() {
    var INDEXKIDS = 'indexkids',
        INDEXLIFESTYLE = 'indexlifestyle',
        INDEXBOYS = 'indexboys',
        INDEXWOMAN = 'indexgirls',
        UNIQUEBRAND = 'uniquebrand';
    var url = window.location.href;
    var host = window.location.host;
    var code = '';
    var firstarea;

    exeCookieMap();

    if (url.indexOf('search') !== -1) {
        code = bannerMap['search' + cookieMap._Channel];
    }
    if (url.indexOf('list') !== -1) {
        code = bannerMap['list' + cookieMap._Channel];
    }
    if (url.indexOf('brands') !== -1) {
        code = bannerMap['brands' + cookieMap._Channel];
    }
    if (url.indexOf('new') !== -1) {
        code = bannerMap['new' + cookieMap._Channel];
    }
    if (url.indexOf('sale') !== -1) {
        code = bannerMap['sale' + cookieMap._Channel];
    }
    if (url.indexOf('home') !== -1) {
        code = bannerMap['home' + cookieMap._Channel];
    }
    if (url.indexOf('kids') !== -1) {
        code = bannerMap[INDEXKIDS];
    }
    if (url.indexOf('woman') !== -1 || url.indexOf('girls') !== -1) {
        code = bannerMap[INDEXWOMAN];
    }
    if (url.indexOf('lifestyle') !== -1) {
        code = bannerMap[INDEXLIFESTYLE];
    }
    if (url.indexOf('www.yohobuy.com') !== -1 && window.location.pathname === '/') {
        code = bannerMap[INDEXBOYS];
    }
    firstarea = host.split('.')[0];
    if (firstarea !== 'list' && firstarea !== 'search' && firstarea !== 'www' &&
        firstarea !== 'new' && firstarea !== 'item' && firstarea !== 'guang') {
        code = bannerMap[UNIQUEBRAND + cookieMap._Channel];
    }

    $.getJSON('//new.yohobuy.com/common/getbanner?callback=?', {
        client_type: 'web',
        content_code: code
    }, function(JsonData) {
        if (+JsonData.code === 200) {
            if (typeof JsonData.data === 'object') {
                if (JsonData.data.url !== '') {
                    setTopBanner(JsonData.data);
                } else {
                    setTopBanner();
                }
            }
        }
    });
}

// 格式化三级菜单
function formatThirdMenu() {
    $subNav.each(function() {
        var $thirdList = $(this).find('.hide-list'),
            list = [],
            i = 0;

        if ($thirdList.length) {
            $thirdList.children().each(function() {
                if (i % thirdLineNum === 0) {
                    list.push('');
                }
                list[list.length - 1] += this.outerHTML + '';
                i++;
            });
            for (i = 0; i < 3; i++) {
                if (!list[i]) {
                    return;
                }
                $thirdList.before('<dl class="category-list">' + list[i] + '</dl>');
            }
            $thirdList.remove();
        }
    });
}

// 更新头部登陆信息
function updateLoginInfo(data) {
    if (data.curLevel * 1 === 3) {
        data.vip3 = true;
    }

    $tool.find('.simple-user-center').html(centerFn(data));
}

// 同步sso登录状态
function syncLoginInfo() {
    var param = {
        return_type: 'jsonp',
        method: 'open.passport.get'
    };

    return $.getJSON('//www.yohobuy.com/common/passport/?callback=?', param, function(jsonData) {
        if (jsonData && jsonData.data && jsonData.data.result !== -1) {
            updateLoginInfo(jsonData.data);
        } else {
            window.setCookie('_UID', '', {
                domain: '.yohobuy.com',
                expires: -1
            });
        }
    });
}

// 关键词搜索联想
function searchSuggest(key) {
    var param = {
        return_type: 'jsonp',
        keyword: key
    };

    $.getJSON('//search.yohobuy.com/product/search/suggest?callback=?', param, function(jsonData) {
        var searchSuggestHtml;

        if (jsonData.code === 200) {
            if (jsonData.data && jsonData.data.length) {
                searchSuggestHtml = handlebars.compile($('#search-suggest-tml').html() || '');
                $searchSug.html(searchSuggestHtml(jsonData)).show();
            } else {
                $searchSug.hide();
            }
        }
    });
}

function submitSearch() {
    var searchKey = $searchKey.val();

    searchKey = $.trim(searchKey.toLowerCase());

    if (reg.test(searchKey) && searchKey !== '') {
        location.href = '//search.yohobuy.com/error?query=' + searchKey;
    } else {
        if (searchKey === '') {
            $('#query-key').val(defaultSearch);
        }
        $searchKey.val(searchKey);
        $searchForm.submit();
    }

    // 触发历史搜索保存
    searchSuggestHistory();  //eslint-disable-line
}

// 同步mini购物车数据
function syncCratInfo(strG) {
    var info, total = 0;

    if (strG) {
        window.setCookie('_g', strG, {
            path: '/',
            domain: '.yohobuy.com'
        });
    }

    if (!$goodsNum || !$goodsNum.length) {
        return cartTimer ? clearInterval(cartTimer) : false;
    }

    if (window.cookie('_g')) {
        info = $.parseJSON(window.cookie('_g'));
        total = parseInt(info._nac, 10) + parseInt(info._ac, 10);
        total = total > 0 ? total : 0;
        $goCart.data({
            key: info._k,
            num: total
        });
        $goodsNum.text(total);
    }

    total ? $goodsNum.removeClass('hide') : $goodsNum.addClass('hide');
}

function refreshCartNum() {
    var $totalInfo = $miniCart.find('[data-role=totalinfo]');
    var total = 0;

    $miniCart.find('.goods-item.hide').each(function() {

        var $t = $(this);
        var val = $t.data('num') || 0;

        total += Number(val);
    });

    if (total > 0) {
        $totalInfo.show();
        $totalInfo.find('[data-role=last-num]').text(total);
    } else {
        $totalInfo.hide();
    }
}

function loadCartDetail() {

    $.getJSON('//www.yohobuy.com/cart/cart/minicart?callback=?', {}, function(jsonData) {
        var totalGoods = [],
            infoArr = [
                'main_goods',
                'advance_goods',
                'outlet_goods',
                'gift_goods',
                'need_pay_gifts'
            ],
            data;

        if (jsonData.code === 200) {
            data = jsonData.data;
            $.each(infoArr, function(k, v) {
                if (data[v]) {
                    totalGoods = $.merge(totalGoods, data[v]);
                }
            });

            if (totalGoods && totalGoods.length) {
                data.totalGoods = totalGoods;
                $miniCart.html(cartFn({
                    carData: data
                }));
                refreshCartNum();
            } else {
                syncCratInfo('{"_k":"' + $goCart.data().key + '","_nac":0,"_ac":0,"_r":0}');
                $miniCart.html('<div class="empty-cart"><h3>您的购物车暂无商品</h3></div>');
            }
        }
    });
}

function delCartGoods(data, callback) {
    var param = {
        return_type: 'jsonp',
        product_sku: data.sku,
        promotion_id: data.proid,
        product_num: data.num
    };

    $.getJSON('//www.yohobuy.com/cart/cart/del?callback=?', param, function(jsonData) {
        var strG = '';

        if (jsonData.code === 200) {
            if (jsonData.data &&
                typeof jsonData.data.total_goods_num !== 'undefined') {
                strG = '{"_k":"' + data.key + '","_nac":' +
                    jsonData.data.total_goods_num + ',"_ac":0,"_r":0}';
                syncCratInfo(strG);

                if (jsonData.data.total_goods_num * 1 === 0) {
                    $miniCart.html('<div class="empty-cart"><h3>您的购物车暂无商品</h3></div>');
                }
            }
            return callback();
        }
    });
}


/**
 * css3动画
 * @return {[type]}   [description]
 */
function requestFrameAct() {
    var prefixList = ['webkit', 'moz', 'ms'];
    var func1 = prefixList[0] + 'RequestAnimationFrame';
    var func2 = prefixList[1] + 'RequestAnimationFrame';
    var func3 = prefixList[2] + 'RequestAnimationFrame';

    if (window[func1]) {
        return function(callback) {
            requestAnimationFrame(callback);
        };
    }
    if (window[func2]) {
        return function(callback) {
            window[func2](callback);
        };
    }
    if (window[func3]) {
        return function(callback) {
            window[func3](callback);
        };
    }
    return function(callback) {
        window.setTimeout(callback, 67);
    };
}


/**
 * css3动画
 * @return {[type]} [description]
 */

function tsAnimate() {
    logoAngle += 10;
    $logotrans.css({
        transform: 'rotateX(' + logoAngle + 'deg)',
        '-webkit-transform': 'rotateX(' + logoAngle + 'deg)',
        '-moz-transform': 'rotateX(' + logoAngle + 'deg)'
    });
    if (logoAngle / 90 % 2 === 1) {
        $logotrans.toggleClass('logo-cn');
    }
    if (logoAngle / 90 % 2 === 0 && logoAngle % 360 !== 0) {
        window.setTimeout(tsAnimate, 3000);
    } else {
        if (logoAngle % 360 === 0) {
            window.setTimeout(tsAnimate, 1 * 60 * 1000);
        } else {
            requestFrame(function() {
                tsAnimate();
            });
        }
    }
}

/**
 * 淡出
 * @return {[type]} [description]
 */
function fadeAnimate() {
    var cycle = 3000;

    if ($logotrans.hasClass('logo-cn-ie')) {
        cycle = 1 * 60 * 1000;
    }

    $logotrans.fadeOut(loopTime, function() {
        $logotrans.toggleClass('logo-cn-ie');
        $logotrans.fadeIn(loopTime, function() {
            window.setTimeout(function() {
                fadeAnimate();
            }, cycle);
        });
    });
}


/**
 * 检测是否支持css3的动画
 * @return {Boolean} [description]
 */
function isSupportCss3Animation() {
    var thisFunc,
        prefixList = ['webkit', 'moz', 'ms'],
        i;

    for (i = 0; i < prefixList.length; i++) {
        thisFunc = prefixList[i] + 'RequestAnimationFrame';
        if (window[thisFunc]) {
            return true;
        } else {
            return false;
        }
    }
}

// 处理pageCache频道显示异常问题
function syncPageChannel() {
    var $header = $('#yoho-header'),
        $navs;
    var channel = window.homePage || window.cookie('_Channel') || 'boys',
        qs = window.queryString();

    channel = qs.channel ? qs.channel : channel;

    if ($header && $header.length) {
        $navs = $header.find('.' + channel);

        if (!$navs.length) {
            channel = 'boys';
            $navs = $header.find('.' + channel);
        }

        // 更新频道菜单选中状态
        $navs.siblings('.cure').removeClass('cure');
        $navs.addClass('cure');

        // 更新频道颜色
        $header.addClass(channel).find('.func-area').removeClass('hide');

        // 更新三级菜单jq对象
        $subNav = $('.sub-nav-list.cure .contain-third');
    }
}

if (isSupportCss3Animation()) {
    requestFrame = requestFrameAct();
    window.setTimeout(tsAnimate, 3000);
} else {
    window.setTimeout(fadeAnimate, 3000);
}
syncPageChannel();
formatThirdMenu(); // 格式化三级菜单

(function() {
    if (document.all && !document.querySelector) {
        browserLowVersionPrompt(); // 低版本升级提示
    } else {
        getBannerAndNotice(); // 获取头部banner
    }
}());

cartTimer = setInterval(syncCratInfo, 2000); // 定时同步购物车数量

// 获取头部登陆信息
(function() {
    var uid = getUid(),   //eslint-disable-line
        profileName = getProfileName();  // eslint-disable-line

    var info = {
        usercenter: '//www.yohobuy.com/home?t=' + new Date().getTime(),
        nickname: profileName,
        signout: '//www.yohobuy.com/logout.html'
    };

    if (uid !== 0) {
        $loginBox.html(loginFn(info));
    }

    $loginBox.show();
}());

fetchUserInfoEvent.add(function() {
    if ($('.simple-user-center').length === 0) {
        return;
    }
    syncLoginInfo();
});

if ($('[data-role=tool-wrapper]').size() > 0) {
    $dropDown.on('mouseenter', function() {
        $(this).addClass('nav-drop-down-hover');
        $(this).find('.nav-drop-down').fadeIn();
    }).mouseleave(function() {
        $(this).removeClass('nav-drop-down-hover');
        $(this).find('.nav-drop-down').hide();
    });
}

$myYohoBox.hover(function() {
    var uid = getUid();  // eslint-disable-line

    $myYohoBox.addClass('myyoho-hover');

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

    fetchUserInfoEvent.fire();
}, function() {
    $myYohoBox.removeClass('myyoho-hover');
});

$yohoGroup.hover(function() {
    var data = $(this).data();

    $(this).text(data.cn);
}, function() {
    var data = $(this).data();

    $(this).text(data.en);
});

$searchKey.keyup(function(e) {
    var val = $.trim($(this).val()),
        $child = $searchSug.find('li'),
        $act = $searchSug.find('.action'),
        $focus;

    if (e.which > 36 && e.which < 41) {

        if (e.which === 38) {
            $focus = $act.prev();
            if (!$act.length || !$focus.length) {
                $focus = $child.eq($child.length - 1);
            }
        } else if (e.which === 40) {
            $focus = $act.next();
            if (!$act.length || !$focus.length) {
                $focus = $child.eq(0);
            }
        } else {
            return;
        }

        $child.removeClass('action');
        $focus.addClass('action');
        $(this).val($focus.find('.searchvalue').text());
    } else if (e.which === 13) {
        submitSearch();
    } else {
        if ($searchSug && $searchSug.length) {
            val = val.replace(new RegExp('\'', 'gm'), ''); // 去掉特殊字符
            searchSuggest(val);
        }
    }

    if ($searchKey.val() === '') {
        // 查询历史记录
        searchSuggestHistory();  //eslint-disable-line
    } else {
        $searchHistory.hide();
    }

}).focus(function() {
    var val = $.trim($(this).val());

    if (val === defaultSearch) {
        $(this).val('');
    }

    $(this).css('color', '#333');


    if ($searchKey.val() === '') {
        // 查询历史记录
        searchSuggestHistory();  //eslint-disable-line
    }


}).blur(function() {
    var val = $.trim($(this).val());

    if (val === '') {
        $(this).val(defaultSearch).css('color', '#999');
    }

    setTimeout(function() {
        $searchSug.hide();
        $searchHistory.hide();
    }, 200);
});

if ($miniCart && $miniCart.length) {
    $goCart.hover(function() {
        var data, _html = '';

        $searchHistory.hide();

        if ($goCart.hasClass('on-hover')) {
            return;
        }

        data = $goCart.data();
        if (data && data.num * 1) {
            _html = '<div class="loading-cart"><h3>加载中,请稍后</h3></div>';
            loadCartDetail(data.key);
        } else {
            _html = '<div class="empty-cart"><h3>您的购物车暂无商品</h3></div>';
        }
        $miniCart.html(_html);
        $goCart.addClass('on-hover');
    }, function() {
        $goCart.removeClass('on-hover');
    });

    $goCart.on('click', '.cart-goods-del', function() {
        var $dom = $(this),
            data = $dom.data(),
            callback;

        $searchHistory.hide();

        if (data) {
            callback = function() {
                $dom.closest('.goods-item').remove();
                $miniCart.find('.goods-item:lt(5)').removeClass('hide');
                refreshCartNum();
            };
            data.key = $goCart.data().key;
            delCartGoods(data, callback);
        }
    });
}

$subNav.on({
    mouseenter: function() {
        var $thirdNav = $(this).children('.third-nav-wrapper'),
            $show = $thirdNav.find('.show-detail'),
            param = {};

        delayer = setTimeout(function() {
            $thirdNav.show();
        }, 200);

        if (!$show.length || $show.hasClass('show')) {
            return;
        }
        param.content_code = $show.data().code;
        param.client_type = 'web';
        param.width = 337;
        param.height = 250;
        param._ = new Date();
        $.getJSON('//new.yohobuy.com/common/getbanner?callback=?', param, function(JsonData) {
            if (JsonData.code === 200) {
                $show.addClass('show');
                $show.find('img').attr('src', JsonData.data.src);
                $show.find('a').attr('href', JsonData.data.url);
                $show.find('.title').text(JsonData.data.title);
            }
        });
    },
    mouseleave: function() {
        var $thirdNav = $(this).children('.third-nav-wrapper');

        if (delayer) {
            clearTimeout(delayer);
        }
        $thirdNav.hide();
    }
});

/**
 * 首次进入有弹窗
 * @return {[type]} [description]
 */
function actionCover() {
    var gender = window.cookie('_Gender');
    var newMask = '';
    var windowheight = '';
    var selfheight = '';
    var containertop;
    var length = '';

    if (window.location.href === document.location.protocol + '//www.yohobuy.com/' &&
        (typeof gender === 'undefined' || gender === '' || gender === null)) {
        $.get('/guide', function(data) {
            newMask = document.createElement('div');
            newMask.id = 'cover';
            newMask.innerHTML = data;
            document.body.appendChild(newMask);
            windowheight = $(window).height();
            selfheight = $('.guide-box').height();
            containertop = windowheight / 2 - selfheight / 2;
            length = $('.guide-box .clear').find('li').length;
            $('.guide-box').css({
                width: (200 * length) + 'px',
                top: containertop + 'px'
            });
            $('#cover').bind('click', function() {
                window.setCookie('_Gender', '1,3', {
                    path: '/',
                    domain: '.yohobuy.com',
                    expires: 90
                });
                window.setCookie('_Channel', 'boys', {
                    path: '/',
                    domain: '.yohobuy.com',
                    expires: 7
                });
                closeCover();
            });
            $('#cover .guide-box .close').bind('click', function() {
                getSource('弹窗', 'CLOSE', 'homepage_man');
                window.setCookie('_Gender', '1,3', {
                    path: '/',
                    domain: '.yohobuy.com',
                    expires: 90
                });
                window.setCookie('_Channel', 'boys', {
                    path: '/',
                    domain: '.yohobuy.com',
                    expires: 7
                });
                closeCover();
            });
            $('.boys img , .boys .go').bind('click', function() {
                getSource('弹窗', 'BOYS', 'homepage_man');
                window.setCookie('_Gender', '1,3', {
                    path: '/',
                    domain: '.yohobuy.com',
                    expires: 90
                });
                window.setCookie('_Channel', 'boys', {
                    path: '/',
                    domain: '.yohobuy.com',
                    expires: 7
                });
                closeCover();
            });
            $('.girls img, .girls .go').bind('click', function() {
                getSource('弹窗', 'GIRLS', 'homepage_woman');
                window.setCookie('_Gender', '2,3', {
                    path: '/',
                    domain: '.yohobuy.com',
                    expires: 90
                });
                window.setCookie('_Channel', 'girls', {
                    path: '/',
                    domain: '.yohobuy.com',
                    expires: 7
                });
            });
            $('.lifestyle img, .lifestyle .go').bind('click', function() {
                window.setCookie('_Channel', 'lifestyle', {
                    path: '/',
                    domain: '.yohobuy.com',
                    expires: 7
                });
                getSource('弹窗', 'LIEFSTYLE', 'homepage_lifestyle');
            });
            $('#cover .guide-box').bind('click', function(event) {
                event.stopPropagation();
            });
        });
        $('#cover .guide-box').bind('click', function(e) {
            e.stopPropagation();
        });
    }
}

window.submitSearch = submitSearch;

function emailUserCertTip() {
    var $certTip = $('#yoho-header .yoho-cert-tip');

    if (!$certTip.length) {
        return;
    }

    return $.getJSON('//www.yohobuy.com/passport/cert/headerTip?callback=?', function(jsonData) {
        if (jsonData && jsonData.data === 'Y') {
            $('#yoho-header .swindle-info').addClass('hide');
            $certTip.html(
                '<i class="iconfont left">&#xe63f;</i> ' +
                '您的账号安全等级较低,建议您立即<a href="//www.yohobuy.com/passport/cert/index">绑定手机号</a>');
        }
    });
}

/**
 * 查询跳转后保留关键字
 * @return {[type]} [description]
 */
function actionAddKeyWords() {
    var keywords = $('#nav_keyword').text();

    if (keywords !== '') {
        $searchKey.val(keywords).css('color', '#333');
    } else {
        $searchKey.val(defaultSearch).css('color', '#999');
    }
    $(document).click(function(e) {
        if (!$(e.target).closest('.searchspan, .search-list').length) {
            $('.search-list').hide();
        }
    });
}

/**
 * 历史记录 搜索提示  api
 * @return {[type]} [description]
 */

function searchSuggestHistory() {
    var param = {
        return_type: 'jsonp',
        query: encodeURIComponent((window.queryString().query || '').replace(/\+/ig, ' '))
    };

    if ($searchHistory.children().length) {
        return $searchHistory.show();
    }

    if ($searchKey.attr('alt')) {
        param.query = '';
        $searchKey.attr('alt', false);
    }

    $.getJSON('//search.yohobuy.com/product/search/history?callback=?', param, function(jsonData) {

        if ($searchKey.val() === '') {

            var searchSuggestHistoryHtml; //eslint-disable-line

            searchSuggestHistoryHtml = handlebars.compile($searchHistoryHbs.html() || '');
            $searchHistory.html(searchSuggestHistoryHtml(jsonData)).show();

            if ($searchHistory.find('li').length === 0) {
                $searchHistory.hide();
            } else {
                $searchHistory.show();
            }

            // 历史记录清空
            $('.search-suggest-title .search-del').click(function() {
                window.setCookie('_History', '', {domain: '.yohobuy.com'});
                $(this).closest('.search-suggest-history').hide();
                $searchKey.attr('alt', true);
                return false;
            });

        }
    });
}

$(function() {
    $('.code-down-box').bind('click', '.icon-del', function() {
        $('.code-down-box').hide();
    });
});

actionCover();
actionAddKeyWords();
setTimeout(emailUserCertTip, 0);