From 8d5c3c835cba8374a5470a5636946828ba257221 Mon Sep 17 00:00:00 2001 From: Alexey Antonov Date: Tue, 17 Aug 2021 09:38:11 +0300 Subject: [PATCH] [Lens] Fix when clicking "Save and Return" on a Lens visualization the visualization's description gets erased (#108669) Closes: #107841 --- .../app_plugin/save_modal_container.tsx | 57 ++++++++++++------- 1 file changed, 38 insertions(+), 19 deletions(-) diff --git a/x-pack/plugins/lens/public/app_plugin/save_modal_container.tsx b/x-pack/plugins/lens/public/app_plugin/save_modal_container.tsx index 2912daccf8899..45d3f959274f5 100644 --- a/x-pack/plugins/lens/public/app_plugin/save_modal_container.tsx +++ b/x-pack/plugins/lens/public/app_plugin/save_modal_container.tsx @@ -6,21 +6,22 @@ */ import React, { useEffect, useState } from 'react'; -import { ChromeStart, NotificationsStart } from 'kibana/public'; import { i18n } from '@kbn/i18n'; import { METRIC_TYPE } from '@kbn/analytics'; import { partition } from 'lodash'; + +import type { ChromeStart, NotificationsStart, SavedObjectReference } from 'kibana/public'; import { SaveModal } from './save_modal'; -import { LensAppProps, LensAppServices } from './types'; +import type { LensAppProps, LensAppServices } from './types'; import type { SaveProps } from './app'; import { Document, injectFilterReferences } from '../persistence'; -import { LensByReferenceInput, LensEmbeddableInput } from '../embeddable'; -import { LensAttributeService } from '../lens_attribute_service'; +import type { LensByReferenceInput, LensEmbeddableInput } from '../embeddable'; +import type { LensAttributeService } from '../lens_attribute_service'; import { DataPublicPluginStart, esFilters } from '../../../../../src/plugins/data/public'; import { APP_ID, getFullPath, LENS_EMBEDDABLE_TYPE } from '../../common'; import { trackUiEvent } from '../lens_ui_telemetry'; import { checkForDuplicateTitle } from '../../../../../src/plugins/saved_objects/public'; -import { LensAppState } from '../state_management'; +import type { LensAppState } from '../state_management'; type ExtraProps = Pick & Partial>; @@ -181,6 +182,27 @@ const redirectToDashboard = ({ }); }; +const getDocToSave = ( + lastKnownDoc: Document, + saveProps: SaveProps, + references: SavedObjectReference[] +) => { + const docToSave = { + ...getLastKnownDocWithoutPinnedFilters(lastKnownDoc)!, + references, + }; + + if (saveProps.newDescription !== undefined) { + docToSave.description = saveProps.newDescription; + } + + if (saveProps.newTitle !== undefined) { + docToSave.title = saveProps.newTitle; + } + + return docToSave; +}; + export const runSaveLensVisualization = async ( props: { lastKnownDoc?: Document; @@ -192,10 +214,6 @@ export const runSaveLensVisualization = async ( saveProps: SaveProps, options: { saveToLibrary: boolean } ): Promise | undefined> => { - if (!props.lastKnownDoc) { - return; - } - const { chrome, initialInput, @@ -216,28 +234,29 @@ export const runSaveLensVisualization = async ( dashboardFeatureFlag, } = props; - const tagsIds = - persistedDoc && savedObjectsTagging - ? savedObjectsTagging.ui.getTagIdsFromReferences(persistedDoc.references) - : []; + if (!lastKnownDoc) { + return; + } + if (usageCollection) { usageCollection.reportUiCounter(originatingApp || 'visualize', METRIC_TYPE.CLICK, 'lens:save'); } let references = lastKnownDoc.references; + if (savedObjectsTagging) { + const tagsIds = + persistedDoc && savedObjectsTagging + ? savedObjectsTagging.ui.getTagIdsFromReferences(persistedDoc.references) + : []; + references = savedObjectsTagging.ui.updateTagsReferences( references, saveProps.newTags || tagsIds ); } - const docToSave = { - ...getLastKnownDocWithoutPinnedFilters(lastKnownDoc)!, - description: saveProps.newDescription, - title: saveProps.newTitle, - references, - }; + const docToSave = getDocToSave(lastKnownDoc, saveProps, references); // Required to serialize filters in by value mode until // https://github.com/elastic/kibana/issues/77588 is fixed