blob: 23723dc91dcc565bbb5cb09a350d2904f87f5ab3 [file] [log] [blame]
AviZi280f8012017-06-09 02:39:56 +03001/*!
Michael Landoefa037d2017-02-19 12:57:33 +02002 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
AviZi280f8012017-06-09 02:39:56 +03003 *
Michael Landoefa037d2017-02-19 12:57:33 +02004 * 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
AviZi280f8012017-06-09 02:39:56 +03007 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
Michael Landoefa037d2017-02-19 12:57:33 +020010 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
AviZi280f8012017-06-09 02:39:56 +030012 * 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.
Michael Landoefa037d2017-02-19 12:57:33 +020015 */
Michael Landoefa037d2017-02-19 12:57:33 +020016import emptyModel from './emptyModel.json';
17
18function mergeLifelines(oldLifelines, newLifelines) {
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020019 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 );
Michael Landoefa037d2017-02-19 12:57:33 +020025
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020026 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 });
Michael Landoefa037d2017-02-19 12:57:33 +020033
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020034 let addedLifelines = newLifelines.filter(
35 lifeline => !oldLifelinesMap.has(lifeline.id)
36 );
Michael Landoefa037d2017-02-19 12:57:33 +020037
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020038 return [...updatedLifelines, ...addedLifelines];
Michael Landoefa037d2017-02-19 12:57:33 +020039}
40
Michael Landoefa037d2017-02-19 12:57:33 +020041const SequenceDiagramModelHelper = Object.freeze({
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020042 createModel(options) {
43 return SequenceDiagramModelHelper.updateModel(emptyModel, options);
44 },
Michael Landoefa037d2017-02-19 12:57:33 +020045
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020046 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;
Michael Landoefa037d2017-02-19 12:57:33 +020054
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020055 return {
56 diagram: {
57 ...diagram,
58 metadata: {
59 ...metadata,
60 id,
61 name
62 },
63 lifelines
64 }
65 };
66 }
Michael Landoefa037d2017-02-19 12:57:33 +020067});
68
69export default SequenceDiagramModelHelper;