Skip to content
Snippets Groups Projects
app.component.ts 18.4 KiB
Newer Older
David Dorchies's avatar
David Dorchies committed
import { Component, ApplicationRef, OnInit, OnDestroy, HostListener, ViewChild, ComponentRef } from "@angular/core";
import { Router, Event, NavigationEnd, ActivationEnd, NavigationStart, NavigationCancel, NavigationError } from "@angular/router";
import { MatSidenav, MatToolbar, MatDialog, MatIconRegistry } from "@angular/material";
import { DomSanitizer } from "@angular/platform-browser";
francois.grand's avatar
francois.grand committed

import { Observer, jalhydDateRev, jalhydVersion, CalculatorType, Session } from "jalhyd";
David Dorchies's avatar
David Dorchies committed
import { environment } from "../environments/environment";
import { I18nService } from "./services/internationalisation/internationalisation.service";
David Dorchies's avatar
David Dorchies committed
import { ErrorService } from "./services/error/error.service";
import { FormulaireService } from "./services/formulaire/formulaire.service";
import { FormulaireDefinition } from "./formulaire/definition/form-definition";
import { ServiceFactory } from "./services/service-factory";
import { HttpService } from "./services/http/http.service";
import { ApplicationSetupService } from "./services/app-setup/app-setup.service";
import { nghydDateRev, nghydVersion } from "../date_revision";
import { DialogConfirmCloseCalcComponent } from "./components/dialog-confirm-close-calc/dialog-confirm-close-calc.component";
import { DialogConfirmEmptySessionComponent } from "./components/dialog-confirm-empty-session/dialog-confirm-empty-session.component";
import { DialogLoadSessionComponent } from "./components/dialog-load-session/dialog-load-session.component";
import { DialogSaveSessionComponent } from "./components/dialog-save-session/dialog-save-session.component";
import { NotificationsService } from "./services/notifications/notifications.service";
import * as pako from "pako";
francois.grand's avatar
francois.grand committed
@Component({
David Dorchies's avatar
David Dorchies committed
  selector: "nghyd-app",
  templateUrl: "./app.component.html",
mathias.chouet's avatar
mathias.chouet committed
  styleUrls: ["./app.component.scss"],
  providers: [ErrorService]
francois.grand's avatar
francois.grand committed
})
export class AppComponent implements OnInit, OnDestroy, Observer {

  @ViewChild("sidenav")
  public sidenav: MatSidenav;

  @ViewChild("navbar")
  public navbar: MatToolbar;

mathias.chouet's avatar
mathias.chouet committed
  /** current calculator, inferred from _currentFormId by setActiveCalc() (used for navbar menu) */
  public currentCalc: any;

  /** shows or hides the progressbar under the navbar */
  public showProgressBar = false;

  /** if true, progress bar will be in "determinate" mode, else in "indeterminate" mode */
  public progressBarDeterminate = true;

  /** progress bar percentage, for "determinate" mode */
  public progessBarValue = 0;

   * liste des modules de calcul. Forme des objets :
   * "title": nom du module de calcul
mathias.chouet's avatar
mathias.chouet committed
   * "type": calcType du Nub associé
  private _calculators: any[] = [];

