summaryrefslogtreecommitdiffstats
path: root/dox-sequence-diagram-ui/src/main/webapp/lib/ecomp/asdc/sequencer/Sequencer.jsx
blob: c0e9483e929316bd5c1c8336f267689f53c08ee4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
/*!
 * Copyright © 2016-2017 European Support Limited
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing
 * permissions and limitations under the License.
 */

import React from 'react';
import PropTypes from 'prop-types';
import Application from './components/application/Application';
import Common from './common/Common';
import Options from './common/Options';
import Model from './model/Model';
import Metamodel from './model/Metamodel';
import Metamodels from './model/Metamodels';
import Scenarios from './model/demo/scenarios/Scenarios';
import '../../../../res/sdc-sequencer.scss';
/**
 * ASDC Sequencer entry point.
 */
class Sequencer extends React.Component {
    // //////////////////////////////////////////////////////////////////////////////////////////////

    constructor(props, context) {
        super(props, context);

        this.setMetamodel.bind(this);
        this.setModel.bind(this);
        this.getModel.bind(this);
        this.getMetamodel.bind(this);
        this.getSVG.bind(this);
        this.getDemoScenarios.bind(this);
        this.newModel.bind(this);

        // Parse options.

        this.options = new Options(props.options);

        // Default scenarios.

        const scenarios = this.getDemoScenarios();
        this.setMetamodel(scenarios.getMetamodels());

        // this.setModel(scenarios.getBlank());
        this.setModel(scenarios.getDimensions());
        // this.setModel(scenarios.getECOMP());
    }

    // //////////////////////////////////////////////////////////////////////////////////////////////

    /**
     * Optionally save known metamodels so that subsequent loading and unloading
     * of models needn't include the corresponding metamodel.
     * @param metamodels array of conformant metamodel JSON definitions.
     * @return this.
     */
    setMetamodel(metamodels) {
        Common.assertType(metamodels, 'Array');
        this.metamodels = new Metamodels(metamodels);
        return this;
    }

    // //////////////////////////////////////////////////////////////////////////////////////////////

    /**
     * Set current diagram.
     * @param modelJSON JSON diagram spec.
     * @param metamodelIdOrDefinition optional metamodel definition or reference. Defaults to
     * the model's metadata @ref, or the default (permissive) metamodel.
     * @return this.
     */
    setModel(modelJSON, metamodelIdOrDefinition) {
        Common.assertType(modelJSON, 'Object');
        const ref = modelJSON.metadata ? modelJSON.metadata.ref : undefined;
        const metamodel = this.getMetamodel(metamodelIdOrDefinition || ref);
        Common.assertInstanceOf(metamodel, Metamodel);
        this.model = new Model(modelJSON, metamodel);
        if (this.application) {
            this.application.setModel(this.model);
        }
        return this;
    }

    // //////////////////////////////////////////////////////////////////////////////////////////////

    /**
     * Get current diagram state. At any given instant the diagram might not make *sense*
     * but it should always be syntactically valid.
     * @return current Model.
     */
    getModel() {
        if (this.application) {
            const model = this.application.getModel();
            if (model) {
                return model.unwrap();
            }
        }

        return this.model;
    }

    // //////////////////////////////////////////////////////////////////////////////////////////////

    /**
     * Extract SVG element.
     * @return stringified SVG element.
     */
    getSVG() {
        return this.application.getSVG();
    }

    // //////////////////////////////////////////////////////////////////////////////////////////////

    /**
     * Get demo scenarios, allowing initialization in demo mode from the outside.
     * @returns {Scenarios}
     */
    getDemoScenarios() {
        return new Scenarios();
    }

    // //////////////////////////////////////////////////////////////////////////////////////////////

    /**
     * Create new model.
     * @param metamodelIdOrDefinition
     * @return newly-created model.
     */
    newModel(metamodelIdOrDefinition) {
        const metamodel = this.getMetamodel(metamodelIdOrDefinition);
        Common.assertInstanceOf(metamodel, Metamodel);
        const model = new Model({}, metamodel);
        if (this.application) {
            this.application.setModel(model);
        }
        return model;
    }

    // //////////////////////////////////////////////////////////////////////////////////////////////

    /**
     * Get Metamodel instance corresponding to an ID or JSON definition.
     * @param metamodelIdOrDefinition String ID or JSON definition.
     * @returns Metamodel instance.
     * @private
     */
    getMetamodel(metamodelIdOrDefinition) {
        const metamodelType = Common.getType(metamodelIdOrDefinition);
        if (metamodelType === 'Object') {
            return new Metamodel(metamodelIdOrDefinition);
        }
        return this.metamodels.getMetamodelOrDefault(metamodelIdOrDefinition);
    }

    // //////////////////////////////////////////////////////////////////////////////////////////////

    /**
     * Render current diagram state.
     */
    render() {
        if (this.props.model) {
            // If a model was specified as a property, apply it. Otherwise
            // fall back to the demo model.

            const scenarios = this.getDemoScenarios();
            const metamodel = [
                scenarios.getBlankMetamodel(),
                scenarios.getECOMPMetamodel()
            ];
            if (this.props.metamodel) {
                metamodel.push(this.props.metamodel);
            }
            this.setMetamodel(metamodel);
            this.setModel(this.props.model);
        }

        return (
            <Application
                options={this.options}
                sequencer={this}
                ref={a => {
                    this.application = a;
                }}
            />
        );
    }
}

Sequencer.propTypes = {
    options: PropTypes.object.isRequired,
    model: PropTypes.object,
    metamodel: PropTypes.object
};

export default Sequencer;