Skip to content
Snippets Groups Projects
app.component.ts 1.68 KiB
Newer Older
  • Learn to ignore specific revisions
  • rhenck's avatar
    rhenck committed
    import { Component, OnInit } from '@angular/core';
    
    import { TranslateService } from '@ngx-translate/core';
    
    import { registerLocaleData } from '@angular/common';
    import localeDe from '@angular/common/locales/de';
    
    import { VeronaAPIService, VoeStartCommand } from './services/verona-api.service';
    
    import { UnitService } from './services/unit.service';
    
      selector: 'aspect-editor',
    
      template: `
    
        <div class="mainView fx-column-start-stretch">
    
    rhenck's avatar
    rhenck committed
          <aspect-toolbar *ngIf="isStandalone"></aspect-toolbar>
    
          <aspect-unit-view class="fx-flex"></aspect-unit-view>
    
      styles: [`
        .mainView {
          height: 100%;
        }
        .fx-column-start-stretch {
          box-sizing: border-box;
          display: flex;
          flex-direction: column;
    
          justify-content: flex-start;
    
          align-items: stretch;
        }
        .fx-flex {
          flex: 1 1 0;
          box-sizing: border-box;
        }
      `]
    
    rhenck's avatar
    rhenck committed
    export class AppComponent implements OnInit {
    
    rhenck's avatar
    rhenck committed
      isStandalone = window === window.parent;
    
    
      constructor(private unitService: UnitService,
                  private translateService: TranslateService,
    
    rhenck's avatar
    rhenck committed
                  private veronaApiService: VeronaAPIService) {
    
        translateService.addLangs(['de']);
        translateService.setDefaultLang('de');
      }
    
    rhenck's avatar
    rhenck committed
    
      ngOnInit(): void {
    
        this.veronaApiService.voeStartCommand
    
          .subscribe((message: VoeStartCommand): void => {
    
            this.unitService.loadUnitDefinition(message.unitDefinition);
          });
        this.veronaApiService.voeGetDefinitionRequest
          .subscribe(() => {
    
            this.veronaApiService.sendVoeDefinitionChangedNotification(this.unitService.unit);
    
    rhenck's avatar
    rhenck committed
        this.veronaApiService.sendVoeReadyNotification();
    
        registerLocaleData(localeDe);
    
    rhenck's avatar
    rhenck committed
      }