1 import { Component, OnInit, OnDestroy } from '@angular/core';
2 import { DesignerStore } from '../designer.store';
3 import { PackageCreationUtils } from '../../package-creation/package-creation.utils';
4 import { RouterLink, Router, ActivatedRoute } from '@angular/router';
5 import { Subject } from 'rxjs';
6 import { BluePrintDetailModel } from '../../model/BluePrint.detail.model';
7 import { viewClassName } from '@angular/compiler';
8 import { SourceViewService } from './source-view.service';
11 selector: 'app-designer-source-view',
12 templateUrl: './source-view.component.html',
13 // styleUrls: ['./source-view.component.css']
14 styleUrls: ['../designer.component.css']
16 export class DesignerSourceViewComponent implements OnInit, OnDestroy {
20 private controllerSideBar: boolean;
21 private ngUnsubscribe = new Subject();
22 viewedPackage: BluePrintDetailModel = new BluePrintDetailModel();
23 public customActionName = '';
25 constructor(private store: DesignerStore,
26 private packageCreationUtils: PackageCreationUtils,
27 private router: Router,
28 private route: ActivatedRoute,
29 private sourceViewService: SourceViewService) {
30 this.controllerSideBar = true;
34 this.store.state$.subscribe(
37 this.content = this.packageCreationUtils.transformToJson(state.template);
40 const id = this.route.snapshot.paramMap.get('id');
41 this.sourceViewService.getPagedPackages(id).subscribe(
42 (bluePrintDetailModels) => {
43 if (bluePrintDetailModels) {
44 this.viewedPackage = bluePrintDetailModels[0];
49 convertAndOpenInDesingerView(id) {
50 // TODO validate json against scheme
51 console.log('convertAndOpenInDesingerView ...', this.content);
52 this.store.saveSourceContent(this.content);
53 this.router.navigate(['/packages/designer', id, {actionName: this.customActionName}]);
57 this.ngUnsubscribe.next();
58 this.ngUnsubscribe.complete();