index.js 1.69 KB
/**
 * 全局公有方法
 */

/**
 * 请不要把原有 yohobuy 项目的代码复制过来!
 * 请不要把原有 yohobuy 项目的代码复制过来!
 * 请不要把原有 yohobuy 项目的代码复制过来!
 *
 * 所有与业务无关,复用多的代码尽量模块化
 * 除非万不得已,不要声明全局变量
 * 这一块的代码很少
 *
 * 1. cookie 操作请使用 yoho-cookie 文档:https://github.com/florian/cookie.js
 * 2. 查询字符串读取 请使用 yoho-qs
 */
const $ = require('jquery');
const yoho = require('yoho');
const Vue = require('vue');
const util = require('common/util');
const interceptClick = require('common/intercept-click');
const bus = require('common/vue-bus');

/**
 * iOS 7 不支持 Promise, vue-lazyload 有用到,所以全局申明
 */
global.Promise = Promise;

// 隐藏 App 默认显示的 loading
Vue.mixin({
    ready() {
        if (this === this.$root && location.pathname !== '/sidebar') {
            yoho.showLoading(false);
            util.visibilitychange();
        }
    }
});

$(() => {
    const $body = $('body');

    // 页面内无 JS 时, 自动隐藏 App 显示的 Loading
    if ($body.hasClass('no-local-js')) {
        yoho.showLoading(false); // 隐藏 App 默认显示的 loading
        util.visibilitychange();
    }

    // 拦截页面内所有 a 标签的跳转
    $body.on('click', 'a[href]', function() {
        if (!$(this).hasClass('no-intercept')) {
            interceptClick.intercept($(this).attr('href'));
            return false;
        }
    });

    // App 发送给 H5 的事件,统一转为 Vue-bus 的事件
    yoho.addNativeMethod('triggerH5Event', (eventName) => {
        bus.$emit(eventName);
    });
});