Enable user to create new resource dictionary with json
[ccsdk/cds.git] / cds-ui / designer-client / src / app / modules / feature-modules / resource-dictionary / resource-dictionary-creation / dictionary-creation.store.ts
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 { Injectable } from '@angular/core';
21 import { Store } from 'src/app/common/core/stores/Store';
22 import { ResourceDictionary } from '../model/resource-dictionary.model';
23 import { DictionaryCreationService } from './dictionary-creation.service';
24 import { MetaData } from '../model/metaData.model';
25 import { Sources } from '../model/sources.model';
26 import { SourcesStore } from './sources-template/sources.store';
27
28 @Injectable({
29     providedIn: 'root'
30 })
31 export class DictionaryCreationStore extends Store<ResourceDictionary> {
32     constructor(
33         private dictionaryCreationService: DictionaryCreationService,
34         private sourcesStore: SourcesStore
35     ) {
36         super(new ResourceDictionary());
37     }
38     // changeMetaData(metaDataObject: MetaData) {
39     changeMetaData(metaDataObject: any) {
40         console.log(metaDataObject);
41         this.setState({
42             ...this.state,
43             metaData: metaDataObject
44         });
45     }
46
47     getSources() {
48         this.sourcesStore.state$.subscribe(data => {
49             console.log(data);
50         });
51     }
52
53     SaveResourceDictionary(resourceDictionary: ResourceDictionary) {
54         console.log(this.setState);
55     }
56 }