  /**
   * id du formulaire courant
   * on utilise pas directement FormulaireService.currentFormId pour éviter l'erreur
mathias.chouet's avatar
mathias.chouet committed
   * ExpressionChangedAfterItHasBeenCheckedError
mathias.chouet's avatar
mathias.chouet committed
  private _currentFormId: string;
mathias.chouet's avatar
mathias.chouet committed
  private _innerWidth: number;
  /**
   * composant actuellement affiché par l'élément <router-outlet>
   */
  private _routerCurrentComponent: Component;

mathias.chouet's avatar
mathias.chouet committed
  constructor(
    private intlService: I18nService,
    private appSetupService: ApplicationSetupService,
    private appRef: ApplicationRef,
    private errorService: ErrorService,
    private router: Router,
    private formulaireService: FormulaireService,
    private notificationsService: NotificationsService,
    private confirmEmptySessionDialog: MatDialog,
    private saveSessionDialog: MatDialog,
    private loadSessionDialog: MatDialog,
    private matIconRegistry: MatIconRegistry,
    private domSanitizer: DomSanitizer,
    private confirmCloseCalcDialog: MatDialog
    ServiceFactory.instance.httpService = httpService;
    ServiceFactory.instance.applicationSetupService = appSetupService;
    ServiceFactory.instance.i18nService = intlService;
    ServiceFactory.instance.formulaireService = formulaireService;
    ServiceFactory.instance.notificationsService = notificationsService;
    this.router.events.subscribe((event: Event) => {
      // show loading bar when changing route
      if (event instanceof NavigationStart) {
        this.showLoading(true);
      }
      // close side navigation when clicking a calculator tab
      if (event instanceof NavigationEnd) {
        this.sidenav.close();
mathias.chouet's avatar
mathias.chouet committed
      // [de]activate calc tabs depending on loaded route
      if (event instanceof ActivationEnd) {
        const path = event.snapshot.url[0].path;
        if (path === "calculator") {
          const calcUid = event.snapshot.params.uid;
          if (this.calculatorExists(calcUid)) {
            this.setActiveCalc(calcUid);
          } else {
            // if required calculator does not exist, redirect to list page
            this.toList();
          }
mathias.chouet's avatar
mathias.chouet committed
        } else {
          this.setActiveCalc(null);
        }
      }
      // hide loading bar on routing errors
      if (event instanceof NavigationCancel || event instanceof NavigationError) {
        this.showLoading(false);
      }
mathias.chouet's avatar
mathias.chouet committed
  /**
   * Triggered at app startup.
   * Preferences are loaded by app setup service
   * @see ApplicationSetupService.construct()
   */
    this.formulaireService.addObserver(this);
    this._innerWidth = window.innerWidth;
  ngOnDestroy() {
    this.unsubscribeErrorService();
    this.formulaireService.removeObserver(this);
  }

  @HostListener("window:resize", ["$event"])
  onResize(event) {
mathias.chouet's avatar
mathias.chouet committed
    // keep track of window size for navbar tabs arrangement
    this._innerWidth = window.innerWidth;
  }

  public get uitextSidenavNewCalc() {
    return this.intlService.localizeText("INFO_MENU_NOUVELLE_CALC");
  }

  public get uitextSidenavParams() {
    return this.intlService.localizeText("INFO_SETUP_TITLE");
  }

  public get uitextSidenavLoadSession() {
    return this.intlService.localizeText("INFO_MENU_LOAD_SESSION_TITLE");
  }

mathias.chouet's avatar
mathias.chouet committed
  public get uitextSidenavSaveSession() {
    return this.intlService.localizeText("INFO_MENU_SAVE_SESSION_TITLE");
  }

  public get uitextSidenavEmptySession() {
    return this.intlService.localizeText("INFO_MENU_EMPTY_SESSION_TITLE");
  }

  public get uitextSidenavReportBug() {
    return this.intlService.localizeText("INFO_MENU_REPORT_BUG");
  }

  public get uitextSidenavHelp() {
    return this.intlService.localizeText("INFO_MENU_HELP_TITLE");
mathias.chouet's avatar
mathias.chouet committed
  public get uitextSelectCalc() {
    return this.intlService.localizeText("INFO_MENU_SELECT_CALC");
  }

  public getCalculatorLabel(t: CalculatorType) {
    return this.formulaireService.getLocalisedTitleFromCalculatorType(t);
  }

  public get calculators() {
    return this._calculators;
  }

mathias.chouet's avatar
mathias.chouet committed
  public get currentFormId() {
    return this._currentFormId;
  }

  public get currentRoute(): string {
    return this.router.url;
  }

  public get progressBarMode() {
    return this.progressBarDeterminate ? "determinate" : "indeterminate";
  }

  public setActiveCalc(uid: string) {
    this._calculators.forEach((calc) => {
      calc.active = (calc.uid === uid);
    });
mathias.chouet's avatar
mathias.chouet committed
    // mark current calc for navbar menu
    const index = this.getCalculatorIndexFromId(uid);
    this.currentCalc = this._calculators[index];
  /**
   * Close calculator using middle click on tab
   */
  public onMouseUp(event: any, uid: string) {
    if (event.which === 2) {
      const dialogRef = this.confirmCloseCalcDialog.open(
        DialogConfirmCloseCalcComponent,
        {
            data: {
              uid: uid
            },
            disableClose: true
        }
    );
    dialogRef.afterClosed().subscribe(result => {
        if (result) {
            this.formulaireService.requestCloseForm(uid);
        }
    });
    }
  }

  /**
   * Returns true if sum of open calculator tabs witdh is lower than navbar
   * available space (ie. if navbar is not overflowing), false otherwise
   */
  public get tabsFitInNavbar() {
    // manual breakpoints
    // @WARNING keep in sync with .calculator-buttons sizes in app.component.scss
mathias.chouet's avatar
mathias.chouet committed
    let tabsLimit = 0;
    if (this._innerWidth > 480) {
      tabsLimit = 3;
    }
    if (this._innerWidth > 640) {
      tabsLimit = 4;
    }
    if (this._innerWidth > 800) {
      tabsLimit = 6;
    }
mathias.chouet's avatar
mathias.chouet committed
    /*if (this._innerWidth > 1200) {
      tabsLimit = 8;
mathias.chouet's avatar
mathias.chouet committed
    }*/

    const fits = this._calculators.length <= tabsLimit;
    return fits;
  }

  /**
   * abonnement au service d'erreurs
   */
  private subscribeErrorService() {
    this.errorService.addObserver(this);
  private unsubscribeErrorService() {
    this.errorService.removeObserver(this);
  }

  private showLoading(show: boolean) {
    this.showProgressBar = show;
    this.progressBarDeterminate = ! show;
  }

  public get enableHeaderDoc() {
    return this.currentRoute === "/list" && this._calculators.length === 0;
  }

  update(sender: any, data: any): void {
    if (sender instanceof FormulaireService) {
        case "createForm":
mathias.chouet's avatar
mathias.chouet committed
        // add newly created form to calculators list
          const f: FormulaireDefinition = data["form"];
          this._calculators.push(
            {

          // abonnement en tant qu'observateur du nouveau formulaire
          f.addObserver(this);
        case "invalidFormId":
        case "currentFormChanged":
mathias.chouet's avatar
mathias.chouet committed
          this._currentFormId = data["formId"];
        case "closeForm":
          const form: FormulaireDefinition = data["form"];
          this.closeCalculator(form);
David Dorchies's avatar
David Dorchies committed
    } else if (sender instanceof FormulaireDefinition) {
      switch (data["action"]) {
        case "nameChanged":
          this.updateCalculatorTitle(sender, data["name"]);
          break;
      }
    }
  /**
   * Returns true if a form having "formUid" as UID exists
   * @param formId UID to look for
   */
  private calculatorExists(formId: string): boolean {
    return (this.getCalculatorIndexFromId(formId) > -1);
  }

  private getCalculatorIndexFromId(formId: string) {
    const index = this._calculators.reduce((resultIndex, calc, currIndex) => {
      if (resultIndex === -1 && calc["uid"] === formId) {
        resultIndex = currIndex;
David Dorchies's avatar
David Dorchies committed
      }
      return resultIndex;
    }, -1);

    return index;
  }

  private updateCalculatorTitle(f: FormulaireDefinition, title: string) {
    const formIndex = this.getCalculatorIndexFromId(f.uid);
    this._calculators[formIndex]["title"] = title;
  /**
   * Saves a JSON serialised session file, for one or more calc modules
   * @param calcList modules to save
   * @param filename
   */
  private saveSession(calcList: any[], filename: string) {
    const session: string = this.buildSessionFile(calcList);
    this.formulaireService.downloadTextFile(session, filename);
  }

  private buildSessionFile(calcList: any[]): string {
    const serialiseOptions: { [key: string]: {} } = {};
David Dorchies's avatar
David Dorchies committed
    for (const c of calcList) {
        serialiseOptions[c.uid] = { // GUI-dependent metadata to add to the session file
          title: c.title
        };
David Dorchies's avatar
David Dorchies committed
    }
    return Session.getInstance().serialise(serialiseOptions);
  /**
   * Supprime un module de calcul **de l'interface**
   * ATTENTION, ne supprime pas le module de calcul en mémoire !
   * Pour cela, utiliser FormulaireService.requestCloseForm(form.uid);
   * @param form module de calcul à fermer
   */
  private closeCalculator(form: FormulaireDefinition) {
    const formId: string = form.uid;

    // désabonnement en tant qu'observateur
    form.removeObserver(this);
    // recherche du module de calcul correspondant à formId
    const closedIndex = this.getCalculatorIndexFromId(formId);

     * détermination du nouveau module de calcul à afficher :
     * - celui après celui supprimé
     * - ou celui avant celui supprimé si on supprime le dernier
    const l = this._calculators.length;
    if (l > 1) {
David Dorchies's avatar
David Dorchies committed
      if (closedIndex === l - 1) {
        newId = this._calculators[closedIndex - 1]["uid"];
David Dorchies's avatar
David Dorchies committed
      } else {
        newId = this._calculators[closedIndex + 1]["uid"];
David Dorchies's avatar
David Dorchies committed
      }
    }

    // suppression

    this._calculators = this._calculators.filter(calc => {
      return formId !== calc["uid"];
      this._currentFormId = null;
David Dorchies's avatar
David Dorchies committed
    } else {
      this.toCalc(newId);
David Dorchies's avatar
David Dorchies committed
    }
David Dorchies's avatar
David Dorchies committed
    this.router.navigate(["/list"]);
  private toCalc(id: string) {
David Dorchies's avatar
David Dorchies committed
    this.router.navigate(["/calculator", id]);
    this.setActiveCalc(id);
  /**
   * récupération du composant affiché par le routeur
   */
  public onRouterOutletActivated(a) {
  /**
   * restarts a fresh session by closing all calculators
   */
  public emptySession() {
    const dialogRef = this.confirmEmptySessionDialog.open(
      DialogConfirmEmptySessionComponent,
      { disableClose: true }
    );
    dialogRef.afterClosed().subscribe(result => {
      if (result) {
  public doEmptySession() {
    for (const c of this._calculators) {
      const form = this.formulaireService.getFormulaireFromId(c.uid);
      this.formulaireService.requestCloseForm(form.uid);
    }
    // just to be sure, get rid of any Nub possibly stuck in session without any form attached
    Session.getInstance().clear();
  }

  public loadSession() {
    // création du dialogue de sélection des formulaires à sauver
    const dialogRef = this.loadSessionDialog.open(
      DialogLoadSessionComponent,
      { disableClose: true }
    );
    dialogRef.afterClosed().subscribe(result => {
      if (result) {
        if (result.emptySession) {
          this.doEmptySession();
        }
        this.formulaireService.loadSession(result.file, result.calculators)
          .then((data) => {
            if (data.hasErrors) {
              this.notificationsService.notify(this.intlService.localizeText("ERROR_PROBLEM_LOADING_SESSION"), 3500);
            }
          })
          .catch((err) => {
            this.notificationsService.notify(this.intlService.localizeText("ERROR_LOADING_SESSION"), 3500);
            console.error("error loading session - ", err);
            // rollback to ensure session is clean
            this.doEmptySession();
          });
  /**
   * Demande au client d'envoyer un email (génère un lien mailto:), pré-rempli
   * avec un texte standard, et le contenu de la session au format JSON
   */
  public reportBug() {
    const recipient = "bug@cassiopee.g-eau.fr";
    const subject = "[ISSUE] " + this.intlService.localizeText("INFO_REPORT_BUG_SUBJECT");
    let body = this.intlService.localizeText("INFO_REPORT_BUG_BODY");
    // add session description

    // get all forms
    const list = [];
    for (const c of this._calculators) {
      list.push({
        title: c.title,
        uid: c.uid,
        selected: true
      });
    }
    let session = this.buildSessionFile(list);

    // compress
    session = pako.deflate(session, { to: "string" }); // gzip (zlib)
    session = btoa(session); // base64

    body += session + "\n";
    body = encodeURIComponent(body);

    const mailtoURL = `mailto:${recipient}?subject=${subject}&body=${body}`;

    // temporarily disable tab closing alert, as tab won't be closed for real
    this.appSetupService.warnBeforeTabClose = false;
    window.location.href = mailtoURL;
    this.appSetupService.warnBeforeTabClose = true;
  public get revisionInfo(): any {
    return {
      jalhyd: {
        date: jalhydDateRev,
        version: jalhydVersion,
      },
      nghyd: {
        date: nghydDateRev,
        version: nghydVersion
      }
    };
David Dorchies's avatar
David Dorchies committed
  }
mathias.chouet's avatar
mathias.chouet committed
  /**
   * sauvegarde du/des formulaires
   * @param form formulaire à sélectionner par défaut dans la liste
   */
  public saveForm(form?: FormulaireDefinition) {
mathias.chouet's avatar
mathias.chouet committed
    const list = [];
    for (const c of this._calculators) {
      const uid = c["uid"];
mathias.chouet's avatar
mathias.chouet committed
      const nub = Session.getInstance().findNubByUid(uid);
mathias.chouet's avatar
mathias.chouet committed
      list.push({
mathias.chouet's avatar
mathias.chouet committed
        "children": nub.getChildren().map((child) => {
          return child.uid;
        }),
        "requires": nub.getTargettedNubs().map((req) => {
          return req.uid;
        }),
mathias.chouet's avatar
mathias.chouet committed
        "selected": form ? (uid === form.uid) : true,
        "title": c["title"],
        "uid": uid
      });
    }
    // dialogue de sélection des formulaires à sauver
    const dialogRef = this.saveSessionDialog.open(
      DialogSaveSessionComponent,
      {
        data: {
          calculators: list
        },
        disableClose: true
      }
    );
    dialogRef.afterClosed().subscribe(result => {
      if (result) {
        let name = result.filename;
mathias.chouet's avatar
mathias.chouet committed

        // ajout extension ".json"
        const re = /.+\.json/;
        const match = re.exec(name.toLowerCase());
        if (match === null) {
          name = name + ".json";
        }
mathias.chouet's avatar
mathias.chouet committed

        this.saveSession(result.calculators, name);
mathias.chouet's avatar
mathias.chouet committed
      }
  /**
   * détection de la fermeture de la page/navigateur et demande de confirmation
   */
  @HostListener("window:beforeunload", [ "$event" ]) confirmExit($event) {
    if (
      this.appSetupService.warnBeforeTabClose
      && environment.production // otherwise prevents dev server to reload app after recompiling
    ) {
      // affecter une valeur différente de null provoque l'affichage d'un dialogue de confirmation, mais le texte n'est pas affiché
David Dorchies's avatar
David Dorchies committed
      $event.returnValue = "Your data will be lost !";

  /**
   * Disable value modification on mouse wheel or up/down arrows, in input type="number"
   */
  @HostListener("mousewheel", [ "$event" ]) onMouseWheelChrome(event: any) {
    this.disableScroll(event);
  }
  @HostListener("DOMMouseScroll", [ "$event" ]) onMouseWheelFirefox(event: any) {
    this.disableScroll(event);
  }
  @HostListener("onmousewheel", [ "$event" ]) onMouseWheelIE(event: any) {
    this.disableScroll(event);
  }
  disableScroll(event: any) {
    if (event.srcElement.type === "number") {
        event.preventDefault();
mathias.chouet's avatar
mathias.chouet committed
        // @TODO how to send event to parent so that scrolling the page works ?
    }
  }
  @HostListener("keydown", [ "$event" ]) onKeydown(event: any) {
    if (event.which === 38 || event.which === 40) { // up / down arrow
      event.preventDefault();
    }
  }