Updated Sparky to add ECOMP functionality Browse, Specialized Search, BYOQ, and the...
[aai/sparky-fe.git] / src / app / module / index.js
1 /*
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2021 AT&T Intellectual Property. All rights reserved.
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
21 // Import section (used as anchor to add extension imports)
22 import Browse from '../browse/Browse.jsx';
23 import SpecializedSearch from '../specializedSearch/SpecializedSearch.jsx';
24 import Modifications from '../modifications/Modifications.jsx';
25 import Model from '../model/modelSearch/Model.jsx';
26 import ModelGallery from '../model/modelSearch/components/ModelGallery.jsx';
27 import ModelReducer from '../model/modelSearch/ModelReducer.js';
28 import History from '../model/history/History.jsx';
29 import HistoryGallery from '../model/history/components/HistoryGallery.jsx';
30 import HistoryQuery from '../model/history/HistoryQuery.jsx';
31 import CustomQuery from '../customQuery/CustomQuery.jsx';
32 import CustomDsl from '../byoq/CustomDsl.jsx';
33 import CustomDslBuilder from '../byoq/CustomDslBuilder.jsx';
34
35 let components = {};
36 // Components section (used as an anchor to add extension components)
37 components['ModelGallery'] = ModelGallery;
38 components['HistoryGallery'] = HistoryGallery;
39 components['HistoryQuery'] = HistoryQuery;
40 components['Model'] = Model;
41 components['ModelReducer'] = ModelReducer;
42 components['History'] = History;
43 components['CustomDsl'] = CustomDsl;
44 components['CustomDslBuilder'] = CustomDslBuilder;
45 components['Browse'] = Browse;
46 components['SpecializedSearch'] = SpecializedSearch;
47 components['Modifications'] = Modifications;
48 components['CustomQuery'] = CustomQuery;
49
50 export default components;