123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- import * as _ from 'lodash';
- import { CommandsObserver } from '../events/CommandsObserver';
- import { NativeCommandsSender } from '../adapters/NativeCommandsSender';
- import { UniqueIdProvider } from '../adapters/UniqueIdProvider';
-
- export class Commands {
- constructor(
- private readonly nativeCommandsSender: NativeCommandsSender,
- private readonly layoutTreeParser,
- private readonly layoutTreeCrawler,
- private readonly commandsObserver: CommandsObserver,
- private readonly uniqueIdProvider: UniqueIdProvider) {
- }
-
- public setRoot(simpleApi) {
- const input = _.cloneDeep(simpleApi);
- const root = this.layoutTreeParser.parse(input.root);
- this.layoutTreeCrawler.crawl(root);
-
- const modals = _.map(input.modals, (modal) => {
- const modalLayout = this.layoutTreeParser.parse(modal);
- this.layoutTreeCrawler.crawl(modalLayout);
- return modalLayout;
- });
-
- const overlays = _.map(input.overlays, (overlay) => {
- const overlayLayout = this.layoutTreeParser.parse(overlay);
- this.layoutTreeCrawler.crawl(overlayLayout);
- return overlayLayout;
- });
-
- const commandId = this.uniqueIdProvider.generate('setRoot');
- const result = this.nativeCommandsSender.setRoot(commandId, { root, modals, overlays });
- this.commandsObserver.notify('setRoot', { commandId, layout: { root, modals, overlays } });
- return result;
- }
-
- public setDefaultOptions(options) {
- const input = _.cloneDeep(options);
- this.layoutTreeCrawler.processOptions(input);
-
- this.nativeCommandsSender.setDefaultOptions(input);
- this.commandsObserver.notify('setDefaultOptions', { options });
- }
-
- public mergeOptions(componentId, options) {
- const input = _.cloneDeep(options);
- this.layoutTreeCrawler.processOptions(input);
-
- this.nativeCommandsSender.mergeOptions(componentId, input);
- this.commandsObserver.notify('mergeOptions', { componentId, options });
- }
-
- public showModal(simpleApi) {
- const input = _.cloneDeep(simpleApi);
- const layout = this.layoutTreeParser.parse(input);
- this.layoutTreeCrawler.crawl(layout);
-
- const commandId = this.uniqueIdProvider.generate('showModal');
- const result = this.nativeCommandsSender.showModal(commandId, layout);
- this.commandsObserver.notify('showModal', { commandId, layout });
- return result;
- }
-
- public dismissModal(componentId) {
- const commandId = this.uniqueIdProvider.generate('dismissModal');
- const result = this.nativeCommandsSender.dismissModal(commandId, componentId);
- this.commandsObserver.notify('dismissModal', { commandId, componentId });
- return result;
- }
-
- public dismissAllModals() {
- const commandId = this.uniqueIdProvider.generate('dismissAllModals');
- const result = this.nativeCommandsSender.dismissAllModals(commandId);
- this.commandsObserver.notify('dismissAllModals', { commandId });
- return result;
- }
-
- public push(componentId, simpleApi) {
- const input = _.cloneDeep(simpleApi);
-
- const layout = this.layoutTreeParser.parse(input);
- this.layoutTreeCrawler.crawl(layout);
-
- const commandId = this.uniqueIdProvider.generate('push');
- const result = this.nativeCommandsSender.push(commandId, componentId, layout);
- this.commandsObserver.notify('push', { commandId, componentId, layout });
- return result;
- }
-
- public pop(componentId, options) {
- const commandId = this.uniqueIdProvider.generate('pop');
- const result = this.nativeCommandsSender.pop(commandId, componentId, options);
- this.commandsObserver.notify('pop', { commandId, componentId, options });
- return result;
- }
-
- public popTo(componentId) {
- const commandId = this.uniqueIdProvider.generate('popTo');
- const result = this.nativeCommandsSender.popTo(commandId, componentId);
- this.commandsObserver.notify('popTo', { commandId, componentId });
- return result;
- }
-
- public popToRoot(componentId) {
- const commandId = this.uniqueIdProvider.generate('popToRoot');
- const result = this.nativeCommandsSender.popToRoot(commandId, componentId);
- this.commandsObserver.notify('popToRoot', { commandId, componentId });
- return result;
- }
-
- public setStackRoot(componentId, simpleApi) {
- const input = _.cloneDeep(simpleApi);
-
- const layout = this.layoutTreeParser.parse(input);
- this.layoutTreeCrawler.crawl(layout);
-
- const commandId = this.uniqueIdProvider.generate('setStackRoot');
- const result = this.nativeCommandsSender.setStackRoot(commandId, componentId, layout);
- this.commandsObserver.notify('setStackRoot', { commandId, componentId, layout });
- return result;
- }
-
- public showOverlay(simpleApi) {
- const input = _.cloneDeep(simpleApi);
-
- const layout = this.layoutTreeParser.parse(input);
- this.layoutTreeCrawler.crawl(layout);
-
- const commandId = this.uniqueIdProvider.generate('showOverlay');
- const result = this.nativeCommandsSender.showOverlay(commandId, layout);
- this.commandsObserver.notify('showOverlay', { commandId, layout });
- return result;
- }
-
- public dismissOverlay(componentId) {
- const commandId = this.uniqueIdProvider.generate('dismissOverlay');
- const result = this.nativeCommandsSender.dismissOverlay(commandId, componentId);
- this.commandsObserver.notify('dismissOverlay', { commandId, componentId });
- return result;
- }
-
- public getLaunchArgs() {
- const commandId = this.uniqueIdProvider.generate('getLaunchArgs');
- const result = this.nativeCommandsSender.getLaunchArgs(commandId);
- this.commandsObserver.notify('getLaunchArgs', { commandId });
- return result;
- }
- }
|