react-native-navigation的迁移库

NativeCommandsSender.js 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. import { NativeModules } from 'react-native';
  2. export default class NativeCommandsSender {
  3. constructor() {
  4. this.nativeCommandsModule = NativeModules.RNNBridgeModule;
  5. }
  6. setRoot(layoutTree) {
  7. this.nativeCommandsModule.setRoot(layoutTree);
  8. return Promise.resolve(layoutTree);
  9. }
  10. push(onContainerId, layout) {
  11. this.nativeCommandsModule.push(onContainerId, layout);
  12. return Promise.resolve(layout);
  13. }
  14. pop(containerId) {
  15. this.nativeCommandsModule.pop(containerId);
  16. return Promise.resolve(containerId);
  17. }
  18. popTo(containerId, targetContainerId) {
  19. this.nativeCommandsModule.popTo(containerId, targetContainerId);
  20. return Promise.resolve(targetContainerId);
  21. }
  22. popToRoot(containerId) {
  23. this.nativeCommandsModule.popToRoot(containerId);
  24. return Promise.resolve(containerId);
  25. }
  26. showModal(layout) {
  27. this.nativeCommandsModule.showModal(layout);
  28. return Promise.resolve(layout);
  29. }
  30. dismissModal(id) {
  31. this.nativeCommandsModule.dismissModal(id);
  32. return Promise.resolve(id);
  33. }
  34. dismissAllModals() {
  35. this.nativeCommandsModule.dismissAllModals();
  36. return Promise.resolve(true);
  37. }
  38. }