subscribe.ts 466 字节
Newer Older
fxy060608's avatar
fxy060608 已提交
1
import { ON_PAGE_SCROLL, ON_REACH_BOTTOM } from '@dcloudio/uni-shared'
fxy060608's avatar
fxy060608 已提交
2
import { invokeHook } from '../../helpers/hook'
fxy060608's avatar
fxy060608 已提交
3

fxy060608's avatar
fxy060608 已提交
4
const SUBSCRIBE_LIFECYCLE_HOOKS = [ON_PAGE_SCROLL, ON_REACH_BOTTOM]
fxy060608's avatar
fxy060608 已提交
5

6
export function initSubscribe() {
fxy060608's avatar
fxy060608 已提交
7 8 9
  SUBSCRIBE_LIFECYCLE_HOOKS.forEach((name) =>
    UniServiceJSBridge.subscribe(name, createPageEvent(name))
  )
fxy060608's avatar
fxy060608 已提交
10 11 12 13
}

function createPageEvent(name: string) {
  return (args: unknown, pageId: number) => {
14
    invokeHook(pageId, name, args)
fxy060608's avatar
fxy060608 已提交
15
  }
16
}