20cec744836a85f58753a1d566d3af1c5e76493f
[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 { 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(private dictionaryCreationService: DictionaryCreationService, private sourcesStore: SourcesStore) {
33         super(new ResourceDictionary());
34     }
35
36     changeMetaData(metaDataObject: MetaData) {
37         console.log(metaDataObject);
38         this.setState({
39             ...this.state,
40             metaData: metaDataObject
41         });
42     }
43
44     getSources() {
45         this.sourcesStore.state$.subscribe(data => {
46         console.log(data);
47         });
48     }
49
50     SaveResourceDictionary(resourceDictionary: ResourceDictionary) {
51         console.log(this.setState);
52     }
53 }