Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Visualize] Make linked saved search work when user navigates back using browser back button #59690

Merged
merged 7 commits into from
Mar 12, 2020
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ function VisualizeAppController(
savedVis.vis.on('apply', _applyVis);
// vis is instance of src/legacy/ui/public/vis/vis.js.
// SearchSource is a promise-based stream of search results that can inherit from other search sources.
const { vis, searchSource } = savedVis;
const { vis, searchSource, savedSearch } = savedVis;

$scope.vis = vis;

Expand Down Expand Up @@ -379,6 +379,17 @@ function VisualizeAppController(
},
};

const handleLinkedSearch = linked => {
if (linked && !savedVis.savedSearchId && savedSearch) {
savedVis.savedSearchId = savedSearch.id;
vis.savedSearchId = savedSearch.id;
searchSource.setParent(savedSearch.searchSource);
} else if (!linked && savedVis.savedSearchId) {
delete savedVis.savedSearchId;
delete vis.savedSearchId;
}
};

// Create a PersistedState instance for uiState.
const { persistedState, unsubscribePersisted, persistOnChange } = makeStateful(
'uiState',
Expand All @@ -387,9 +398,9 @@ function VisualizeAppController(
$scope.uiState = persistedState;
$scope.savedVis = savedVis;
$scope.query = initialState.query;
$scope.linked = initialState.linked;
$scope.searchSource = searchSource;
$scope.refreshInterval = timefilter.getRefreshInterval();
handleLinkedSearch(initialState.linked);

const addToDashMode =
$route.current.params[DashboardConstants.ADD_VISUALIZATION_TO_DASHBOARD_MODE_PARAM];
Expand Down Expand Up @@ -468,7 +479,7 @@ function VisualizeAppController(
$scope.fetch = function() {
const { query, linked, filters } = stateContainer.getState();
$scope.query = query;
$scope.linked = linked;
handleLinkedSearch(linked);
savedVis.searchSource.setField('query', query);
savedVis.searchSource.setField('filter', filters);
$scope.$broadcast('render');
Expand Down Expand Up @@ -558,20 +569,6 @@ function VisualizeAppController(
updateStateFromSavedQuery(savedQuery);
};

$scope.$watch('linked', linked => {
if (linked && !savedVis.savedSearchId) {
savedVis.savedSearchId = savedVis.searchSource.id;
vis.savedSearchId = savedVis.searchSource.id;

$scope.$broadcast('render');
} else if (!linked && savedVis.savedSearchId) {
delete savedVis.savedSearchId;
delete vis.savedSearchId;

$scope.$broadcast('render');
}
});

/**
* Called when the user clicks "Save" button.
*/
Expand Down Expand Up @@ -663,33 +660,26 @@ function VisualizeAppController(
}

const unlinkFromSavedSearch = () => {
const searchSourceParent = searchSource.getParent();
const searchSourceParent = savedSearch.searchSource;
const searchSourceGrandparent = searchSourceParent.getParent();
const currentIndex = searchSourceParent.getField('index');

delete savedVis.savedSearchId;
delete vis.savedSearchId;
searchSourceParent.setField(
'filter',
_.union(searchSource.getOwnField('filter'), searchSourceParent.getOwnField('filter'))
);

stateContainer.transitions.unlinkSavedSearch(
searchSourceParent.getField('query'),
searchSourceParent.getField('filter')
);
searchSource.setField('index', searchSourceParent.getField('index'));
searchSource.setField('index', currentIndex);
Copy link
Contributor Author

@sulemanof sulemanof Mar 10, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm still not sure, whether we should inherit the index of the parent source while unlinking,
since both the searchSource index and searchSourceParent index are equal always. At least, I didn't find a case, when they could be different.
Maybe it's a question to @ppisljar

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if you create visualization based on saved search, then searchsource won't have index field, but the parent will.
calling searchSource.getField('index') will of course show the correct index (as that walks up the tree)

searchSource.setParent(searchSourceGrandparent);

stateContainer.transitions.unlinkSavedSearch({
query: searchSourceParent.getField('query'),
parentFilters: searchSourceParent.getOwnField('filter'),
});

toastNotifications.addSuccess(
i18n.translate('kbn.visualize.linkedToSearch.unlinkSuccessNotificationText', {
defaultMessage: `Unlinked from saved search '{searchTitle}'`,
values: {
searchTitle: savedVis.savedSearch.title,
searchTitle: savedSearch.title,
},
})
);

$scope.fetch();
};

$scope.getAdditionalMessage = () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/

import { isFunction, omit } from 'lodash';
import { isFunction, omit, union } from 'lodash';

import { migrateAppState } from './migrate_app_state';
import {
Expand Down Expand Up @@ -75,10 +75,10 @@ export function useVisualizeAppState({ stateDefaults, kbnUrlStateStorage }: Argu
query: defaultQuery,
};
},
unlinkSavedSearch: state => (query, filters) => ({
unlinkSavedSearch: state => ({ query, parentFilters = [] }) => ({
...state,
query,
filters,
query: query || state.query,
filters: union(state.filters, parentFilters),
linked: false,
}),
updateVisState: state => newVisState => ({ ...state, vis: toObject(newVisState) }),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export interface VisualizeAppStateTransitions {
removeSavedQuery: (state: VisualizeAppState) => (defaultQuery: Query) => VisualizeAppState;
unlinkSavedSearch: (
state: VisualizeAppState
) => (query: Query, filters: Filter[]) => VisualizeAppState;
) => ({ query, parentFilters }: { query?: Query; parentFilters?: Filter[] }) => VisualizeAppState;
updateVisState: (state: VisualizeAppState) => (vis: PureVisState) => VisualizeAppState;
updateFromSavedQuery: (state: VisualizeAppState) => (savedQuery: SavedQuery) => VisualizeAppState;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ export interface Vis {
aggs: Array<{ [key: string]: any }>;
};

/**
* If a visualization based on the saved search,
* the id is necessary for building an expression function in src/plugins/expressions/common/expression_functions/specs/kibana_context.ts
*/
savedSearchId?: string;

// Since we haven't typed everything here yet, we basically "any" the rest
// of that interface. This should be removed as soon as this type definition
// has been completed. But that way we at least have typing for a couple of
Expand Down