import Vue from 'vue'
|
|
const Emitter = new Vue()
|
|
export const on = Emitter.$on.bind(Emitter)
|
export const off = Emitter.$off.bind(Emitter)
|
export const once = Emitter.$once.bind(Emitter)
|
export const emit = Emitter.$emit.bind(Emitter)
|
|
export {
|
invokeCallbackHandler,
|
removeCallbackHandler
|
}
|
from 'uni-helpers/api'
|
|
export function subscribe (event, callback) {
|
return on('view.' + event, callback)
|
}
|
|
export function unsubscribe (event, callback) {
|
return off('view.' + event, callback)
|
}
|
|
export function subscribeHandler (event, args, pageId) {
|
if (process.env.NODE_ENV !== 'production') {
|
console.log(`[subscribeHandler][${Date.now()}]:${event}, ${JSON.stringify(args)}, ${pageId}`)
|
}
|
return emit('view.' + event, args, pageId)
|
}
|
|
export {
|
publishHandler
|
}
|
from 'uni-platform/service/bridge'
|