import { from, Observable } from 'rxjs' import { mergeMap, switchMap } from 'rxjs/operators' import { Injectable } from '@angular/core' import { PluginService } from '@app/core/plugins/plugin.service' import { ClientActionHookName, ClientFilterHookName, PluginClientScope } from '@shared/models' type RawFunction = (params: U) => T type ObservableFunction = RawFunction> @Injectable() export class HooksService { constructor (private pluginService: PluginService) { } wrapObsFun (fun: ObservableFunction, params: P, scope: PluginClientScope, hookParamName: H1, hookResultName: H2) { return from(this.pluginService.ensurePluginsAreLoaded(scope)) .pipe( mergeMap(() => this.wrapObjectWithoutScopeLoad(params, hookParamName)), switchMap(params => fun(params)), mergeMap(result => this.pluginService.runHook(hookResultName, result, params)) ) } async wrapFun (fun: RawFunction, params: P, scope: PluginClientScope, hookParamName: H1, hookResultName: H2) { await this.pluginService.ensurePluginsAreLoaded(scope) const newParams = await this.wrapObjectWithoutScopeLoad(params, hookParamName) const result = fun(newParams) return this.pluginService.runHook(hookResultName, result, params) } runAction (hookName: U, scope: PluginClientScope, params?: T) { this.pluginService.ensurePluginsAreLoaded(scope) .then(() => this.pluginService.runHook(hookName, undefined, params)) .catch((err: any) => console.error('Fatal hook error.', { err })) } async wrapObject (result: T, scope: PluginClientScope, hookName: U) { await this.pluginService.ensurePluginsAreLoaded(scope) return this.wrapObjectWithoutScopeLoad(result, hookName) } private wrapObjectWithoutScopeLoad (result: T, hookName: U) { return this.pluginService.runHook(hookName, result) } }