12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- import { NativeModules } from 'react-native';
-
- export default class NativeCommandsSender {
- constructor() {
- this.nativeCommandsModule = NativeModules.RNNBridgeModule;
- }
-
- setRoot(layoutTree) {
- this.nativeCommandsModule.setRoot(layoutTree);
- return Promise.resolve(layoutTree);
- }
-
- push(onContainerId, layout) {
- this.nativeCommandsModule.push(onContainerId, layout);
- return Promise.resolve(layout);
- }
-
- pop(containerId) {
- this.nativeCommandsModule.pop(containerId);
- return Promise.resolve(containerId);
- }
-
- popTo(containerId, targetContainerId) {
- this.nativeCommandsModule.popTo(containerId, targetContainerId);
- return Promise.resolve(targetContainerId);
- }
-
- popToRoot(containerId) {
- this.nativeCommandsModule.popToRoot(containerId);
- return Promise.resolve(containerId);
- }
-
- showModal(layout) {
- this.nativeCommandsModule.showModal(layout);
- return Promise.resolve(layout);
- }
-
- dismissModal(id) {
- this.nativeCommandsModule.dismissModal(id);
- return Promise.resolve(id);
- }
-
- dismissAllModals() {
- this.nativeCommandsModule.dismissAllModals();
- return Promise.resolve(true);
- }
- }
-
|