From a8da0d5917828dbd4bdd3e0f9a9db587f9a5dc3d Mon Sep 17 00:00:00 2001 From: Nikhil Date: Thu, 6 Jan 2022 16:44:21 -0800 Subject: [PATCH] Notebook Snapshotting to the default Notebook isn't working (#4475) * Notebook Snapshotting to the default Notebook isn't working #4469 --- src/plugins/notebook/components/Notebook.vue | 25 ++++++++----------- .../notebook/utils/notebook-entries.js | 8 ++---- 2 files changed, 12 insertions(+), 21 deletions(-) diff --git a/src/plugins/notebook/components/Notebook.vue b/src/plugins/notebook/components/Notebook.vue index fe507dfe36..18542469cd 100644 --- a/src/plugins/notebook/components/Notebook.vue +++ b/src/plugins/notebook/components/Notebook.vue @@ -142,7 +142,6 @@ import { clearDefaultNotebook, getDefaultNotebook, setDefaultNotebook, setDefaul import { addNotebookEntry, createNewEmbed, getEntryPosById, getNotebookEntries, mutateObject } from '../utils/notebook-entries'; import { saveNotebookImageDomainObject, updateNamespaceOfDomainObject } from '../utils/notebook-image'; import { NOTEBOOK_VIEW_TYPE } from '../notebook-constants'; -import objectUtils from 'objectUtils'; import { debounce } from 'lodash'; import objectLink from '../../../ui/mixins/object-link'; @@ -455,11 +454,6 @@ export default { ? getDefaultNotebook().defaultSectionId : undefined; }, - getDefaultNotebookObject() { - const defaultNotebook = getDefaultNotebook(); - - return defaultNotebook && this.openmct.objects.get(defaultNotebook.identifier); - }, getLinktoNotebook() { const objectPath = this.openmct.router.path; const link = objectLink.computed.objectLink.call({ @@ -619,12 +613,12 @@ export default { this.sectionsChanged({ sections }); }, - removeDefaultClass(domainObject) { - if (!domainObject) { + removeDefaultClass(defaultNotebookIdentifier) { + if (!defaultNotebookIdentifier) { return; } - this.openmct.status.delete(domainObject.identifier); + this.openmct.status.delete(defaultNotebookIdentifier); }, resetSearch() { this.search = ''; @@ -633,15 +627,16 @@ export default { toggleNav() { this.showNav = !this.showNav; }, - async updateDefaultNotebook(notebookStorage) { - const defaultNotebookObject = await this.getDefaultNotebookObject(); - const isSameNotebook = defaultNotebookObject - && objectUtils.makeKeyString(defaultNotebookObject.identifier) === objectUtils.makeKeyString(notebookStorage.identifier); + updateDefaultNotebook(notebookStorage) { + const defaultNotebook = getDefaultNotebook(); + const defaultNotebookIdentifier = defaultNotebook && defaultNotebook.identifier; + const isSameNotebook = defaultNotebookIdentifier + && this.openmct.objects.areIdsEqual(defaultNotebookIdentifier, notebookStorage.identifier); if (!isSameNotebook) { - this.removeDefaultClass(defaultNotebookObject); + this.removeDefaultClass(defaultNotebookIdentifier); } - if (!defaultNotebookObject || !isSameNotebook) { + if (!defaultNotebookIdentifier || !isSameNotebook) { setDefaultNotebook(this.openmct, notebookStorage, this.domainObject); } diff --git a/src/plugins/notebook/utils/notebook-entries.js b/src/plugins/notebook/utils/notebook-entries.js index 5c6abb6462..4ce9901419 100644 --- a/src/plugins/notebook/utils/notebook-entries.js +++ b/src/plugins/notebook/utils/notebook-entries.js @@ -105,11 +105,6 @@ export function addNotebookEntry(openmct, domainObject, notebookStorage, embed = const date = Date.now(); const configuration = domainObject.configuration; const entries = configuration.entries || {}; - - if (!entries) { - return; - } - const embeds = embed ? [embed] : []; @@ -125,7 +120,8 @@ export function addNotebookEntry(openmct, domainObject, notebookStorage, embed = const newEntries = addEntryIntoPage(notebookStorage, entries, entry); addDefaultClass(domainObject, openmct); - domainObject.configuration.entries = newEntries; + + mutateObject(openmct, domainObject, 'configuration.entries', newEntries); return id; }