-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Role selection for operator status roles (#6706)
* Add additional test roles to example user * Add session storage and role to user indicator * Update example user provider * Added selection dialog to overlays and implemented for operator status * Display role in user indicator * Updates to broadcast channel lifecycle * Update comment * Comment width * UserAPI role updates and UserIndicator improvement * Moved prompt to UserIndicator * Reconnect channel on error and UserIndicator updates * Updates to status api canPRovideStatusForRole * Cleanup * Store status roles in an array instead of a singular value * Added success notification and cleanup * Lint * Removed unused role param from status api call * Remove default status role from example user plugin * Removed status.getStatusRoleForCurrentUser * Cleanup * Cleanup * Moved roleChannel to private field * Separated input value from active role value * More flight like status role names and parameter names * Update statusRole parameter name * Update default selection for roles if input is not chosen * Update OperatorStatusIndicator install to hide if an observer * console.log * Return null instead of undefined * Remove unneccesary filter on allRoles * refactor: format with prettier * Undid merge error * Merge conflict extra line * Copyright statement * RoleChannelProvider to RoleChannel * Throw error on no provider * Change RoleChannel to ActiveRoleSynchronizer and update method calls to match * iconClass to alert * Add role selection step to beforeEach * example-role to flight * Dismiss overlay from exampleUser plugin which affected menu api positioning --------- Co-authored-by: Scott Bell <[email protected]>
- Loading branch information
1 parent
92329b3
commit 32529ff
Showing
18 changed files
with
434 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/***************************************************************************** | ||
* Open MCT, Copyright (c) 2014-2023, 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. | ||
*****************************************************************************/ | ||
|
||
import SelectionComponent from './components/SelectionComponent.vue'; | ||
import Overlay from './Overlay'; | ||
import Vue from 'vue'; | ||
|
||
class Selection extends Overlay { | ||
constructor({ | ||
iconClass, | ||
title, | ||
message, | ||
selectionOptions, | ||
onChange, | ||
currentSelection, | ||
...options | ||
}) { | ||
let component = new Vue({ | ||
components: { | ||
SelectionComponent: SelectionComponent | ||
}, | ||
provide: { | ||
iconClass, | ||
title, | ||
message, | ||
selectionOptions, | ||
onChange, | ||
currentSelection | ||
}, | ||
template: '<selection-component></selection-component>' | ||
}).$mount(); | ||
|
||
super({ | ||
element: component.$el, | ||
size: 'fit', | ||
dismissable: false, | ||
onChange, | ||
currentSelection, | ||
...options | ||
}); | ||
|
||
this.once('destroy', () => { | ||
component.$destroy(); | ||
}); | ||
} | ||
} | ||
|
||
export default Selection; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<template> | ||
<div class="c-message"> | ||
<!--Uses flex-row --> | ||
<div class="c-message__icon" :class="['u-icon-bg-color-' + iconClass]"></div> | ||
<div class="c-message__text"> | ||
<!-- Uses flex-column --> | ||
<div v-if="title" class="c-message__title"> | ||
{{ title }} | ||
</div> | ||
|
||
<div v-if="message" class="c-message__action-text"> | ||
{{ message }} | ||
</div> | ||
<select @change="onChange"> | ||
<option | ||
v-for="option in selectionOptions" | ||
:key="option.key" | ||
:value="option.key" | ||
:selected="option.key === currentSelection" | ||
> | ||
{{ option.name }} | ||
</option> | ||
</select> | ||
|
||
<slot></slot> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
inject: ['iconClass', 'title', 'message', 'selectionOptions', 'currentSelection', 'onChange'] | ||
}; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import { ACTIVE_ROLE_BROADCAST_CHANNEL_NAME } from './constants'; | ||
|
||
class ActiveRoleSynchronizer { | ||
#roleChannel; | ||
|
||
constructor(openmct) { | ||
this.openmct = openmct; | ||
this.#roleChannel = new BroadcastChannel(ACTIVE_ROLE_BROADCAST_CHANNEL_NAME); | ||
this.setActiveRoleFromChannelMessage = this.setActiveRoleFromChannelMessage.bind(this); | ||
|
||
this.subscribeToRoleChanges(this.setActiveRoleFromChannelMessage); | ||
} | ||
subscribeToRoleChanges(callback) { | ||
this.#roleChannel.addEventListener('message', callback); | ||
} | ||
unsubscribeFromRoleChanges(callback) { | ||
this.#roleChannel.removeEventListener('message', callback); | ||
} | ||
|
||
setActiveRoleFromChannelMessage(event) { | ||
const role = event.data; | ||
this.openmct.user.setActiveRole(role); | ||
} | ||
broadcastNewRole(role) { | ||
if (!this.#roleChannel.name) { | ||
return false; | ||
} | ||
|
||
this.#roleChannel.postMessage(role); | ||
} | ||
destroy() { | ||
this.unsubscribeFromRoleChanges(this.setActiveRoleFromChannelMessage); | ||
this.#roleChannel.close(); | ||
} | ||
} | ||
|
||
export default ActiveRoleSynchronizer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.