AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 1 | /*! |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 2 | * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 3 | * |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 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 |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 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. |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 15 | */ |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 16 | import emptyModel from './emptyModel.json'; |
| 17 | |
| 18 | function mergeLifelines(oldLifelines, newLifelines) { |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 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 | ); |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 25 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 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 | }); |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 33 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 34 | let addedLifelines = newLifelines.filter( |
| 35 | lifeline => !oldLifelinesMap.has(lifeline.id) |
| 36 | ); |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 37 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 38 | return [...updatedLifelines, ...addedLifelines]; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 39 | } |
| 40 | |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 41 | const SequenceDiagramModelHelper = Object.freeze({ |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 42 | createModel(options) { |
| 43 | return SequenceDiagramModelHelper.updateModel(emptyModel, options); |
| 44 | }, |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 45 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 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; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 54 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 55 | return { |
| 56 | diagram: { |
| 57 | ...diagram, |
| 58 | metadata: { |
| 59 | ...metadata, |
| 60 | id, |
| 61 | name |
| 62 | }, |
| 63 | lifelines |
| 64 | } |
| 65 | }; |
| 66 | } |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 67 | }); |
| 68 | |
| 69 | export default SequenceDiagramModelHelper; |