Files
Genarrative/apps/mobile-shell/src/shell/lifecycle.ts
T
kdletters bc3b464349 统一三端桥接层职责命名
微信小程序 host-bridge 与 shell 文件改为职责命名

移动壳 host-bridge 与 shell 文件改为职责命名

更新原生壳结构门禁、微信 smoke 和宿主壳文档
2026-06-18 17:48:03 +08:00

14 lines
321 B
TypeScript

import type { AppStateStatus } from 'react-native';
export function lifecyclePayloadFromAppState(state: AppStateStatus) {
return {
state: state === 'active'
? 'active'
: state === 'background'
? 'background'
: 'inactive',
focused: state === 'active',
nativeState: state,
};
}