diff --git a/src/app/formulaire/definition/form-compute.ts b/src/app/formulaire/definition/form-compute.ts index 9a32be7155c1c6286f8f0812173d0267e3f26bed..3e5683d6e6194fbee4b753a26a12bd095f9c93fd 100644 --- a/src/app/formulaire/definition/form-compute.ts +++ b/src/app/formulaire/definition/form-compute.ts @@ -3,22 +3,12 @@ import { Nub, Result, ParamDomainValue, Observer } from "jalhyd"; import { FormResult } from "./form-result"; import { FormulaireDefinition } from "./form-definition"; import { NgParameter } from "../ngparam"; -import { NotificationsService } from "../../services/notifications/notifications.service"; -import { ServiceFactory } from "../../services/service-factory"; -import { I18nService } from "../../services/internationalisation/internationalisation.service"; export abstract class FormCompute implements Observer { - private notificationsService: NotificationsService; - - private intlService: I18nService; - constructor(protected _formBase: FormulaireDefinition, protected _formResult: FormResult) { // indirectly subscribe to Nub result updates this._formBase.addObserver(this); - - this.notificationsService = ServiceFactory.instance.notificationsService; - this.intlService = ServiceFactory.instance.i18nService; } protected abstract compute(); @@ -117,11 +107,6 @@ export abstract class FormCompute implements Observer { case "nubResultUpdated": // forward Nub results update notification to FormCompute objects this.reaffectResultComponents(); - // @TODO reenable later wen chain computation is executed only once or it is a snackbar hell ! - /* this.notificationsService.notify( - this.intlService.localizeText("INFO_SNACKBAR_RESULTS_CALCULATED") + " " + this._formBase.calculatorName, - 1500 - ); */ break; } }