Conditional Styles for multiple items #3076 * Preview condition styles on selecting that condition or one of it's styles Do not evaluate conditional styles in edit mode * Conditions styling tweaked - Condition match `is-current` styling for browse and edit modes; - Disallowed pointer events on Conditions to prevent selection in Inspector when not editing; * Highlight current condition in conditionSet view * Addresses review comments. * Condition matching highlighting tweaked - Enable match highlighting during Editing; - Tweaks to `is-current` styling; * Don't reset the callback on destroy * Combine multiple and single selection styling of objects * Fix issue with applying styles in edit mode * Fix item styles bug * Remove comment * Adds back visibility toggle * Set isEditing on initialization. * Addresses review comments - removes use of lodash. Co-authored-by: charlesh88 <charlesh88@gmail.com> Co-authored-by: Deep Tailor <deep.j.tailor@nasa.gov>
71 lines
2.5 KiB
Vue
71 lines
2.5 KiB
Vue
/*****************************************************************************
|
|
* Open MCT, Copyright (c) 2014-2020, 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.
|
|
*****************************************************************************/
|
|
|
|
<template>
|
|
<div class="u-contents"></div>
|
|
</template>
|
|
|
|
<script>
|
|
import StylesView from '../../plugins/condition/components/inspector/StylesView.vue';
|
|
import Vue from 'vue';
|
|
|
|
export default {
|
|
inject: ['openmct'],
|
|
data() {
|
|
return {
|
|
selection: []
|
|
}
|
|
},
|
|
mounted() {
|
|
this.openmct.selection.on('change', this.updateSelection);
|
|
this.updateSelection(this.openmct.selection.get());
|
|
},
|
|
destroyed() {
|
|
this.openmct.selection.off('change', this.updateSelection);
|
|
},
|
|
methods: {
|
|
updateSelection(selection) {
|
|
if (selection.length > 0 && selection[0].length > 0) {
|
|
if (this.component) {
|
|
this.component.$destroy();
|
|
this.component = undefined;
|
|
this.$el.innerHTML = '';
|
|
}
|
|
let viewContainer = document.createElement('div');
|
|
this.$el.append(viewContainer);
|
|
this.component = new Vue({
|
|
provide: {
|
|
openmct: this.openmct,
|
|
selection: selection
|
|
},
|
|
el: viewContainer,
|
|
components: {
|
|
StylesView
|
|
},
|
|
template: '<styles-view/>'
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|