kibana/x-pack/plugins/lens/public/trigger_actions/visualize_field_actions.ts
Brandon Kobel 4584a8b570
Elastic License 2.0 (#90099)
* Updating everything except the license headers themselves

* Applying ESLint rules

* Manually replacing the stragglers
2021-02-03 18:12:39 -08:00

31 lines
1.1 KiB
TypeScript

/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import { i18n } from '@kbn/i18n';
import {
createAction,
ACTION_VISUALIZE_LENS_FIELD,
VisualizeFieldContext,
} from '../../../../../src/plugins/ui_actions/public';
import { ApplicationStart } from '../../../../../src/core/public';
export const visualizeFieldAction = (application: ApplicationStart) =>
createAction<VisualizeFieldContext>({
type: ACTION_VISUALIZE_LENS_FIELD,
id: ACTION_VISUALIZE_LENS_FIELD,
getDisplayName: () =>
i18n.translate('xpack.lens.discover.visualizeFieldLegend', {
defaultMessage: 'Visualize field',
}),
isCompatible: async () => !!application.capabilities.visualize.show,
execute: async (context: VisualizeFieldContext) => {
application.navigateToApp('lens', {
state: { type: ACTION_VISUALIZE_LENS_FIELD, payload: context },
});
},
});