mirror of
https://github.com/nasa/openmct.git
synced 2025-06-02 07:30:49 +00:00
adding condition widget styles get interceptor
This commit is contained in:
parent
367e4947a1
commit
f530e99e2d
@ -79,13 +79,6 @@ export default {
|
|||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
if (this.domainObject) {
|
if (this.domainObject) {
|
||||||
if (!this.domainObject.configuration) {
|
|
||||||
// older versions didn't initialize configuration
|
|
||||||
this.domainObject.configuration = {
|
|
||||||
objectStyles: {}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
this.listenToConditionSetChanges();
|
this.listenToConditionSetChanges();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
39
src/plugins/conditionWidget/conditionWidgetInterceptor.js
Normal file
39
src/plugins/conditionWidget/conditionWidgetInterceptor.js
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
/*****************************************************************************
|
||||||
|
* Open MCT, Copyright (c) 2014-2024, 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.
|
||||||
|
*****************************************************************************/
|
||||||
|
|
||||||
|
export default function conditionWidgetStylesInterceptor(openmct) {
|
||||||
|
return {
|
||||||
|
appliesTo: (identifier, domainObject) => {
|
||||||
|
return identifier.key === 'conditionWidget' && !domainObject.configuration?.objectStyles;
|
||||||
|
},
|
||||||
|
invoke: (identifier, domainObject) => {
|
||||||
|
domainObject.configuration = {
|
||||||
|
objectStyles: {}
|
||||||
|
};
|
||||||
|
|
||||||
|
openmct.objects.save(domainObject);
|
||||||
|
|
||||||
|
return domainObject;
|
||||||
|
},
|
||||||
|
priority: openmct.priority.DEFAULT
|
||||||
|
};
|
||||||
|
}
|
@ -20,11 +20,13 @@
|
|||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
|
import conditionWidgetStylesInterceptor from './conditionWidgetInterceptor.js';
|
||||||
import ConditionWidgetViewProvider from './ConditionWidgetViewProvider.js';
|
import ConditionWidgetViewProvider from './ConditionWidgetViewProvider.js';
|
||||||
|
|
||||||
export default function plugin() {
|
export default function plugin() {
|
||||||
return function install(openmct) {
|
return function install(openmct) {
|
||||||
openmct.objectViews.addProvider(new ConditionWidgetViewProvider(openmct));
|
openmct.objectViews.addProvider(new ConditionWidgetViewProvider(openmct));
|
||||||
|
openmct.objects.addGetInterceptor(conditionWidgetStylesInterceptor(openmct));
|
||||||
|
|
||||||
openmct.types.addType('conditionWidget', {
|
openmct.types.addType('conditionWidget', {
|
||||||
key: 'conditionWidget',
|
key: 'conditionWidget',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user