Adding Prettier and fixing up eslint version
[sdc.git] / openecomp-ui / src / sdc-app / flows / SequenceDiagramModelHelper.js
1 /*!
2  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
13  * or implied. See the License for the specific language governing
14  * permissions and limitations under the License.
15  */
16 import emptyModel from './emptyModel.json';
17
18 function mergeLifelines(oldLifelines, newLifelines) {
19     let oldLifelinesMap = new Map(
20         oldLifelines.map(lifeline => [lifeline.id, lifeline])
21     );
22     let newLifelinesMap = new Map(
23         newLifelines.map(lifeline => [lifeline.id, lifeline])
24     );
25
26     let updatedLifelines = oldLifelines.map(lifeline => {
27         let newLifeline = newLifelinesMap.get(lifeline.id);
28         return {
29             ...lifeline,
30             name: newLifeline ? newLifeline.name : lifeline.name
31         };
32     });
33
34     let addedLifelines = newLifelines.filter(
35         lifeline => !oldLifelinesMap.has(lifeline.id)
36     );
37
38     return [...updatedLifelines, ...addedLifelines];
39 }
40
41 const SequenceDiagramModelHelper = Object.freeze({
42     createModel(options) {
43         return SequenceDiagramModelHelper.updateModel(emptyModel, options);
44     },
45
46     updateModel(model, options) {
47         const diagram = model.diagram;
48         const metadata = diagram.metadata || model.metadata;
49         const id = options.id || metadata.id;
50         const name = options.name || metadata.name;
51         const lifelines = options.lifelines
52             ? mergeLifelines(diagram.lifelines, options.lifelines)
53             : diagram.lifelines;
54
55         return {
56             diagram: {
57                 ...diagram,
58                 metadata: {
59                     ...metadata,
60                     id,
61                     name
62                 },
63                 lifelines
64             }
65         };
66     }
67 });
68
69 export default SequenceDiagramModelHelper;