mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
## Summary Updates a number of broken file references and broken links. --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: Alejandro Fernández Haro <afharo@gmail.com>
96 lines
3.3 KiB
TypeScript
96 lines
3.3 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", the "GNU Affero General Public License v3.0 only", and the "Server Side
|
|
* Public License v 1"; you may not use this file except in compliance with, at
|
|
* your election, the "Elastic License 2.0", the "GNU Affero General Public
|
|
* License v3.0 only", or the "Server Side Public License, v 1".
|
|
*/
|
|
|
|
import { UiActionsStart, UiActionsSetup } from '@kbn/ui-actions-plugin/public';
|
|
import { Plugin, CoreSetup, AppMountParameters } from '@kbn/core/public';
|
|
import { DeveloperExamplesSetup } from '@kbn/developer-examples-plugin/public';
|
|
import {
|
|
PHONE_TRIGGER,
|
|
USER_TRIGGER,
|
|
COUNTRY_TRIGGER,
|
|
lookUpWeatherAction,
|
|
viewInMapsAction,
|
|
createEditUserAction,
|
|
makePhoneCallAction,
|
|
showcasePluggability,
|
|
createTriggerPhoneTriggerAction,
|
|
} from './actions/actions';
|
|
import image from './ui_actions.png';
|
|
|
|
interface StartDeps {
|
|
uiActions: UiActionsStart;
|
|
}
|
|
|
|
interface SetupDeps {
|
|
uiActions: UiActionsSetup;
|
|
developerExamples: DeveloperExamplesSetup;
|
|
}
|
|
|
|
export class UiActionsExplorerPlugin implements Plugin<void, void, {}, StartDeps> {
|
|
public setup(core: CoreSetup<StartDeps>, deps: SetupDeps) {
|
|
deps.uiActions.registerTrigger({
|
|
id: COUNTRY_TRIGGER,
|
|
});
|
|
deps.uiActions.registerTrigger({
|
|
id: PHONE_TRIGGER,
|
|
});
|
|
deps.uiActions.registerTrigger({
|
|
id: USER_TRIGGER,
|
|
});
|
|
|
|
const startServices = core.getStartServices();
|
|
|
|
deps.uiActions.addTriggerAction(
|
|
USER_TRIGGER,
|
|
createTriggerPhoneTriggerAction(async () => (await startServices)[1].uiActions)
|
|
);
|
|
deps.uiActions.addTriggerAction(
|
|
USER_TRIGGER,
|
|
createEditUserAction(async () => (await startServices)[0])
|
|
);
|
|
|
|
deps.uiActions.addTriggerAction(COUNTRY_TRIGGER, viewInMapsAction);
|
|
deps.uiActions.addTriggerAction(COUNTRY_TRIGGER, lookUpWeatherAction);
|
|
deps.uiActions.addTriggerAction(COUNTRY_TRIGGER, showcasePluggability);
|
|
deps.uiActions.addTriggerAction(PHONE_TRIGGER, makePhoneCallAction);
|
|
deps.uiActions.addTriggerAction(PHONE_TRIGGER, showcasePluggability);
|
|
deps.uiActions.addTriggerAction(USER_TRIGGER, showcasePluggability);
|
|
|
|
core.application.register({
|
|
id: 'uiActionsExplorer',
|
|
title: 'Ui Actions Explorer',
|
|
visibleIn: [],
|
|
async mount(params: AppMountParameters) {
|
|
const [coreStart, depsStart] = await core.getStartServices();
|
|
const { renderApp } = await import('./app');
|
|
return renderApp({ uiActionsStartService: depsStart.uiActions, core: coreStart }, params);
|
|
},
|
|
});
|
|
|
|
deps.developerExamples.register({
|
|
appId: 'uiActionsExplorer',
|
|
title: 'Actions & Triggers',
|
|
description: `Learn how to extent Kibana's UI event system with actions and triggers. In the screen shot, plugins extend dashboard panels by attaching new actions to PANEL_BADGE_TRIGGER and CONTEXT_MENU_TRIGGER triggers.`,
|
|
image,
|
|
links: [
|
|
{
|
|
label: 'README',
|
|
href: 'https://github.com/elastic/kibana/blob/main/src/platform/plugins/shared/ui_actions/README.asciidoc',
|
|
iconType: 'logoGithub',
|
|
size: 's',
|
|
target: '_blank',
|
|
},
|
|
],
|
|
});
|
|
}
|
|
|
|
public start() {}
|
|
|
|
public stop() {}
|
|
}
|