/* * SPDX-License-Identifier: Apache-2.0 * * The OpenSearch Contributors require contributions made to * this file be licensed under the Apache-2.0 license or a * compatible open source license. * * Any modifications Copyright OpenSearch Contributors. See * GitHub history for details. */ /* * Licensed to Elasticsearch B.V. under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch B.V. licenses this file to you under * the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ import React from 'react'; import { i18n } from '@osd/i18n'; import { EuiBadge } from '@elastic/eui'; import { EuiIconType } from '@elastic/eui/src/components/icon/icon'; import { IEmbeddable, ViewMode, isReferenceOrValueEmbeddable, isErrorEmbeddable, } from '../../../../embeddable/public'; import { ActionByType, IncompatibleActionError } from '../../../../ui_actions/public'; import { reactToUiComponent } from '../../../../opensearch_dashboards_react/public'; export const ACTION_LIBRARY_NOTIFICATION = 'ACTION_LIBRARY_NOTIFICATION'; export interface LibraryNotificationActionContext { embeddable: IEmbeddable; } export class LibraryNotificationAction implements ActionByType { public readonly id = ACTION_LIBRARY_NOTIFICATION; public readonly type = ACTION_LIBRARY_NOTIFICATION; public readonly order = 1; private displayName = i18n.translate('dashboard.panel.LibraryNotification', { defaultMessage: 'Library', }); private icon = 'folderCheck' as const; public readonly MenuItem = reactToUiComponent(() => ( {this.displayName} )); public getDisplayName({ embeddable }: LibraryNotificationActionContext) { if (!embeddable.getRoot() || !embeddable.getRoot().isContainer) { throw new IncompatibleActionError(); } return this.displayName; } public getIconType({ embeddable }: LibraryNotificationActionContext): EuiIconType { if (!embeddable.getRoot() || !embeddable.getRoot().isContainer) { throw new IncompatibleActionError(); } return this.icon; } public getDisplayNameTooltip = ({ embeddable }: LibraryNotificationActionContext) => { if (!embeddable.getRoot() || !embeddable.getRoot().isContainer) { throw new IncompatibleActionError(); } return i18n.translate('dashboard.panel.libraryNotification.toolTip', { defaultMessage: 'This panel is linked to a Library item. Editing the panel might affect other dashboards.', }); }; public isCompatible = async ({ embeddable }: LibraryNotificationActionContext) => { return ( !isErrorEmbeddable(embeddable) && embeddable.getRoot().isContainer && embeddable.getInput()?.viewMode !== ViewMode.VIEW && isReferenceOrValueEmbeddable(embeddable) && embeddable.inputIsRefType(embeddable.getInput()) ); }; public execute = async () => {}; }