UNPKG

@elastic/eui

Version:

Elastic UI Component Library

248 lines (246 loc) 18.6 kB
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); } import PropTypes from "prop-types"; /* * 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 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 or the Server * Side Public License, v 1. */ import React, { useContext, forwardRef } from 'react'; import classNames from 'classnames'; import { useEuiMemoizedStyles } from '../../services'; import { EuiButtonEmpty, EuiButtonIcon } from '../button'; import { EuiI18n } from '../i18n'; import { EuiToolTip } from '../tool_tip'; import { MODE_VIEWING } from './markdown_modes'; import { EuiMarkdownContext } from './markdown_context'; import { euiMarkdownEditorToolbarStyles } from './markdown_editor_toolbar.styles'; /** * A helper type to ensure the `button` property is defined * on an ` EuiMarkdownEditorUiPlugin ` object. */ import { jsx as ___EmotionJSX } from "@emotion/react"; var boldItalicButtons = [{ id: 'mdBold', label: 'Bold', name: 'strong', iconType: 'textBold' }, { id: 'mdItalic', label: 'Italic', name: 'emphasis', iconType: 'textItalic' }]; var listButtons = [{ id: 'mdUl', label: 'Unordered list', name: 'ul', iconType: 'listBullet' }, { id: 'mdOl', label: 'Ordered list', name: 'ol', iconType: 'listNumber' }, { id: 'mdTl', label: 'Task list', name: 'tl', iconType: 'listCheck' }]; var quoteCodeLinkButtons = [{ id: 'mdQuote', label: 'Quote', name: 'quote', iconType: 'quote' }, { id: 'mdCode', label: 'Code', name: 'inlineCode', iconType: 'code' }, { id: 'mdLink', label: 'Link', name: 'link', iconType: 'link' }]; var EuiMarkdownEditorToolbarButton = function EuiMarkdownEditorToolbarButton(_ref) { var selectedNode = _ref.selectedNode, handleMdButtonClick = _ref.handleMdButtonClick, isEditable = _ref.isEditable, isDisabled = _ref.isDisabled, id = _ref.id, nodeId = _ref.nodeId, label = _ref.label, icon = _ref.icon; var isSelected = selectedNode && selectedNode.type === nodeId; return ___EmotionJSX(EuiButtonIcon, _extends({ color: "text" }, isSelected ? { style: { background: 'rgba(0, 0, 0, 0.15)' } } : null, { "data-test-subj": "euiMarkdownEditorToolbarButton".concat(isSelected ? ' pressed' : ''), onClick: function onClick() { return handleMdButtonClick(id); }, iconType: icon, "aria-label": label, isDisabled: !isEditable || isDisabled })); }; export var EuiMarkdownEditorToolbar = /*#__PURE__*/forwardRef(function (_ref2, ref) { var className = _ref2.className, markdownActions = _ref2.markdownActions, viewMode = _ref2.viewMode, onClickPreview = _ref2.onClickPreview, _uiPlugins = _ref2.uiPlugins, selectedNode = _ref2.selectedNode, right = _ref2.right; var _useContext = useContext(EuiMarkdownContext), openPluginEditor = _useContext.openPluginEditor, readOnly = _useContext.readOnly; var classes = classNames('euiMarkdownEditorToolbar', className); var handleMdButtonClick = function handleMdButtonClick(mdButtonId) { var actionResult = markdownActions.do(mdButtonId); if (actionResult !== true) openPluginEditor(actionResult); }; var isPreviewing = viewMode === MODE_VIEWING; var isEditable = !isPreviewing && !readOnly; var styles = useEuiMemoizedStyles(euiMarkdownEditorToolbarStyles); var uiPlugins = _uiPlugins.filter(function (uiPlugin) { return !!uiPlugin.button; }); return ___EmotionJSX("div", { ref: ref, css: styles.euiMarkdownEditorToolbar, className: classes, "data-test-subj": "euiMarkdownEditorToolbar" }, ___EmotionJSX("div", { css: styles.euiMarkdownEditorToolbar__buttons, className: "euiMarkdownEditorToolbar__buttons" }, boldItalicButtons.map(function (item) { return ___EmotionJSX(EuiToolTip, { key: item.id, content: item.label }, ___EmotionJSX(EuiMarkdownEditorToolbarButton, { selectedNode: selectedNode, handleMdButtonClick: handleMdButtonClick, isEditable: isEditable, id: item.id, nodeId: item.name, label: item.label, icon: item.iconType })); }), ___EmotionJSX("span", { css: styles.euiMarkdownEditorToolbar__divider, className: "euiMarkdownEditorToolbar__divider" }), listButtons.map(function (item) { return ___EmotionJSX(EuiToolTip, { key: item.id, content: item.label }, ___EmotionJSX(EuiMarkdownEditorToolbarButton, { selectedNode: selectedNode, handleMdButtonClick: handleMdButtonClick, isEditable: isEditable, id: item.id, nodeId: item.name, label: item.label, icon: item.iconType })); }), ___EmotionJSX("span", { css: styles.euiMarkdownEditorToolbar__divider, className: "euiMarkdownEditorToolbar__divider" }), quoteCodeLinkButtons.map(function (item) { return ___EmotionJSX(EuiToolTip, { key: item.id, content: item.label }, ___EmotionJSX(EuiMarkdownEditorToolbarButton, { selectedNode: selectedNode, handleMdButtonClick: handleMdButtonClick, isEditable: isEditable, id: item.id, nodeId: item.name, label: item.label, icon: item.iconType })); }), uiPlugins.length > 0 ? ___EmotionJSX(React.Fragment, null, ___EmotionJSX("span", { css: styles.euiMarkdownEditorToolbar__divider, className: "euiMarkdownEditorToolbar__divider" }), uiPlugins.map(function (_ref3) { var name = _ref3.name, button = _ref3.button; return ___EmotionJSX(EuiToolTip, { key: name, content: button.label }, ___EmotionJSX(EuiMarkdownEditorToolbarButton, { selectedNode: selectedNode, handleMdButtonClick: handleMdButtonClick, isEditable: isEditable, isDisabled: button.isDisabled, id: name, nodeId: name, label: button.label, icon: button.iconType })); })) : null), right !== null && right !== void 0 ? right : ___EmotionJSX(PreviewEditorSwitch, { isPreviewing: isPreviewing, onClickPreview: onClickPreview, readOnly: readOnly })); }); EuiMarkdownEditorToolbar.propTypes = { className: PropTypes.string, "aria-label": PropTypes.string, "data-test-subj": PropTypes.string, css: PropTypes.any, selectedNode: PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.any.isRequired]), markdownActions: PropTypes.any.isRequired, viewMode: PropTypes.oneOfType([PropTypes.any.isRequired, PropTypes.any.isRequired]).isRequired, onClickPreview: PropTypes.func.isRequired, uiPlugins: PropTypes.arrayOf(PropTypes.shape({ name: PropTypes.string.isRequired, button: PropTypes.shape({ label: PropTypes.string.isRequired, iconType: PropTypes.oneOfType([PropTypes.oneOf(["accessibility", "addDataApp", "addToDashboard", "advancedSettingsApp", "agentApp", "aggregate", "alignBottom", "alignBottomLeft", "alignBottomRight", "alignCenterHorizontal", "alignCenterVertical", "alignLeft", "alignRight", "alignTop", "alignTopLeft", "alignTopRight", "alert", "analyzeEvent", "annotation", "anomalyChart", "chartAnomaly", "anomalySwimLane", "apmApp", "apmTrace", "chartWaterfall", "appSearchApp", "apps", "arrowDown", "chevronSingleDown", "arrowLeft", "chevronSingleLeft", "arrowRight", "chevronSingleRight", "arrowUp", "chevronSingleUp", "arrowStart", "chevronLimitLeft", "arrowEnd", "chevronLimitRight", "article", "asterisk", "at", "archive", "axisX", "axisYLeft", "axisYRight", "auditbeatApp", "backgroundTask", "beaker", "bell", "bellSlash", "beta", "bolt", "boxesHorizontal", "boxesVertical", "branch", "briefcase", "branchUser", "broom", "brush", "bug", "bulb", "bullseye", "calendar", "canvasApp", "casesApp", "changePointDetection", "chartChangePoint", "chartArea", "chartAreaStack", "chartBarHorizontal", "chartBarHorizontalStack", "chartBarVertical", "chartBarVerticalStack", "chartGauge", "chartHeatmap", "chartLine", "chartPie", "chartTagCloud", "chartThreshold", "check", "checkCircle", "checkInCircleFilled", "checkCircleFill", "cheer", "popper", "classificationJob", "clickLeft", "clickRight", "clock", "clockCounter", "clockControl", "cloud", "cloudDrizzle", "cloudStormy", "cloudSunny", "cluster", "code", "codeApp", "color", "paintBucket", "commandLine", "comment", "compare", "compute", "processor", "console", "consoleApp", "container", "continuityAbove", "continuityAboveBelow", "continuityBelow", "continuityWithin", "contrast", "contrastHigh", "contrastFill", "controls", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "crossProjectSearch", "createAdvancedJob", "createGenericJob", "createGeoJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crossInCircle", "crossCircle", "crosshair", "crosshairs", "currency", "money", "cut", "scissors", "dashboardApp", "dashedCircle", "dataVisualizer", "database", "desktop", "display", "devToolsApp", "diff", "discoverApp", "distributeHorizontal", "distributeVertical", "download", "drag", "dragHorizontal", "dragVertical", "discuss", "document", "documentEdit", "documentation", "documents", "dot", "dotInCircle", "doubleArrowLeft", "chevronDoubleLeft", "doubleArrowRight", "chevronDoubleRight", "ellipsis", "editorAlignCenter", "textAlignCenter", "editorAlignLeft", "textAlignLeft", "editorAlignRight", "textAlignRight", "editorBold", "textBold", "editorChecklist", "listCheck", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "textHeading", "editorItalic", "textItalic", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignLeft", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "listNumber", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "redo", "editorStrike", "textStrike", "editorTable", "table", "editorUnderline", "textUnderline", "editorUndo", "undo", "editorUnorderedList", "listBullet", "email", "mail", "empty", "emsApp", "endpoint", "eql", "query", "eraser", "error", "errorFilled", "errorFill", "esqlVis", "exit", "logOut", "expand", "maximize", "expandMini", "export", "exportAction", "upload", "external", "eye", "eyeClosed", "eyeSlash", "faceHappy", "faceNeutral", "faceSad", "fieldStatistics", "tableInfo", "filebeatApp", "filter", "filterExclude", "filterIgnore", "filterInclude", "filterInCircle", "flask", "flag", "fleetApp", "fold", "folder", "folderClosed", "folderClose", "folderCheck", "folderExclamation", "folderOpen", "folderOpened", "frameNext", "framePrevious", "fullScreen", "fullScreenExit", "function", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "grabOmnidirectional", "gradient", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "home", "hourglass", "if", "info", "image", "importAction", "index", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "mapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexRuntime", "indexSettings", "indexTemporary", "tableTime", "infinity", "inputOutput", "inspect", "invert", "ip", "key", "keyboard", "kqlField", "queryField", "kqlFunction", "kqlOperand", "queryOperand", "kqlSelector", "querySelector", "kqlValue", "queryValue", "kubernetesNode", "kubernetesPod", "launch", "rocket", "layers", "lensApp", "lettering", "text", "lineBreak", "lineBreakSlash", "lineDash", "lineDashed", "lineDot", "lineDotted", "lineSolid", "link", "linkSlash", "list", "listAdd", "lock", "lockOpen", "logPatternAnalysis", "pattern", "logRateAnalysis", "logoAWS", "logoAWSMono", "logoAerospike", "logoApache", "logoAppSearch", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticStack", "logoElasticsearch", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoGoogleG", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoObservability", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoVectorDB", "logoVulnerabilityManagement", "logoWebhook", "logoWindows", "logoWorkplaceSearch", "logsApp", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "queue", "machineLearningApp", "magnet", "magnify", "magnifyExclamation", "magnifyMinus", "magnifyPlus", "magnifyWithExclamation", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "map", "mapMarker", "waypoint", "megaphone", "memory", "menu", "menuDown", "menuLeft", "menuRight", "menuUp", "merge", "metricbeatApp", "metricsApp", "minimize", "minus", "minusCircle", "minusInCircle", "minusInCircleFilled", "minusInSquare", "minusSquare", "mobile", "monitoringApp", "moon", "move", "namespace", "nested", "newChat", "node", "vectorTriangle", "notebookApp", "number", "offline", "wifiSlash", "online", "wifi", "outlierDetectionJob", "package", "packetbeatApp", "pageSelect", "pagesSelect", "palette", "paperClip", "partial", "pause", "payment", "pencil", "percent", "pin", "pinFill", "pinFilled", "pipeBreaks", "pipelineApp", "pipeNoBreaks", "pivot", "play", "playFilled", "plugs", "plus", "plusCircle", "plusInCircle", "plusInCircleFilled", "plusInSquare", "plusSquare", "popout", "presentation", "productRobot", "productAgent", "productCloudInfra", "productDashboard", "productDiscover", "productML", "productStreamsClassic", "productStreamsWired", "push", "send", "question", "quote", "radar", "readOnly", "recentlyViewedApp", "refresh", "regressionJob", "reporter", "reportingApp", "return", "returnKey", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "section", "securityAnalyticsApp", "securityApp", "securitySignal", "securitySignalDetected", "securitySignalResolved", "server", "sessionViewer", "shard", "share", "significantEvents", "singleMetricViewer", "snowflake", "sortAscending", "sortDescending", "sortDown", "sortLeft", "sortRight", "sortUp", "sortable", "spaces", "spacesApp", "sparkles", "sqlApp", "star", "starEmpty", "starEmptySpace", "starFill", "starFilled", "starFillSpace", "starFilledSpace", "starMinusEmpty", "starMinusFill", "starMinusFilled", "starPlusEmpty", "starPlusFill", "starPlusFilled", "stats", "stop", "stopFill", "stopFilled", "stopSlash", "storage", "streamsClassic", "streamsWired", "string", "submodule", "sun", "swatchInput", "symlink", "tableDensityCompact", "tableDensityHigh", "tableDensityExpanded", "tableDensityLow", "tableDensityNormal", "tableOfContents", "tag", "tear", "temperature", "thermometer", "thumbDown", "thumbUp", "timeline", "timelineWithArrow", "timelionApp", "timeRefresh", "refreshTime", "timeslider", "training", "transitionBottomIn", "transitionBottomOut", "transitionLeftIn", "transitionLeftOut", "transitionTopIn", "transitionTopOut", "trash", "unfold", "unlink", "upgradeAssistantApp", "uptimeApp", "user", "userAvatar", "users", "usersRolesApp", "unarchive", "vector", "vectorSquare", "videoPlayer", "visArea", "visAreaStacked", "visBarHorizontal", "visBarHorizontalStacked", "visBarVertical", "visBarVerticalStacked", "visGauge", "visGoal", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "chartMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visVega", "visVisualBuilder", "visualizeApp", "vulnerabilityManagementApp", "warning", "warningFilled", "warningFill", "watchesApp", "web", "wordWrap", "wordWrapDisabled", "workflowsApp", "workflow", "workplaceSearchApp", "wrench", "tokenAlias", "tokenAnnotation", "tokenArray", "tokenBinary", "tokenBoolean", "tokenClass", "tokenCompletionSuggester", "tokenConstant", "tokenDate", "tokenDimension", "tokenElement", "tokenEnum", "tokenEnumMember", "tokenEvent", "tokenException", "tokenField", "tokenFile", "tokenFlattened", "tokenFunction", "tokenGeo", "tokenHistogram", "tokenInterface", "tokenIP", "tokenJoin", "tokenKey", "tokenKeyword", "tokenMethod", "tokenMetricCounter", "tokenMetricGauge", "tokenModule", "tokenNamespace", "tokenNested", "tokenNull", "tokenNumber", "tokenObject", "tokenOperator", "tokenPackage", "tokenParameter", "tokenPercolator", "tokenProperty", "tokenRange", "tokenRankFeature", "tokenRankFeatures", "tokenRepo", "tokenSearchType", "tokenSemanticText", "tokenShape", "tokenString", "tokenStruct", "tokenSymbol", "tokenTag", "tokenText", "tokenTokenCount", "tokenVariable", "tokenVectorDense", "tokenDenseVector", "tokenVectorSparse"]).isRequired, PropTypes.string.isRequired, PropTypes.elementType.isRequired]).isRequired, isDisabled: PropTypes.bool }), helpText: PropTypes.node, formatting: PropTypes.shape({ prefix: PropTypes.string, suffix: PropTypes.string, blockPrefix: PropTypes.string, blockSuffix: PropTypes.string, multiline: PropTypes.bool, replaceNext: PropTypes.string, prefixSpace: PropTypes.bool, scanFor: PropTypes.string, surroundWithNewlines: PropTypes.bool, orderedList: PropTypes.bool, trimFirst: PropTypes.bool }), editor: PropTypes.elementType }).isRequired).isRequired, right: PropTypes.node }; var PreviewEditorSwitch = function PreviewEditorSwitch(_ref4) { var isPreviewing = _ref4.isPreviewing, onClickPreview = _ref4.onClickPreview, readOnly = _ref4.readOnly; return ___EmotionJSX(EuiButtonEmpty, { iconType: isPreviewing ? 'code' : 'eye', color: "text", size: "s", onClick: onClickPreview, isDisabled: readOnly, "data-test-subj": isPreviewing ? 'markdown_editor_preview_button' : 'markdown_editor_edit_button' }, isPreviewing ? ___EmotionJSX(EuiI18n, { token: "euiMarkdownEditorToolbar.editor", default: "Editor" }) : ___EmotionJSX(EuiI18n, { token: "euiMarkdownEditorToolbar.previewMarkdown", default: "Preview" })); }; EuiMarkdownEditorToolbar.displayName = 'EuiMarkdownEditorToolbar';