e32db8a3703ffe5fa917b18a9a371825350c27ce
[ccsdk/cds.git] /
1 /*
2 * ============LICENSE_START=======================================================
3 * ONAP : CDS
4 * ================================================================================
5 * Copyright (C) 2020 TechMahindra
6 *=================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 *     http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
19 */
20 import { Component, OnInit, ViewChild, ElementRef } from '@angular/core';
21 import { Router } from '@angular/router';
22 import { DictionaryCreationStore } from './dictionary-creation.store';
23 import { DictionaryModel } from '../model/dictionary.model';
24 import { Definition } from '../model/definition.model';
25 import { DictionaryMetadataComponent } from './dictionary-metadata/dictionary-metadata.component';
26 import { SourcesTemplateComponent } from './sources-template/sources-template.component';
27
28 @Component({
29   selector: 'app-resource-dictionary-creation',
30   templateUrl: './resource-dictionary-creation.component.html',
31   styleUrls: ['./resource-dictionary-creation.component.css']
32 })
33 export class ResourceDictionaryCreationComponent implements OnInit {
34
35   constructor(private router: Router, private dictionaryCreationStore: DictionaryCreationStore) {
36   }
37
38   modes: object[] = [
39     { name: 'Designer Mode', style: 'mode-icon icon-designer-mode' },
40     { name: 'Scripting Mode', style: 'mode-icon icon-scripting-mode' }
41   ];
42
43   metaDataTab: DictionaryModel = new DictionaryModel();
44   definition: Definition = new Definition();
45   createDate = '';
46
47   @ViewChild(DictionaryMetadataComponent, { static: false })
48   private metadataTabComponent: DictionaryMetadataComponent;
49
50   @ViewChild(SourcesTemplateComponent, { static: false })
51   private sourcesTemplateComponent: SourcesTemplateComponent;
52
53   @ViewChild('nameit', { static: true })
54   private elementRef: ElementRef;
55
56   ngOnInit() {
57     this.elementRef.nativeElement.focus();
58     // this.elementRef2.nativeElement.focus();
59   }
60
61   saveDictionaryToStore() {
62     this.dictionaryCreationStore.getSources();
63     this.dictionaryCreationStore.state$.subscribe(dd => {
64       console.log(dd);
65     });
66   }
67
68   test() {
69     this.metadataTabComponent.saveMetaDataToStore();
70     this.sourcesTemplateComponent.saveSorcesDataToStore();
71   }
72
73   goBackToDashBorad() {
74     this.router.navigate(['/resource-dictionary']);
75   }
76
77 }