终端事件

有一些事件不是发给单个 UI,而是发给整个业务的,例如屏幕的翻转、网络的变化等等,我们称之它为 终端事件

事件监听器

这里是向前端发送一个名叫 rotate 的事件,里面有个参数是 result,这样就发送到前端去了。

  1. import { HippyEventEmitter } from '@hippy/react';
  2. const hippyEventEmitter = new HippyEventEmitter();
  3. this.call = hippyEventEmitter.addListener('rotate', evt => console.log(evt.result));

事件卸载

如果不需要使用的时候记得调用一下移除监听的方法,一般放在组件的卸载生命周期中执行。

  1. this.call.remove()

实例销毁事件

最低支持版本 2.3.4

当 hippy js 引擎或者 context 被销毁时会触发该事件,hippy业务可以通过监听 destroyInstance 事件做一些离开时的操作,但回调函数不能使用 async

  1. Hippy.on('destroyInstance', () => {
  2. // do something
  3. });

容器大小改变事件

只有 Android 支持

当容器大小改变时,如屏幕旋转、折叠屏切换等,会触发该事件

  1. import { HippyEventEmitter } from '@hippy/react';
  2. const hippyEventEmitter = new HippyEventEmitter();
  3. hippyEventEmitter.addListener('onSizeChanged', ({ oldWidth, oldHeight, width, height }) => {
  4. // oldWidth: 旧的宽度;oldHeight: 旧的高度;width: 新的宽度; height: 新的高度
  5. console.log('size', oldWidth, oldHeight, width, height);
  6. });