mirror of
https://github.com/nasa/openmct.git
synced 2025-06-16 14:18:16 +00:00
fix: DisplayLayout and FlexibleLayout toolbar actions only apply to selected layout (#7184)
* refactor: convert to ES6 function * fix: include `keyString` in event name - This negates the need for complicated logic in determining which objectView the action was intended for * fix: handle the case of currentView being null * fix: add keyString to flexibleLayout toolbar events * fix: properly unregister listeners * fix: remove unused imports * fix: revert parameter reorder * refactor: replace usage of `arguments` with `...args` * fix: add a11y to display layout + toolbar * test: add first cut of layout toolbar suite * test: cleanup a bit and add Image test * test: add stubs * fix: remove unused variable * refactor(DisplayLayoutToolbar): convert to ES6 class * test: generate localStorage data for display layout tests * fix: clarify "Add" button label * test: cleanup and don't parameterize tests * test: fix path for recycled_local_storage.json * fix: path to local storage file * docs: add documentation for utilizing localStorage in e2e * fix: path to recycled_local_storage.json * docs: add note hyperlink
This commit is contained in:
@ -30,13 +30,18 @@
|
||||
:style="style"
|
||||
>
|
||||
<slot name="content"></slot>
|
||||
<div class="c-frame__move-bar" @mousedown.left="startMove($event)"></div>
|
||||
<div
|
||||
class="c-frame__move-bar"
|
||||
:aria-label="`Move ${typeName} Frame`"
|
||||
@mousedown.left="startMove($event)"
|
||||
></div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import _ from 'lodash';
|
||||
|
||||
import DRAWING_OBJECT_TYPES from '../DrawingObjectTypes';
|
||||
import LayoutDrag from './../LayoutDrag';
|
||||
|
||||
export default {
|
||||
@ -58,6 +63,13 @@ export default {
|
||||
},
|
||||
emits: ['move', 'end-move'],
|
||||
computed: {
|
||||
typeName() {
|
||||
const { type } = this.item;
|
||||
if (DRAWING_OBJECT_TYPES[type]) {
|
||||
return DRAWING_OBJECT_TYPES[type].name;
|
||||
}
|
||||
return 'Sub-object';
|
||||
},
|
||||
size() {
|
||||
let { width, height } = this.item;
|
||||
|
||||
|
Reference in New Issue
Block a user