Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MCT.js « src - github.com/nasa/openmct.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 595afa7b053270d46fe7b1f80ffa6f9d57cf22dd (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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
/*****************************************************************************
 * Open MCT, Copyright (c) 2014-2022, United States Government
 * as represented by the Administrator of the National Aeronautics and Space
 * Administration. All rights reserved.
 *
 * Open MCT is 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.
 *
 * Open MCT includes source code licensed under additional open source
 * licenses. See the Open Source Licenses file (LICENSES.md) included with
 * this source code distribution or the Licensing information page available
 * at runtime from the About dialog for additional information.
 *****************************************************************************/

define([
    'EventEmitter',
    './api/api',
    './api/overlays/OverlayAPI',
    './selection/Selection',
    './plugins/plugins',
    './ui/registries/ViewRegistry',
    './plugins/imagery/plugin',
    './ui/registries/InspectorViewRegistry',
    './ui/registries/ToolbarRegistry',
    './ui/router/ApplicationRouter',
    './ui/router/Browse',
    './ui/layout/Layout.vue',
    './ui/preview/plugin',
    './api/Branding',
    './plugins/licenses/plugin',
    './plugins/remove/plugin',
    './plugins/move/plugin',
    './plugins/linkAction/plugin',
    './plugins/duplicate/plugin',
    './plugins/importFromJSONAction/plugin',
    './plugins/exportAsJSONAction/plugin',
    './ui/components/components',
    'vue'
], function (
    EventEmitter,
    api,
    OverlayAPI,
    Selection,
    plugins,
    ViewRegistry,
    ImageryPlugin,
    InspectorViewRegistry,
    ToolbarRegistry,
    ApplicationRouter,
    Browse,
    Layout,
    PreviewPlugin,
    BrandingAPI,
    LicensesPlugin,
    RemoveActionPlugin,
    MoveActionPlugin,
    LinkActionPlugin,
    DuplicateActionPlugin,
    ImportFromJSONAction,
    ExportAsJSONAction,
    components,
    Vue
) {
    /**
     * Open MCT is an extensible web application for building mission
     * control user interfaces. This module is itself an instance of
     * [MCT]{@link module:openmct.MCT}, which provides an interface for
     * configuring and executing the application.
     *
     * @exports openmct
     */

    /**
     * The Open MCT application. This may be configured by installing plugins
     * or registering extensions before the application is started.
     * @class MCT
     * @memberof module:openmct
     * @augments {EventEmitter}
     */
    function MCT() {
        EventEmitter.call(this);
        /* eslint-disable no-undef */
        this.buildInfo = {
            version: __OPENMCT_VERSION__,
            buildDate: __OPENMCT_BUILD_DATE__,
            revision: __OPENMCT_REVISION__,
            branch: __OPENMCT_BUILD_BRANCH__
        };

        this.destroy = this.destroy.bind(this);
        [
            /**
            * Tracks current selection state of the application.
            * @private
            */
            ['selection', () => new Selection(this)],

            /**
             * MCT's time conductor, which may be used to synchronize view contents
             * for telemetry- or time-based views.
             * @type {module:openmct.TimeConductor}
             * @memberof module:openmct.MCT#
             * @name conductor
             */
            ['time', () => new api.TimeAPI(this)],

            /**
             * An interface for interacting with the composition of domain objects.
             * The composition of a domain object is the list of other domain
             * objects it "contains" (for instance, that should be displayed
             * beneath it in the tree.)
             *
             * `composition` may be called as a function, in which case it acts
             * as [`composition.get`]{@link module:openmct.CompositionAPI#get}.
             *
             * @type {module:openmct.CompositionAPI}
             * @memberof module:openmct.MCT#
             * @name composition
             */
            ['composition', () => new api.CompositionAPI(this)],

            /**
             * Registry for views of domain objects which should appear in the
             * main viewing area.
             *
             * @type {module:openmct.ViewRegistry}
             * @memberof module:openmct.MCT#
             * @name objectViews
             */
            ['objectViews', () => new ViewRegistry()],

            /**
             * Registry for views which should appear in the Inspector area.
             * These views will be chosen based on the selection state.
             *
             * @type {module:openmct.InspectorViewRegistry}
             * @memberof module:openmct.MCT#
             * @name inspectorViews
             */
            ['inspectorViews', () => new InspectorViewRegistry()],

            /**
             * Registry for views which should appear in Edit Properties
             * dialogs, and similar user interface elements used for
             * modifying domain objects external to its regular views.
             *
             * @type {module:openmct.ViewRegistry}
             * @memberof module:openmct.MCT#
             * @name propertyEditors
             */
            ['propertyEditors', () => new ViewRegistry()],

            /**
             * Registry for views which should appear in the toolbar area while
             * editing. These views will be chosen based on the selection state.
             *
             * @type {module:openmct.ToolbarRegistry}
             * @memberof module:openmct.MCT#
             * @name toolbars
             */
            ['toolbars', () => new ToolbarRegistry()],

            /**
             * Registry for domain object types which may exist within this
             * instance of Open MCT.
             *
             * @type {module:openmct.TypeRegistry}
             * @memberof module:openmct.MCT#
             * @name types
             */
            ['types', () => new api.TypeRegistry()],

            /**
             * An interface for interacting with domain objects and the domain
             * object hierarchy.
             *
             * @type {module:openmct.ObjectAPI}
             * @memberof module:openmct.MCT#
             * @name objects
             */
            ['objects', () => new api.ObjectAPI.default(this.types, this)],

            /**
             * An interface for retrieving and interpreting telemetry data associated
             * with a domain object.
             *
             * @type {module:openmct.TelemetryAPI}
             * @memberof module:openmct.MCT#
             * @name telemetry
             */
            ['telemetry', () => new api.TelemetryAPI.default(this)],

            /**
             * An interface for creating new indicators and changing them dynamically.
             *
             * @type {module:openmct.IndicatorAPI}
             * @memberof module:openmct.MCT#
             * @name indicators
             */
            ['indicators', () => new api.IndicatorAPI(this)],

            /**
             * MCT's user awareness management, to enable user and
             * role specific functionality.
             * @type {module:openmct.UserAPI}
             * @memberof module:openmct.MCT#
             * @name user
             */
            ['user', () => new api.UserAPI(this)],

            ['notifications', () => new api.NotificationAPI()],

            ['editor', () => new api.EditorAPI.default(this)],

            ['overlays', () => new OverlayAPI.default()],

            ['menus', () => new api.MenuAPI(this)],

            ['actions', () => new api.ActionsAPI(this)],

            ['status', () => new api.StatusAPI(this)],

            ['priority', () => api.PriorityAPI],

            ['router', () => new ApplicationRouter(this)],

            ['faults', () => new api.FaultManagementAPI.default(this)],

            ['forms', () => new api.FormsAPI.default(this)],

            ['branding', () => BrandingAPI.default],

            /**
             * MCT's annotation API that enables
             * human-created comments and categorization linked to data products
             * @type {module:openmct.AnnotationAPI}
             * @memberof module:openmct.MCT#
             * @name annotation
             */
            ['annotation', () => new api.AnnotationAPI(this)]
        ].forEach(apiEntry => {
            const apiName = apiEntry[0];
            const apiObject = apiEntry[1]();

            Object.defineProperty(this, apiName, {
                value: apiObject,
                enumerable: false,
                configurable: false,
                writable: true
            });
        });

        // Plugins that are installed by default
        this.install(this.plugins.Plot());
        this.install(this.plugins.TelemetryTable.default());
        this.install(PreviewPlugin.default());
        this.install(LicensesPlugin.default());
        this.install(RemoveActionPlugin.default());
        this.install(MoveActionPlugin.default());
        this.install(LinkActionPlugin.default());
        this.install(DuplicateActionPlugin.default());
        this.install(ExportAsJSONAction.default());
        this.install(ImportFromJSONAction.default());
        this.install(this.plugins.FormActions.default());
        this.install(this.plugins.FolderView());
        this.install(this.plugins.Tabs());
        this.install(ImageryPlugin.default());
        this.install(this.plugins.FlexibleLayout());
        this.install(this.plugins.GoToOriginalAction());
        this.install(this.plugins.OpenInNewTabAction());
        this.install(this.plugins.WebPage());
        this.install(this.plugins.Condition());
        this.install(this.plugins.ConditionWidget());
        this.install(this.plugins.URLTimeSettingsSynchronizer());
        this.install(this.plugins.NotificationIndicator());
        this.install(this.plugins.NewFolderAction());
        this.install(this.plugins.ViewDatumAction());
        this.install(this.plugins.ViewLargeAction());
        this.install(this.plugins.ObjectInterceptors());
        this.install(this.plugins.DeviceClassifier());
        this.install(this.plugins.UserIndicator());
        this.install(this.plugins.Gauge());
    }

    MCT.prototype = Object.create(EventEmitter.prototype);

    MCT.prototype.MCT = MCT;

    /**
     * Set path to where assets are hosted.  This should be the path to main.js.
     * @memberof module:openmct.MCT#
     * @method setAssetPath
     */
    MCT.prototype.setAssetPath = function (assetPath) {
        this._assetPath = assetPath;
    };

    /**
     * Get path to where assets are hosted.
     * @memberof module:openmct.MCT#
     * @method getAssetPath
     */
    MCT.prototype.getAssetPath = function () {
        const assetPathLength = this._assetPath && this._assetPath.length;
        if (!assetPathLength) {
            return '/';
        }

        if (this._assetPath[assetPathLength - 1] !== '/') {
            return this._assetPath + '/';
        }

        return this._assetPath;
    };

    /**
     * Start running Open MCT. This should be called only after any plugins
     * have been installed.
     * @fires module:openmct.MCT~start
     * @memberof module:openmct.MCT#
     * @method start
     * @param {HTMLElement} [domElement] the DOM element in which to run
     *        MCT; if undefined, MCT will be run in the body of the document
     */
    MCT.prototype.start = function (domElement = document.body, isHeadlessMode = false) {
        if (this.types.get('layout') === undefined) {
            this.install(this.plugins.DisplayLayout({
                showAsView: ['summary-widget']
            }));
        }

        this.element = domElement;

        this.router.route(/^\/$/, () => {
            this.router.setPath('/browse/');
        });

        /**
         * Fired by [MCT]{@link module:openmct.MCT} when the application
         * is started.
         * @event start
         * @memberof module:openmct.MCT~
         */

        if (!isHeadlessMode) {
            const appLayout = new Vue({
                components: {
                    'Layout': Layout.default
                },
                provide: {
                    openmct: this
                },
                template: '<Layout ref="layout"></Layout>'
            });
            domElement.appendChild(appLayout.$mount().$el);

            this.layout = appLayout.$refs.layout;
            Browse(this);
        }

        window.addEventListener('beforeunload', this.destroy);

        this.router.start();
        this.emit('start');
    };

    MCT.prototype.startHeadless = function () {
        let unreachableNode = document.createElement('div');

        return this.start(unreachableNode, true);
    };

    /**
     * Install a plugin in MCT.
     *
     * @param {Function} plugin a plugin install function which will be
     *     invoked with the mct instance.
     * @memberof module:openmct.MCT#
     */
    MCT.prototype.install = function (plugin) {
        plugin(this);
    };

    MCT.prototype.destroy = function () {
        window.removeEventListener('beforeunload', this.destroy);
        this.emit('destroy');
        this.router.destroy();
    };

    MCT.prototype.plugins = plugins;
    MCT.prototype.components = components.default;

    return MCT;
});