@eccenca/gui-elements 6.1.0 → 22.0.0-rc.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +98 -866
- package/LICENSE +202 -0
- package/README.md +56 -1240
- package/blueprint/constants.ts +7 -0
- package/blueprint/toaster/index.tsx +1 -0
- package/dist/cmem/ActivityControl/ActivityControlTypes.d.ts +15 -0
- package/dist/cmem/ActivityControl/ActivityControlTypes.js +1 -0
- package/dist/cmem/ActivityControl/ActivityControlWidget.d.ts +32 -0
- package/dist/cmem/ActivityControl/ActivityControlWidget.js +92 -0
- package/dist/cmem/ActivityControl/ActivityControlWidget.jsx +45 -0
- package/dist/cmem/ActivityControl/ActivityExecutionErrorReportModal.d.ts +12 -0
- package/dist/cmem/ActivityControl/ActivityExecutionErrorReportModal.js +59 -0
- package/dist/cmem/ActivityControl/ActivityExecutionErrorReportModal.jsx +76 -0
- package/dist/cmem/ActivityControl/SilkActivityControl.d.ts +62 -0
- package/dist/cmem/ActivityControl/SilkActivityControl.js +219 -0
- package/dist/cmem/ActivityControl/SilkActivityControl.jsx +217 -0
- package/dist/cmem/ContentBlobToggler/ContentBlobToggler.d.ts +34 -0
- package/dist/cmem/ContentBlobToggler/ContentBlobToggler.js +56 -0
- package/dist/cmem/ContentBlobToggler/ContentBlobToggler.jsx +62 -0
- package/dist/cmem/ContentBlobToggler/StringPreviewContentBlobToggler.d.ts +42 -0
- package/dist/cmem/ContentBlobToggler/StringPreviewContentBlobToggler.js +52 -0
- package/dist/cmem/ContentBlobToggler/StringPreviewContentBlobToggler.jsx +17 -0
- package/dist/cmem/DateTimeDisplay/ElapsedDateTimeDisplay.d.ts +15 -0
- package/dist/cmem/DateTimeDisplay/ElapsedDateTimeDisplay.js +80 -0
- package/dist/cmem/DateTimeDisplay/ElapsedDateTimeDisplay.jsx +77 -0
- package/dist/cmem/index.d.ts +10 -0
- package/dist/cmem/index.js +67 -0
- package/dist/cmem/markdown/Markdown.d.ts +16 -0
- package/dist/cmem/markdown/Markdown.js +75 -0
- package/dist/cmem/markdown/Markdown.jsx +87 -0
- package/dist/cmem/markdown/highlightSearchWords.js +84 -0
- package/dist/common/Intent/index.d.ts +7 -0
- package/dist/common/Intent/index.js +33 -0
- package/dist/common/utils/openInNewTab.d.ts +3 -0
- package/dist/common/utils/openInNewTab.js +22 -0
- package/dist/components/Accordion/Accordion.d.ts +3 -0
- package/dist/components/Accordion/Accordion.js +31 -0
- package/dist/components/Accordion/Accordion.jsx +21 -0
- package/dist/components/Accordion/AccordionItem.d.ts +15 -0
- package/dist/components/Accordion/AccordionItem.js +37 -0
- package/dist/components/Accordion/AccordionItem.jsx +27 -0
- package/dist/components/Application/ApplicationContainer.d.ts +6 -0
- package/dist/components/Application/ApplicationContainer.js +27 -0
- package/dist/components/Application/ApplicationContainer.jsx +20 -0
- package/dist/components/Application/ApplicationContent.d.ts +22 -0
- package/dist/components/Application/ApplicationContent.js +48 -0
- package/dist/components/Application/ApplicationContent.jsx +34 -0
- package/dist/components/Application/ApplicationHeader.d.ts +3 -0
- package/dist/components/Application/ApplicationHeader.js +29 -0
- package/dist/components/Application/ApplicationHeader.jsx +22 -0
- package/dist/components/Application/ApplicationSidebarNavigation.d.ts +12 -0
- package/dist/components/Application/ApplicationSidebarNavigation.js +36 -0
- package/dist/components/Application/ApplicationSidebarNavigation.jsx +22 -0
- package/dist/components/Application/ApplicationSidebarToggler.d.ts +3 -0
- package/dist/components/Application/ApplicationSidebarToggler.js +28 -0
- package/dist/components/Application/ApplicationSidebarToggler.jsx +19 -0
- package/dist/components/Application/ApplicationTitle.d.ts +40 -0
- package/dist/components/Application/ApplicationTitle.js +53 -0
- package/dist/components/Application/ApplicationTitle.jsx +39 -0
- package/dist/components/Application/ApplicationToolbar.d.ts +3 -0
- package/dist/components/Application/ApplicationToolbar.js +30 -0
- package/dist/components/Application/ApplicationToolbar.jsx +22 -0
- package/dist/components/Application/ApplicationToolbarAction.d.ts +3 -0
- package/dist/components/Application/ApplicationToolbarAction.js +30 -0
- package/dist/components/Application/ApplicationToolbarAction.jsx +22 -0
- package/dist/components/Application/ApplicationToolbarPanel.d.ts +3 -0
- package/dist/components/Application/ApplicationToolbarPanel.js +30 -0
- package/dist/components/Application/ApplicationToolbarPanel.jsx +22 -0
- package/dist/components/Application/ApplicationToolbarSection.d.ts +3 -0
- package/dist/components/Application/ApplicationToolbarSection.js +27 -0
- package/dist/components/Application/ApplicationToolbarSection.jsx +20 -0
- package/dist/components/AutocompleteField/AutoCompleteField.d.ts +110 -0
- package/dist/components/AutocompleteField/AutoCompleteField.js +309 -0
- package/dist/components/AutocompleteField/AutoCompleteField.jsx +295 -0
- package/dist/components/AutocompleteField/autoCompleteFieldUtils.js +42 -0
- package/dist/components/Breadcrumb/BreadcrumbItem.d.ts +5 -0
- package/dist/components/Breadcrumb/BreadcrumbItem.js +45 -0
- package/dist/components/Breadcrumb/BreadcrumbItem.jsx +30 -0
- package/dist/components/Breadcrumb/BreadcrumbList.d.ts +24 -0
- package/dist/components/Breadcrumb/BreadcrumbList.js +60 -0
- package/dist/components/Breadcrumb/BreadcrumbList.jsx +35 -0
- package/dist/components/Button/Button.d.ts +58 -0
- package/dist/components/Button/Button.js +84 -0
- package/dist/components/Button/Button.jsx +48 -0
- package/dist/components/Card/Card.d.ts +23 -0
- package/dist/components/Card/Card.js +44 -0
- package/dist/components/Card/Card.jsx +31 -0
- package/dist/components/Card/CardActions.d.ts +14 -0
- package/dist/components/Card/CardActions.js +33 -0
- package/dist/components/Card/CardActions.jsx +27 -0
- package/dist/components/Card/CardActionsAux.d.ts +9 -0
- package/dist/components/Card/CardActionsAux.js +32 -0
- package/dist/components/Card/CardActionsAux.jsx +26 -0
- package/dist/components/Card/CardContent.d.ts +9 -0
- package/dist/components/Card/CardContent.js +32 -0
- package/dist/components/Card/CardContent.jsx +25 -0
- package/dist/components/Card/CardHeader.d.ts +7 -0
- package/dist/components/Card/CardHeader.js +52 -0
- package/dist/components/Card/CardHeader.jsx +41 -0
- package/dist/components/Card/CardOptions.d.ts +11 -0
- package/dist/components/Card/CardOptions.js +35 -0
- package/dist/components/Card/CardOptions.jsx +28 -0
- package/dist/components/Card/CardTitle.d.ts +13 -0
- package/dist/components/Card/CardTitle.js +37 -0
- package/dist/components/Card/CardTitle.jsx +26 -0
- package/dist/components/Card/index.d.ts +8 -0
- package/dist/components/Card/index.js +63 -0
- package/dist/components/Card/index.jsx +8 -0
- package/dist/components/Checkbox/Checkbox.d.ts +3 -0
- package/dist/components/Checkbox/Checkbox.js +30 -0
- package/dist/components/Checkbox/Checkbox.jsx +22 -0
- package/dist/components/ContextOverlay/ContextMenu.d.ts +3 -0
- package/dist/components/ContextOverlay/ContextMenu.js +48 -0
- package/dist/components/ContextOverlay/ContextMenu.jsx +30 -0
- package/dist/components/ContextOverlay/ContextOverlay.d.ts +3 -0
- package/dist/components/ContextOverlay/ContextOverlay.js +37 -0
- package/dist/components/ContextOverlay/ContextOverlay.jsx +27 -0
- package/dist/components/Dialog/AlertDialog.d.ts +22 -0
- package/dist/components/Dialog/AlertDialog.js +56 -0
- package/dist/components/Dialog/AlertDialog.jsx +39 -0
- package/dist/components/Dialog/Modal.d.ts +25 -0
- package/dist/components/Dialog/Modal.js +67 -0
- package/dist/components/Dialog/Modal.jsx +49 -0
- package/dist/components/Dialog/SimpleDialog.d.ts +41 -0
- package/dist/components/Dialog/SimpleDialog.js +62 -0
- package/dist/components/Dialog/SimpleDialog.jsx +50 -0
- package/dist/components/Form/FieldItem.d.ts +16 -0
- package/dist/components/Form/FieldItem.js +82 -0
- package/dist/components/Form/FieldItem.jsx +48 -0
- package/dist/components/Form/FieldItemRow.d.ts +3 -0
- package/dist/components/Form/FieldItemRow.js +30 -0
- package/dist/components/Form/FieldItemRow.jsx +23 -0
- package/dist/components/Form/FieldSet.d.ts +3 -0
- package/dist/components/Form/FieldSet.js +73 -0
- package/dist/components/Form/FieldSet.jsx +49 -0
- package/dist/components/Grid/Grid.d.ts +3 -0
- package/dist/components/Grid/Grid.js +33 -0
- package/dist/components/Grid/Grid.jsx +25 -0
- package/dist/components/Grid/GridColumn.d.ts +3 -0
- package/dist/components/Grid/GridColumn.js +43 -0
- package/dist/components/Grid/GridColumn.jsx +29 -0
- package/dist/components/Grid/GridRow.d.ts +3 -0
- package/dist/components/Grid/GridRow.js +33 -0
- package/dist/components/Grid/GridRow.jsx +26 -0
- package/dist/components/Icon/Icon.d.ts +20 -0
- package/dist/components/Icon/Icon.js +91 -0
- package/dist/components/Icon/Icon.jsx +88 -0
- package/dist/components/Icon/IconButton.d.ts +17 -0
- package/dist/components/Icon/IconButton.js +49 -0
- package/dist/components/Icon/IconButton.jsx +21 -0
- package/dist/components/Icon/canonicalIconNames.d.ts +10 -0
- package/dist/components/Icon/canonicalIconNames.js +547 -0
- package/dist/components/Icon/canonicalIconNames.jsx +534 -0
- package/dist/components/Iframe/Iframe.d.ts +18 -0
- package/dist/components/Iframe/Iframe.js +92 -0
- package/dist/components/Iframe/Iframe.jsx +79 -0
- package/dist/components/Iframe/IframeModal.d.ts +12 -0
- package/dist/components/Iframe/IframeModal.js +66 -0
- package/dist/components/Iframe/IframeModal.jsx +49 -0
- package/dist/components/Label/Label.d.ts +3 -0
- package/dist/components/Label/Label.js +58 -0
- package/dist/components/Label/Label.jsx +32 -0
- package/dist/components/Link/Link.d.ts +3 -0
- package/dist/components/Link/Link.js +36 -0
- package/dist/components/Link/Link.jsx +22 -0
- package/dist/components/List/List.d.ts +17 -0
- package/dist/components/List/List.js +50 -0
- package/dist/components/List/List.jsx +44 -0
- package/dist/components/Menu/Menu.d.ts +3 -0
- package/dist/components/Menu/Menu.js +29 -0
- package/dist/components/Menu/Menu.jsx +19 -0
- package/dist/components/Menu/MenuDivider.d.ts +3 -0
- package/dist/components/Menu/MenuDivider.js +29 -0
- package/dist/components/Menu/MenuDivider.jsx +19 -0
- package/dist/components/Menu/MenuItem.d.ts +13 -0
- package/dist/components/Menu/MenuItem.js +45 -0
- package/dist/components/Menu/MenuItem.jsx +27 -0
- package/dist/components/Notification/Notification.d.ts +3 -0
- package/dist/components/Notification/Notification.js +79 -0
- package/dist/components/Notification/Notification.jsx +48 -0
- package/dist/components/Notification/Toast.d.ts +3 -0
- package/dist/components/Notification/Toast.js +31 -0
- package/dist/components/Notification/Toast.jsx +21 -0
- package/dist/components/NumericInput/NumericInput.d.ts +4 -0
- package/dist/components/NumericInput/NumericInput.js +14 -0
- package/dist/components/NumericInput/NumericInput.jsx +3 -0
- package/dist/components/OverviewItem/OverviewItem.d.ts +17 -0
- package/dist/components/OverviewItem/OverviewItem.js +45 -0
- package/dist/components/OverviewItem/OverviewItem.jsx +37 -0
- package/dist/components/OverviewItem/OverviewItemActions.d.ts +13 -0
- package/dist/components/OverviewItem/OverviewItemActions.js +32 -0
- package/dist/components/OverviewItem/OverviewItemActions.jsx +26 -0
- package/dist/components/OverviewItem/OverviewItemDepiction.d.ts +6 -0
- package/dist/components/OverviewItem/OverviewItemDepiction.js +28 -0
- package/dist/components/OverviewItem/OverviewItemDepiction.jsx +22 -0
- package/dist/components/OverviewItem/OverviewItemDescription.d.ts +3 -0
- package/dist/components/OverviewItem/OverviewItemDescription.js +27 -0
- package/dist/components/OverviewItem/OverviewItemDescription.jsx +20 -0
- package/dist/components/OverviewItem/OverviewItemLine.d.ts +19 -0
- package/dist/components/OverviewItem/OverviewItemLine.js +35 -0
- package/dist/components/OverviewItem/OverviewItemLine.jsx +29 -0
- package/dist/components/OverviewItem/OverviewItemList.d.ts +26 -0
- package/dist/components/OverviewItem/OverviewItemList.js +38 -0
- package/dist/components/OverviewItem/OverviewItemList.jsx +31 -0
- package/dist/components/OverviewItem/index.d.ts +7 -0
- package/dist/components/OverviewItem/index.js +55 -0
- package/dist/components/OverviewItem/index.jsx +7 -0
- package/dist/components/Pagination/Pagination.d.ts +17 -0
- package/dist/components/Pagination/Pagination.js +80 -0
- package/dist/components/Pagination/Pagination.jsx +81 -0
- package/dist/components/ProgressBar/ProgressBar.d.ts +3 -0
- package/dist/components/ProgressBar/ProgressBar.js +12 -0
- package/dist/components/ProgressBar/ProgressBar.jsx +3 -0
- package/dist/components/PropertyValuePair/PropertyName.d.ts +3 -0
- package/dist/components/PropertyValuePair/PropertyName.js +32 -0
- package/dist/components/PropertyValuePair/PropertyName.jsx +21 -0
- package/dist/components/PropertyValuePair/PropertyValue.d.ts +3 -0
- package/dist/components/PropertyValuePair/PropertyValue.js +27 -0
- package/dist/components/PropertyValuePair/PropertyValue.jsx +20 -0
- package/dist/components/PropertyValuePair/PropertyValueList.d.ts +3 -0
- package/dist/components/PropertyValuePair/PropertyValueList.js +27 -0
- package/dist/components/PropertyValuePair/PropertyValueList.jsx +20 -0
- package/dist/components/PropertyValuePair/PropertyValuePair.d.ts +3 -0
- package/dist/components/PropertyValuePair/PropertyValuePair.js +29 -0
- package/dist/components/PropertyValuePair/PropertyValuePair.jsx +23 -0
- package/dist/components/PropertyValuePair/index.d.ts +5 -0
- package/dist/components/PropertyValuePair/index.js +39 -0
- package/dist/components/PropertyValuePair/index.jsx +5 -0
- package/dist/components/RadioButton/RadioButton.d.ts +3 -0
- package/dist/components/RadioButton/RadioButton.js +30 -0
- package/dist/components/RadioButton/RadioButton.jsx +22 -0
- package/dist/components/Separation/Divider.d.ts +3 -0
- package/dist/components/Separation/Divider.js +23 -0
- package/dist/components/Separation/Divider.jsx +7 -0
- package/dist/components/Separation/Spacing.d.ts +9 -0
- package/dist/components/Separation/Spacing.js +27 -0
- package/dist/components/Separation/Spacing.jsx +11 -0
- package/dist/components/SimpleTable/TableContainer.d.ts +3 -0
- package/dist/components/SimpleTable/TableContainer.js +37 -0
- package/dist/components/SimpleTable/TableContainer.jsx +27 -0
- package/dist/components/SimpleTable/index.d.ts +3 -0
- package/dist/components/SimpleTable/index.js +53 -0
- package/dist/components/SimpleTable/index.jsx +3 -0
- package/dist/components/Spinner/Spinner.d.ts +19 -0
- package/dist/components/Spinner/Spinner.js +98 -0
- package/dist/components/Spinner/Spinner.jsx +83 -0
- package/dist/components/Structure/Section.d.ts +3 -0
- package/dist/components/Structure/Section.js +27 -0
- package/dist/components/Structure/Section.jsx +20 -0
- package/dist/components/Structure/SectionHeader.d.ts +3 -0
- package/dist/components/Structure/SectionHeader.js +27 -0
- package/dist/components/Structure/SectionHeader.jsx +20 -0
- package/dist/components/Structure/TitleMainsection.d.ts +3 -0
- package/dist/components/Structure/TitleMainsection.js +35 -0
- package/dist/components/Structure/TitleMainsection.jsx +26 -0
- package/dist/components/Structure/TitlePage.d.ts +3 -0
- package/dist/components/Structure/TitlePage.js +35 -0
- package/dist/components/Structure/TitlePage.jsx +26 -0
- package/dist/components/Structure/TitleSubsection.d.ts +3 -0
- package/dist/components/Structure/TitleSubsection.js +32 -0
- package/dist/components/Structure/TitleSubsection.jsx +23 -0
- package/dist/components/Switch/Switch.d.ts +4 -0
- package/dist/components/Switch/Switch.js +39 -0
- package/dist/components/Switch/Switch.jsx +22 -0
- package/dist/components/Tabs/Tabs.d.ts +24 -0
- package/dist/components/Tabs/Tabs.js +95 -0
- package/dist/components/Tabs/Tabs.jsx +49 -0
- package/dist/components/Tag/Tag.d.ts +27 -0
- package/dist/components/Tag/Tag.js +50 -0
- package/dist/components/Tag/Tag.jsx +46 -0
- package/dist/components/Tag/TagList.d.ts +3 -0
- package/dist/components/Tag/TagList.js +44 -0
- package/dist/components/Tag/TagList.jsx +38 -0
- package/dist/components/TextField/SearchField.d.ts +23 -0
- package/dist/components/TextField/SearchField.js +54 -0
- package/dist/components/TextField/SearchField.jsx +27 -0
- package/dist/components/TextField/TextArea.d.ts +22 -0
- package/dist/components/TextField/TextArea.js +60 -0
- package/dist/components/TextField/TextArea.jsx +36 -0
- package/dist/components/TextField/TextField.d.ts +34 -0
- package/dist/components/TextField/TextField.js +73 -0
- package/dist/components/TextField/TextField.jsx +40 -0
- package/dist/components/Toolbar/Toolbar.d.ts +18 -0
- package/dist/components/Toolbar/Toolbar.js +32 -0
- package/dist/components/Toolbar/Toolbar.jsx +26 -0
- package/dist/components/Toolbar/ToolbarSection.d.ts +22 -0
- package/dist/components/Toolbar/ToolbarSection.js +34 -0
- package/dist/components/Toolbar/ToolbarSection.jsx +28 -0
- package/dist/components/Tooltip/Tooltip.d.ts +17 -0
- package/dist/components/Tooltip/Tooltip.js +40 -0
- package/dist/components/Tooltip/Tooltip.jsx +25 -0
- package/dist/components/Typography/Highlighter.d.ts +18 -0
- package/dist/components/Typography/Highlighter.js +89 -0
- package/dist/components/Typography/Highlighter.jsx +58 -0
- package/dist/components/Typography/HtmlContentBlock.d.ts +6 -0
- package/dist/components/Typography/HtmlContentBlock.js +38 -0
- package/dist/components/Typography/HtmlContentBlock.jsx +31 -0
- package/dist/components/Typography/OverflowText.d.ts +12 -0
- package/dist/components/Typography/OverflowText.js +34 -0
- package/dist/components/Typography/OverflowText.jsx +31 -0
- package/dist/components/Typography/WhiteSpaceContainer.d.ts +5 -0
- package/dist/components/Typography/WhiteSpaceContainer.js +38 -0
- package/dist/components/Typography/WhiteSpaceContainer.jsx +34 -0
- package/dist/components/Typography/classnames.d.ts +7 -0
- package/dist/components/Typography/classnames.js +24 -0
- package/dist/components/Workspace/WorkspaceContent.d.ts +3 -0
- package/dist/components/Workspace/WorkspaceContent.js +34 -0
- package/dist/components/Workspace/WorkspaceContent.jsx +25 -0
- package/dist/components/Workspace/WorkspaceHeader.d.ts +10 -0
- package/dist/components/Workspace/WorkspaceHeader.js +27 -0
- package/dist/components/Workspace/WorkspaceHeader.jsx +20 -0
- package/dist/components/Workspace/WorkspaceMain.d.ts +3 -0
- package/dist/components/Workspace/WorkspaceMain.js +30 -0
- package/dist/components/Workspace/WorkspaceMain.jsx +22 -0
- package/dist/components/Workspace/WorkspaceSide.d.ts +3 -0
- package/dist/components/Workspace/WorkspaceSide.js +34 -0
- package/dist/components/Workspace/WorkspaceSide.jsx +22 -0
- package/dist/components/interfaces.d.ts +3 -0
- package/dist/components/interfaces.js +1 -0
- package/dist/configuration/constants.d.ts +1 -0
- package/dist/configuration/constants.js +9 -0
- package/dist/extensions/react-flow/edges/EdgeDefault.d.ts +10 -0
- package/dist/extensions/react-flow/edges/EdgeDefault.js +62 -0
- package/dist/extensions/react-flow/edges/EdgeDefault.jsx +45 -0
- package/dist/extensions/react-flow/edges/EdgeStep.d.ts +9 -0
- package/dist/extensions/react-flow/edges/EdgeStep.js +27 -0
- package/dist/extensions/react-flow/edges/EdgeStep.jsx +6 -0
- package/dist/extensions/react-flow/edges/EdgeTools.d.ts +12 -0
- package/dist/extensions/react-flow/edges/EdgeTools.js +48 -0
- package/dist/extensions/react-flow/edges/EdgeTools.jsx +32 -0
- package/dist/extensions/react-flow/edges/edgeTypes.d.ts +15 -0
- package/dist/extensions/react-flow/edges/edgeTypes.js +32 -0
- package/dist/extensions/react-flow/edges/utils.d.ts +4 -0
- package/dist/extensions/react-flow/edges/utils.js +41 -0
- package/dist/extensions/react-flow/handles/HandleContent.d.ts +6 -0
- package/dist/extensions/react-flow/handles/HandleContent.js +40 -0
- package/dist/extensions/react-flow/handles/HandleContent.jsx +15 -0
- package/dist/extensions/react-flow/handles/HandleDefault.d.ts +9 -0
- package/dist/extensions/react-flow/handles/HandleDefault.js +33 -0
- package/dist/extensions/react-flow/handles/HandleDefault.jsx +23 -0
- package/dist/extensions/react-flow/index.d.ts +14 -0
- package/dist/extensions/react-flow/index.js +83 -0
- package/dist/extensions/react-flow/minimap/MiniMap.d.ts +8 -0
- package/dist/extensions/react-flow/minimap/MiniMap.js +111 -0
- package/dist/extensions/react-flow/minimap/MiniMap.jsx +83 -0
- package/dist/extensions/react-flow/minimap/utils.d.ts +2 -0
- package/dist/extensions/react-flow/minimap/utils.js +29 -0
- package/dist/extensions/react-flow/nodes/NodeContentExtension.js +56 -0
- package/dist/extensions/react-flow/nodes/NodeDefault.d.ts +133 -0
- package/dist/extensions/react-flow/nodes/NodeDefault.js +223 -0
- package/dist/extensions/react-flow/nodes/NodeDefault.jsx +175 -0
- package/dist/extensions/react-flow/nodes/NodeTools.d.ts +9 -0
- package/dist/extensions/react-flow/nodes/NodeTools.js +58 -0
- package/dist/extensions/react-flow/nodes/NodeTools.jsx +46 -0
- package/dist/extensions/react-flow/nodes/nodeTypes.d.ts +13 -0
- package/dist/extensions/react-flow/nodes/nodeTypes.js +22 -0
- package/dist/index.d.ts +92 -0
- package/dist/index.js +876 -0
- package/dist/legacy-replacements/Button/AffirmativeButton.js +23 -0
- package/dist/legacy-replacements/Button/Button.js +91 -0
- package/dist/legacy-replacements/Button/DismissiveButton.js +23 -0
- package/dist/legacy-replacements/Button/DisruptiveButton.js +23 -0
- package/dist/legacy-replacements/Checkbox/Checkbox.js +66 -0
- package/dist/legacy-replacements/Radio/RadioButton.js +48 -0
- package/dist/legacy-replacements/TextField/TextField.js +96 -0
- package/package.json +151 -71
- package/src/_shame.scss +111 -0
- package/src/cmem/ActivityControl/ActivityControlTypes.ts +28 -0
- package/src/cmem/ActivityControl/ActivityControlWidget.tsx +165 -0
- package/src/cmem/ActivityControl/ActivityExecutionErrorReportModal.tsx +55 -0
- package/src/cmem/ActivityControl/SilkActivityControl.tsx +303 -0
- package/src/cmem/ActivityControl/activitycontrol.scss +27 -0
- package/src/cmem/ContentBlobToggler/ContentBlobToggler.tsx +95 -0
- package/src/cmem/ContentBlobToggler/StringPreviewContentBlobToggler.tsx +76 -0
- package/src/cmem/DateTimeDisplay/ElapsedDateTimeDisplay.tsx +69 -0
- package/src/cmem/DateTimeDisplay/tests/ElapsedDateTimeDisplay.test.tsx +29 -0
- package/src/cmem/_index.scss +2 -0
- package/src/cmem/index.ts +35 -0
- package/src/cmem/markdown/Markdown.tsx +89 -0
- package/src/cmem/markdown/highlightSearchWords.test.ts +36 -0
- package/src/cmem/markdown/highlightSearchWords.ts +67 -0
- package/src/cmem/markdown/markdown.scss +32 -0
- package/src/common/Intent/index.ts +23 -0
- package/src/common/utils/openInNewTab.ts +17 -0
- package/src/components/Accordion/Accordion.tsx +13 -0
- package/src/components/Accordion/AccordionItem.tsx +73 -0
- package/src/components/Accordion/accordion.scss +96 -0
- package/src/components/Application/ApplicationContainer.tsx +21 -0
- package/src/components/Application/ApplicationContent.tsx +57 -0
- package/src/components/Application/ApplicationHeader.tsx +14 -0
- package/src/components/Application/ApplicationSidebarNavigation.tsx +39 -0
- package/src/components/Application/ApplicationSidebarToggler.tsx +15 -0
- package/src/components/Application/ApplicationTitle.tsx +95 -0
- package/src/components/Application/ApplicationToolbar.tsx +17 -0
- package/src/components/Application/ApplicationToolbarAction.tsx +17 -0
- package/src/components/Application/ApplicationToolbarPanel.tsx +17 -0
- package/src/components/Application/ApplicationToolbarSection.tsx +15 -0
- package/src/components/Application/_config.scss +40 -0
- package/src/components/Application/_content.scss +27 -0
- package/src/components/Application/_header.scss +237 -0
- package/src/components/Application/_sidebar.scss +37 -0
- package/src/components/Application/_toolbar.scss +75 -0
- package/src/components/Application/application.scss +9 -0
- package/src/components/AutocompleteField/AutoCompleteField.tsx +399 -0
- package/src/components/AutocompleteField/autoCompleteFieldUtils.tsx +32 -0
- package/src/components/AutocompleteField/autocompletefield.scss +6 -0
- package/src/components/Breadcrumb/BreadcrumbItem.tsx +46 -0
- package/src/components/Breadcrumb/BreadcrumbList.tsx +81 -0
- package/src/components/Breadcrumb/breadcrumb.scss +47 -0
- package/src/components/Button/Button.stories.tsx +199 -0
- package/src/components/Button/Button.test.tsx +37 -0
- package/src/components/Button/Button.tsx +127 -0
- package/src/components/Button/button.scss +55 -0
- package/src/components/Card/Card.tsx +58 -0
- package/src/components/Card/CardActions.tsx +36 -0
- package/src/components/Card/CardActionsAux.tsx +29 -0
- package/src/components/Card/CardContent.tsx +26 -0
- package/src/components/Card/CardHeader.tsx +44 -0
- package/src/components/Card/CardOptions.tsx +32 -0
- package/src/components/Card/CardTitle.tsx +32 -0
- package/src/components/Card/card.scss +138 -0
- package/src/components/Card/index.tsx +17 -0
- package/src/components/Card/stories/Card.stories.tsx +82 -0
- package/src/components/Card/stories/CardActions.stories.tsx +41 -0
- package/src/components/Card/stories/CardContent.stories.tsx +28 -0
- package/src/components/Card/stories/CardHeader.stories.tsx +38 -0
- package/src/components/Card/stories/CardOptions.stories.tsx +27 -0
- package/src/components/Card/stories/CardTitle.stories.tsx +27 -0
- package/src/components/Checkbox/Checkbox.tsx +20 -0
- package/src/components/Checkbox/checkbox.scss +61 -0
- package/src/components/ContextOverlay/ContextMenu.tsx +36 -0
- package/src/components/ContextOverlay/ContextOverlay.tsx +29 -0
- package/src/components/ContextOverlay/contextoverlay.scss +15 -0
- package/src/components/Dialog/AlertDialog.tsx +52 -0
- package/src/components/Dialog/Modal.tsx +86 -0
- package/src/components/Dialog/SimpleDialog.tsx +113 -0
- package/src/components/Dialog/dialog.scss +75 -0
- package/src/components/Dialog/stories/AlertDialog.stories.tsx +42 -0
- package/src/components/Dialog/stories/Modal.stories.tsx +88 -0
- package/src/components/Dialog/stories/SimpleDialog.stories.tsx +39 -0
- package/src/components/Form/FieldItem.tsx +95 -0
- package/src/components/Form/FieldItemRow.tsx +14 -0
- package/src/components/Form/FieldSet.tsx +71 -0
- package/src/components/Form/form.scss +159 -0
- package/src/components/Grid/Grid.tsx +29 -0
- package/src/components/Grid/GridColumn.tsx +33 -0
- package/src/components/Grid/GridRow.tsx +30 -0
- package/src/components/Grid/grid.scss +89 -0
- package/src/components/Icon/Icon.tsx +96 -0
- package/src/components/Icon/IconButton.tsx +59 -0
- package/src/components/Icon/canonicalIconNames.json +120 -0
- package/src/components/Icon/canonicalIconNames.tsx +661 -0
- package/src/components/Icon/icon.scss +40 -0
- package/src/components/Iframe/Iframe.tsx +89 -0
- package/src/components/Iframe/IframeModal.tsx +77 -0
- package/src/components/Iframe/iframe.scss +49 -0
- package/src/components/Label/Label.tsx +43 -0
- package/src/components/Label/label.scss +75 -0
- package/src/components/Link/Link.tsx +19 -0
- package/src/components/Link/link.scss +6 -0
- package/src/components/List/List.tsx +46 -0
- package/src/components/Menu/Menu.tsx +9 -0
- package/src/components/Menu/MenuDivider.tsx +9 -0
- package/src/components/Menu/MenuItem.tsx +46 -0
- package/src/components/Menu/menu.scss +79 -0
- package/src/components/Notification/Notification.tsx +69 -0
- package/src/components/Notification/Toast.tsx +17 -0
- package/src/components/Notification/notification.scss +83 -0
- package/src/components/NumericInput/NumericInput.tsx +4 -0
- package/src/components/OverviewItem/OverviewItem.tsx +61 -0
- package/src/components/OverviewItem/OverviewItemActions.tsx +35 -0
- package/src/components/OverviewItem/OverviewItemDepiction.tsx +29 -0
- package/src/components/OverviewItem/OverviewItemDescription.tsx +16 -0
- package/src/components/OverviewItem/OverviewItemLine.tsx +43 -0
- package/src/components/OverviewItem/OverviewItemList.tsx +58 -0
- package/src/components/OverviewItem/index.tsx +15 -0
- package/src/components/OverviewItem/overviewitem.scss +193 -0
- package/src/components/OverviewItem/stories/OverviewItem.stories.tsx +56 -0
- package/src/components/OverviewItem/stories/OverviewItemActions.stories.tsx +31 -0
- package/src/components/OverviewItem/stories/OverviewItemDepiction.stories.tsx +26 -0
- package/src/components/OverviewItem/stories/OverviewItemDescription.stories.tsx +32 -0
- package/src/components/OverviewItem/stories/OverviewItemLine.stories.tsx +25 -0
- package/src/components/OverviewItem/stories/OverviewItemList.stories.tsx +41 -0
- package/src/components/Pagination/Pagination.tsx +80 -0
- package/src/components/Pagination/pagination.scss +47 -0
- package/src/components/ProgressBar/ProgressBar.tsx +8 -0
- package/src/components/PropertyValuePair/PropertyName.tsx +13 -0
- package/src/components/PropertyValuePair/PropertyValue.tsx +12 -0
- package/src/components/PropertyValuePair/PropertyValueList.tsx +12 -0
- package/src/components/PropertyValuePair/PropertyValuePair.tsx +20 -0
- package/src/components/PropertyValuePair/index.tsx +6 -0
- package/src/components/PropertyValuePair/propertyvalue.scss +56 -0
- package/src/components/RadioButton/RadioButton.tsx +20 -0
- package/src/components/RadioButton/radiobutton.scss +29 -0
- package/src/components/Separation/Divider.tsx +8 -0
- package/src/components/Separation/Spacing.tsx +25 -0
- package/src/components/Separation/separation.scss +77 -0
- package/src/components/SimpleTable/TableContainer.tsx +20 -0
- package/src/components/SimpleTable/index.tsx +4 -0
- package/src/components/SimpleTable/simpletable.scss +121 -0
- package/src/components/Spinner/Spinner.tsx +113 -0
- package/src/components/Spinner/spinner.scss +85 -0
- package/src/components/Structure/Section.tsx +15 -0
- package/src/components/Structure/SectionHeader.tsx +15 -0
- package/src/components/Structure/TitleMainsection.tsx +29 -0
- package/src/components/Structure/TitlePage.tsx +29 -0
- package/src/components/Structure/TitleSubsection.tsx +16 -0
- package/src/components/Structure/_titles.scss +56 -0
- package/src/components/Switch/Switch.tsx +17 -0
- package/src/components/Switch/switch.scss +4 -0
- package/src/components/Tabs/Tabs.tsx +121 -0
- package/src/components/Tabs/tabs.scss +65 -0
- package/src/components/Tag/Tag.stories.tsx +41 -0
- package/src/components/Tag/Tag.tsx +84 -0
- package/src/components/Tag/TagList.tsx +51 -0
- package/src/components/Tag/tag.scss +132 -0
- package/src/components/TagInput/taginput.scss +1 -0
- package/src/components/TextField/SearchField.tsx +71 -0
- package/src/components/TextField/TextArea.tsx +66 -0
- package/src/components/TextField/TextField.tsx +96 -0
- package/src/components/TextField/stories/SearchField.stories.tsx +40 -0
- package/src/components/TextField/stories/TextArea.stories.tsx +39 -0
- package/src/components/TextField/stories/TextField.stories.tsx +99 -0
- package/src/components/TextField/textfield.scss +63 -0
- package/src/components/Toolbar/Toolbar.stories.tsx +41 -0
- package/src/components/Toolbar/Toolbar.tsx +42 -0
- package/src/components/Toolbar/ToolbarSection.tsx +48 -0
- package/src/components/Toolbar/toolbar.scss +52 -0
- package/src/components/Tooltip/Tooltip.tsx +53 -0
- package/src/components/Tooltip/tooltip.scss +37 -0
- package/src/components/Typography/Highlighter.tsx +70 -0
- package/src/components/Typography/HtmlContentBlock.tsx +30 -0
- package/src/components/Typography/OverflowText.tsx +46 -0
- package/src/components/Typography/WhiteSpaceContainer.tsx +41 -0
- package/src/components/Typography/_reset.scss +36 -0
- package/src/components/Typography/classnames.ts +10 -0
- package/src/components/Typography/typography.scss +282 -0
- package/src/components/Workspace/WorkspaceContent.tsx +22 -0
- package/src/components/Workspace/WorkspaceHeader.tsx +20 -0
- package/src/components/Workspace/WorkspaceMain.tsx +14 -0
- package/src/components/Workspace/WorkspaceSide.tsx +18 -0
- package/src/components/Workspace/_header.scss +9 -0
- package/src/components/Workspace/workspace.scss +1 -0
- package/src/components/interfaces.ts +3 -0
- package/src/configuration/_variables.scss +130 -0
- package/src/configuration/constants.ts +2 -0
- package/src/extensions/_index.scss +1 -0
- package/src/extensions/react-flow/_config.scss +16 -0
- package/src/extensions/react-flow/_react-flow.scss +5 -0
- package/src/extensions/react-flow/edges/EdgeDefault.tsx +77 -0
- package/src/extensions/react-flow/edges/EdgeStep.tsx +19 -0
- package/src/extensions/react-flow/edges/EdgeTools.tsx +39 -0
- package/src/extensions/react-flow/edges/_edges.scss +181 -0
- package/src/extensions/react-flow/edges/edgeTypes.ts +24 -0
- package/src/extensions/react-flow/edges/utils.ts +32 -0
- package/src/extensions/react-flow/handles/HandleContent.tsx +39 -0
- package/src/extensions/react-flow/handles/HandleDefault.tsx +29 -0
- package/src/extensions/react-flow/handles/_handles.scss +208 -0
- package/src/extensions/react-flow/index.ts +15 -0
- package/src/extensions/react-flow/minimap/MiniMap.tsx +110 -0
- package/src/extensions/react-flow/minimap/_minimap.scss +79 -0
- package/src/extensions/react-flow/minimap/utils.ts +13 -0
- package/src/extensions/react-flow/nodes/NodeContent.stories.tsx +83 -0
- package/src/extensions/react-flow/nodes/NodeContentExtension.stories.tsx +36 -0
- package/src/extensions/react-flow/nodes/NodeContentExtension.tsx +87 -0
- package/src/extensions/react-flow/nodes/NodeDefault.stories.tsx +138 -0
- package/src/extensions/react-flow/nodes/NodeDefault.tsx +376 -0
- package/src/extensions/react-flow/nodes/NodeTools.tsx +48 -0
- package/src/extensions/react-flow/nodes/_nodes.scss +490 -0
- package/src/extensions/react-flow/nodes/nodeTypes.ts +14 -0
- package/src/includes/blueprintjs/_variables.scss +195 -0
- package/src/includes/carbon-components/_variables.scss +107 -0
- package/src/index.scss +190 -0
- package/src/index.ts +238 -0
- package/src/legacy-replacements/Button/AffirmativeButton.tsx +16 -0
- package/src/legacy-replacements/Button/Button.tsx +73 -0
- package/src/legacy-replacements/Button/DismissiveButton.tsx +16 -0
- package/src/legacy-replacements/Button/DisruptiveButton.tsx +16 -0
- package/src/legacy-replacements/Checkbox/Checkbox.tsx +54 -0
- package/src/legacy-replacements/Radio/RadioButton.tsx +38 -0
- package/src/legacy-replacements/TextField/TextField.tsx +90 -0
- package/src/test/setupTests.js +2 -0
- package/.cached-fonts +0 -1
- package/Ruleset.md +0 -93
- package/additionalLicenses.yml +0 -21
- package/buildConfig.js +0 -25
- package/dist/fonts/iconfont/MaterialIcons-Regular.woff +0 -0
- package/dist/fonts/iconfont/MaterialIcons-Regular.woff2 +0 -0
- package/dist/fonts/iconfont/codepoints +0 -932
- package/dist/fonts/roboto/Black/Roboto-Black.woff +0 -0
- package/dist/fonts/roboto/Black/Roboto-Black.woff2 +0 -0
- package/dist/fonts/roboto/BlackItalic/Roboto-BlackItalic.woff +0 -0
- package/dist/fonts/roboto/BlackItalic/Roboto-BlackItalic.woff2 +0 -0
- package/dist/fonts/roboto/Bold/Roboto-Bold.woff +0 -0
- package/dist/fonts/roboto/Bold/Roboto-Bold.woff2 +0 -0
- package/dist/fonts/roboto/BoldItalic/Roboto-BoldItalic.woff +0 -0
- package/dist/fonts/roboto/BoldItalic/Roboto-BoldItalic.woff2 +0 -0
- package/dist/fonts/roboto/Italic/Roboto-Italic.woff +0 -0
- package/dist/fonts/roboto/Italic/Roboto-Italic.woff2 +0 -0
- package/dist/fonts/roboto/Light/Roboto-Light.woff +0 -0
- package/dist/fonts/roboto/Light/Roboto-Light.woff2 +0 -0
- package/dist/fonts/roboto/LightItalic/Roboto-LightItalic.woff +0 -0
- package/dist/fonts/roboto/LightItalic/Roboto-LightItalic.woff2 +0 -0
- package/dist/fonts/roboto/Medium/Roboto-Medium.woff +0 -0
- package/dist/fonts/roboto/Medium/Roboto-Medium.woff2 +0 -0
- package/dist/fonts/roboto/MediumItalic/Roboto-MediumItalic.woff +0 -0
- package/dist/fonts/roboto/MediumItalic/Roboto-MediumItalic.woff2 +0 -0
- package/dist/fonts/roboto/Regular/Roboto-Regular.woff +0 -0
- package/dist/fonts/roboto/Regular/Roboto-Regular.woff2 +0 -0
- package/dist/fonts/roboto/Thin/Roboto-Thin.woff +0 -0
- package/dist/fonts/roboto/Thin/Roboto-Thin.woff2 +0 -0
- package/dist/fonts/roboto/ThinItalic/Roboto-ThinItalic.woff +0 -0
- package/dist/fonts/roboto/ThinItalic/Roboto-ThinItalic.woff2 +0 -0
- package/docs/README.md +0 -951
- package/docs/docTemplate.md +0 -140
- package/es5/component.js +0 -6653
- package/index.js +0 -136
- package/jest.config.js +0 -42
- package/src/_configuration.default.scss +0 -97
- package/src/_configuration.mdl.scss +0 -518
- package/src/elements/Alert/Alert.jsx +0 -141
- package/src/elements/Alert/Error.jsx +0 -22
- package/src/elements/Alert/Info.jsx +0 -21
- package/src/elements/Alert/Success.jsx +0 -20
- package/src/elements/Alert/Warning.jsx +0 -19
- package/src/elements/Alert/_alert.scss +0 -93
- package/src/elements/Alert/index.js +0 -13
- package/src/elements/AutoCompleteBox/AutoCompleteBox.jsx +0 -149
- package/src/elements/AutoCompleteBox/_autocomplete.scss +0 -33
- package/src/elements/Breadcrumbs/BreadcrumbItem.jsx +0 -34
- package/src/elements/Breadcrumbs/BreadcrumbList.jsx +0 -56
- package/src/elements/Breadcrumbs/_breadcrumbs.scss +0 -47
- package/src/elements/Breadcrumbs/index.js +0 -7
- package/src/elements/Button/AffirmativeButton.jsx +0 -73
- package/src/elements/Button/Button.jsx +0 -216
- package/src/elements/Button/DismissiveButton.jsx +0 -77
- package/src/elements/Button/DisruptiveButton.jsx +0 -74
- package/src/elements/Button/ProgressButton.jsx +0 -95
- package/src/elements/Button/_button.scss +0 -61
- package/src/elements/Button/index.js +0 -13
- package/src/elements/Card/Card.jsx +0 -61
- package/src/elements/Card/CardActions.jsx +0 -37
- package/src/elements/Card/CardTitle.jsx +0 -78
- package/src/elements/Card/FloatingActionList.jsx +0 -260
- package/src/elements/Card/_card.scss +0 -179
- package/src/elements/Card/index.js +0 -18
- package/src/elements/Checkbox/Checkbox.jsx +0 -113
- package/src/elements/Checkbox/_checkbox.scss +0 -14
- package/src/elements/Chip/Chip.jsx +0 -118
- package/src/elements/Chip/ChipVisual.jsx +0 -88
- package/src/elements/Chip/_chip.scss +0 -49
- package/src/elements/Chip/index.js +0 -7
- package/src/elements/ContextMenu/ContextMenu.jsx +0 -101
- package/src/elements/ContextMenu/_contextmenu.scss +0 -23
- package/src/elements/DateField/DateField.jsx +0 -178
- package/src/elements/DateField/DateTimefield.jsx +0 -20
- package/src/elements/DateField/_datefield.scss +0 -116
- package/src/elements/DateField/index.js +0 -7
- package/src/elements/Dialog/BaseDialog.jsx +0 -161
- package/src/elements/Dialog/ConfirmationDialog.jsx +0 -48
- package/src/elements/Dialog/_dialog.scss +0 -58
- package/src/elements/Dialog/index.js +0 -7
- package/src/elements/Footer/Footer.jsx +0 -171
- package/src/elements/Footer/_footer.scss +0 -17
- package/src/elements/Grid/_grid.scss +0 -18
- package/src/elements/Icon/Icon.jsx +0 -97
- package/src/elements/Icon/canonicalicons.json +0 -32
- package/src/elements/Icon/canonicaltooltips.json +0 -32
- package/src/elements/Icon/icontable.json +0 -934
- package/src/elements/Layout/_layout.scss +0 -82
- package/src/elements/NotAvailable/NotAvailable.jsx +0 -87
- package/src/elements/NotAvailable/_notavailable.scss +0 -18
- package/src/elements/Pagination/Pagination.jsx +0 -414
- package/src/elements/Pagination/_pagination.scss +0 -98
- package/src/elements/Progressbar/Progressbar.jsx +0 -34
- package/src/elements/Progressbar/_progressbar.scss +0 -22
- package/src/elements/Radio/RadioButton.jsx +0 -129
- package/src/elements/Radio/RadioGroup.jsx +0 -35
- package/src/elements/Radio/_radio.scss +0 -46
- package/src/elements/Radio/index.js +0 -7
- package/src/elements/SelectBox/SelectBox.jsx +0 -321
- package/src/elements/SelectBox/_selectbox.scss +0 -144
- package/src/elements/Spinner/Spinner.jsx +0 -44
- package/src/elements/Spinner/_spinner.scss +0 -20
- package/src/elements/Switch/Switch.jsx +0 -38
- package/src/elements/Table/Table.jsx +0 -100
- package/src/elements/Table/TableBody.jsx +0 -66
- package/src/elements/Table/TableCell.jsx +0 -94
- package/src/elements/Table/TableHead.jsx +0 -66
- package/src/elements/Table/TableRow.jsx +0 -78
- package/src/elements/Table/_datatable.scss +0 -78
- package/src/elements/Table/_table.scss +0 -143
- package/src/elements/Tabs/Tabs.jsx +0 -116
- package/src/elements/TextField/TextField.jsx +0 -172
- package/src/elements/TextField/_textfield.scss +0 -80
- package/src/elements/Tooltip/Tooltip.jsx +0 -3
- package/src/elements/Tooltip/_tooltip.scss +0 -21
- package/src/elements/Version/Version.jsx +0 -19
- package/src/hocs/ScrollingHOC.js +0 -122
- package/src/main.scss +0 -83
- package/src/scss/_adjustments.scss +0 -16
- package/src/scss/_helpers.scss +0 -29
- package/src/scss/_iconfont.scss +0 -35
- package/src/scss/_patches.scss +0 -19
- package/src/scss/_roboto.scss +0 -30
- package/src/scss/main.build-css.scss +0 -4
- package/src/utils/classnameSeperator.js +0 -10
- package/src/utils/extendedOnChangeBoolean.jsx +0 -14
- package/src/utils/uniqueId.jsx +0 -36
- package/style/test.scss +0 -30
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Classes as B_Classes, Intent as B_Intent, Position as B_Position } from "@blueprintjs/core";
|
|
2
|
+
import { IconNames as B_IconNames } from "@blueprintjs/icons";
|
|
3
|
+
|
|
4
|
+
export const Position = B_Position;
|
|
5
|
+
export const Intent = B_Intent;
|
|
6
|
+
export const IconNames = B_IconNames;
|
|
7
|
+
export const Classes = B_Classes;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Toaster as default } from "@blueprintjs/core";
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export interface IActivityStatus {
|
|
2
|
+
project?: string;
|
|
3
|
+
task?: string;
|
|
4
|
+
activity: string;
|
|
5
|
+
isRunning: boolean;
|
|
6
|
+
failed: boolean;
|
|
7
|
+
statusName: "Waiting" | "Finished" | "Idle" | "Running" | "Canceling";
|
|
8
|
+
progress: number;
|
|
9
|
+
message: string;
|
|
10
|
+
cancelled: boolean;
|
|
11
|
+
concreteStatus: "Cancelled" | "Failed" | "Successful" | "Not executed" | "Running" | "Waiting" | "Canceling";
|
|
12
|
+
exceptionMessage?: string | null;
|
|
13
|
+
runtime?: number;
|
|
14
|
+
startTime?: string;
|
|
15
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { TestableComponent } from "../../components/interfaces";
|
|
3
|
+
import { ProgressBarProps } from "../../components/ProgressBar/ProgressBar";
|
|
4
|
+
import { SpinnerProps } from "../../components/Spinner/Spinner";
|
|
5
|
+
export interface IActivityControlProps extends TestableComponent {
|
|
6
|
+
label?: string | JSX.Element;
|
|
7
|
+
progressBar?: ProgressBarProps;
|
|
8
|
+
progressSpinner?: SpinnerProps;
|
|
9
|
+
statusMessage?: string;
|
|
10
|
+
activityActions?: IActivityAction[];
|
|
11
|
+
activityContextMenu?: IActivityContextMenu;
|
|
12
|
+
small?: boolean;
|
|
13
|
+
border?: boolean;
|
|
14
|
+
canShrink?: boolean;
|
|
15
|
+
}
|
|
16
|
+
interface IActivityContextMenu extends TestableComponent {
|
|
17
|
+
tooltip?: string;
|
|
18
|
+
menuItems: IActivityMenuAction[];
|
|
19
|
+
}
|
|
20
|
+
export interface IActivityAction extends TestableComponent {
|
|
21
|
+
action: () => any;
|
|
22
|
+
tooltip?: string;
|
|
23
|
+
icon: string;
|
|
24
|
+
disabled?: boolean;
|
|
25
|
+
hasStateWarning?: boolean;
|
|
26
|
+
}
|
|
27
|
+
export interface IActivityMenuAction extends IActivityAction, TestableComponent {
|
|
28
|
+
href?: string;
|
|
29
|
+
}
|
|
30
|
+
/** Shows the status of activities and supports actions on these activities. */
|
|
31
|
+
export declare function ActivityControlWidget(props: IActivityControlProps): JSX.Element;
|
|
32
|
+
export {};
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.ActivityControlWidget = ActivityControlWidget;
|
|
9
|
+
|
|
10
|
+
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
11
|
+
|
|
12
|
+
var _react = _interopRequireDefault(require("react"));
|
|
13
|
+
|
|
14
|
+
var _index = require("../../index");
|
|
15
|
+
|
|
16
|
+
var _constants = require("../../configuration/constants");
|
|
17
|
+
|
|
18
|
+
/** Shows the status of activities and supports actions on these activities. */
|
|
19
|
+
function ActivityControlWidget(props) {
|
|
20
|
+
const {
|
|
21
|
+
"data-test-id": dataTestId,
|
|
22
|
+
progressBar,
|
|
23
|
+
progressSpinner,
|
|
24
|
+
activityActions,
|
|
25
|
+
activityContextMenu,
|
|
26
|
+
small,
|
|
27
|
+
border,
|
|
28
|
+
canShrink
|
|
29
|
+
} = props;
|
|
30
|
+
const spinnerClassNames = ((progressSpinner === null || progressSpinner === void 0 ? void 0 : progressSpinner.className) ?? "") + ` ${_constants.CLASSPREFIX}-spinner--permanent`;
|
|
31
|
+
|
|
32
|
+
const widget = /*#__PURE__*/_react.default.createElement(_index.OverviewItem, {
|
|
33
|
+
"data-test-id": dataTestId,
|
|
34
|
+
hasSpacing: border,
|
|
35
|
+
densityHigh: small
|
|
36
|
+
}, progressBar && /*#__PURE__*/_react.default.createElement(_index.ProgressBar, progressBar), progressSpinner && /*#__PURE__*/_react.default.createElement(_index.OverviewItemDepiction, {
|
|
37
|
+
keepColors: true
|
|
38
|
+
}, /*#__PURE__*/_react.default.createElement(_index.Spinner, (0, _extends2.default)({
|
|
39
|
+
position: "inline",
|
|
40
|
+
size: small ? "tiny" : "small",
|
|
41
|
+
stroke: small ? "bold" : "medium"
|
|
42
|
+
}, progressSpinner, {
|
|
43
|
+
className: spinnerClassNames
|
|
44
|
+
}))), /*#__PURE__*/_react.default.createElement(_index.OverviewItemDescription, null, props.label && /*#__PURE__*/_react.default.createElement(_index.OverviewItemLine, {
|
|
45
|
+
small: small
|
|
46
|
+
}, /*#__PURE__*/_react.default.createElement(_index.OverflowText, {
|
|
47
|
+
inline: true
|
|
48
|
+
}, props.label)), props.statusMessage && /*#__PURE__*/_react.default.createElement(_index.OverviewItemLine, {
|
|
49
|
+
small: true
|
|
50
|
+
}, props.statusMessage.length > 50 ? /*#__PURE__*/_react.default.createElement(_index.Tooltip, {
|
|
51
|
+
content: props.statusMessage,
|
|
52
|
+
size: "large",
|
|
53
|
+
tooltipProps: {
|
|
54
|
+
placement: "top",
|
|
55
|
+
boundary: "viewport"
|
|
56
|
+
}
|
|
57
|
+
}, /*#__PURE__*/_react.default.createElement(_index.OverflowText, {
|
|
58
|
+
inline: true
|
|
59
|
+
}, props.statusMessage)) : /*#__PURE__*/_react.default.createElement(_index.OverflowText, {
|
|
60
|
+
inline: true
|
|
61
|
+
}, props.statusMessage))), /*#__PURE__*/_react.default.createElement(_index.OverviewItemActions, null, activityActions && activityActions.map(action => {
|
|
62
|
+
return /*#__PURE__*/_react.default.createElement(_index.IconButton, {
|
|
63
|
+
key: action.icon,
|
|
64
|
+
"data-test-id": action["data-test-id"],
|
|
65
|
+
name: action.icon,
|
|
66
|
+
text: action.tooltip,
|
|
67
|
+
onClick: action.action,
|
|
68
|
+
tooltipOpenDelay: 200,
|
|
69
|
+
disabled: action.disabled,
|
|
70
|
+
hasStateWarning: action.hasStateWarning
|
|
71
|
+
});
|
|
72
|
+
}), activityContextMenu && activityContextMenu.menuItems.length > 0 && /*#__PURE__*/_react.default.createElement(_index.ContextMenu, {
|
|
73
|
+
"data-test-id": activityContextMenu["data-test-id"],
|
|
74
|
+
togglerText: activityContextMenu.tooltip
|
|
75
|
+
}, activityContextMenu.menuItems.map(menuAction => {
|
|
76
|
+
return /*#__PURE__*/_react.default.createElement(_index.MenuItem, {
|
|
77
|
+
icon: menuAction.icon,
|
|
78
|
+
key: menuAction.icon,
|
|
79
|
+
onClick: menuAction.action,
|
|
80
|
+
text: menuAction.tooltip
|
|
81
|
+
});
|
|
82
|
+
}))));
|
|
83
|
+
|
|
84
|
+
const classname = `${_constants.CLASSPREFIX}-addon-activitycontrol` + (canShrink ? ` ${_constants.CLASSPREFIX}-addon-activitycontrol--shrink` : "");
|
|
85
|
+
return border ? /*#__PURE__*/_react.default.createElement(_index.Card, {
|
|
86
|
+
isOnlyLayout: true,
|
|
87
|
+
elevation: 0,
|
|
88
|
+
className: classname
|
|
89
|
+
}, widget) : /*#__PURE__*/_react.default.createElement("div", {
|
|
90
|
+
className: classname
|
|
91
|
+
}, widget);
|
|
92
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Card, ContextMenu, IconButton, MenuItem, OverflowText, OverviewItem, OverviewItemActions, OverviewItemDepiction, OverviewItemDescription, OverviewItemLine, ProgressBar, Spinner, Tooltip, } from "../../index";
|
|
3
|
+
import { CLASSPREFIX as eccgui } from "../../configuration/constants";
|
|
4
|
+
/** Shows the status of activities and supports actions on these activities. */
|
|
5
|
+
export function ActivityControlWidget(props) {
|
|
6
|
+
var _a;
|
|
7
|
+
var dataTestId = props["data-test-id"], progressBar = props.progressBar, progressSpinner = props.progressSpinner, activityActions = props.activityActions, activityContextMenu = props.activityContextMenu, small = props.small, border = props.border, canShrink = props.canShrink;
|
|
8
|
+
var spinnerClassNames = ((_a = progressSpinner === null || progressSpinner === void 0 ? void 0 : progressSpinner.className) !== null && _a !== void 0 ? _a : "") + (" " + eccgui + "-spinner--permanent");
|
|
9
|
+
var widget = (<OverviewItem data-test-id={dataTestId} hasSpacing={border} densityHigh={small}>
|
|
10
|
+
{progressBar && (<ProgressBar {...progressBar}/>)}
|
|
11
|
+
{progressSpinner && (<OverviewItemDepiction keepColors>
|
|
12
|
+
<Spinner position="inline" size={small ? "tiny" : "small"} stroke={small ? "bold" : "medium"} {...progressSpinner} className={spinnerClassNames}/>
|
|
13
|
+
</OverviewItemDepiction>)}
|
|
14
|
+
<OverviewItemDescription>
|
|
15
|
+
{props.label && <OverviewItemLine small={small}>
|
|
16
|
+
<OverflowText inline={true}>{props.label}</OverflowText>
|
|
17
|
+
</OverviewItemLine>}
|
|
18
|
+
{props.statusMessage && (<OverviewItemLine small>
|
|
19
|
+
{props.statusMessage.length > 50 ? (<Tooltip content={props.statusMessage} size="large" tooltipProps={{ placement: "top", boundary: "viewport" }}>
|
|
20
|
+
<OverflowText inline={true}>
|
|
21
|
+
{props.statusMessage}
|
|
22
|
+
</OverflowText>
|
|
23
|
+
</Tooltip>) : (<OverflowText inline={true}>
|
|
24
|
+
{props.statusMessage}
|
|
25
|
+
</OverflowText>)}
|
|
26
|
+
</OverviewItemLine>)}
|
|
27
|
+
</OverviewItemDescription>
|
|
28
|
+
<OverviewItemActions>
|
|
29
|
+
{activityActions && activityActions.map(function (action) {
|
|
30
|
+
return <IconButton key={action.icon} data-test-id={action["data-test-id"]} name={action.icon} text={action.tooltip} onClick={action.action} tooltipOpenDelay={200} disabled={action.disabled} hasStateWarning={action.hasStateWarning}/>;
|
|
31
|
+
})}
|
|
32
|
+
{activityContextMenu && activityContextMenu.menuItems.length > 0 && <ContextMenu data-test-id={activityContextMenu["data-test-id"]} togglerText={activityContextMenu.tooltip}>
|
|
33
|
+
{activityContextMenu.menuItems.map(function (menuAction) {
|
|
34
|
+
return <MenuItem icon={menuAction.icon} key={menuAction.icon} onClick={menuAction.action} text={menuAction.tooltip}/>;
|
|
35
|
+
})}
|
|
36
|
+
</ContextMenu>}
|
|
37
|
+
</OverviewItemActions>
|
|
38
|
+
</OverviewItem>);
|
|
39
|
+
var classname = eccgui + "-addon-activitycontrol" + (canShrink ? " " + eccgui + "-addon-activitycontrol--shrink" : "");
|
|
40
|
+
return border ? (<Card isOnlyLayout elevation={0} className={classname}>
|
|
41
|
+
{widget}
|
|
42
|
+
</Card>) : (<div className={classname}>
|
|
43
|
+
{widget}
|
|
44
|
+
</div>);
|
|
45
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
interface IProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
onDiscard: () => any;
|
|
5
|
+
report: JSX.Element;
|
|
6
|
+
downloadButtonValue: string;
|
|
7
|
+
closeButtonValue: string;
|
|
8
|
+
fetchErrorReport: () => Promise<string | undefined>;
|
|
9
|
+
}
|
|
10
|
+
/** Shows the execution error report to the user and offers to download the report. */
|
|
11
|
+
export declare const ActivityExecutionErrorReportModal: ({ title, onDiscard, report, downloadButtonValue, closeButtonValue, fetchErrorReport }: IProps) => JSX.Element;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.ActivityExecutionErrorReportModal = void 0;
|
|
9
|
+
|
|
10
|
+
var _index = require("../../index");
|
|
11
|
+
|
|
12
|
+
var _react = _interopRequireDefault(require("react"));
|
|
13
|
+
|
|
14
|
+
/** Shows the execution error report to the user and offers to download the report. */
|
|
15
|
+
const ActivityExecutionErrorReportModal = ({
|
|
16
|
+
title,
|
|
17
|
+
onDiscard,
|
|
18
|
+
report,
|
|
19
|
+
downloadButtonValue,
|
|
20
|
+
closeButtonValue,
|
|
21
|
+
fetchErrorReport
|
|
22
|
+
}) => {
|
|
23
|
+
const fileName = "Activity execution report from " + new Date().toISOString().replace(/T/, " ").replace(/:/g, "-").substr(0, 19) + ".md";
|
|
24
|
+
|
|
25
|
+
const handleDownload = async () => {
|
|
26
|
+
const markdown = await fetchErrorReport();
|
|
27
|
+
|
|
28
|
+
if (markdown) {
|
|
29
|
+
const element = document.createElement("a");
|
|
30
|
+
element.href = window.URL.createObjectURL(new Blob([markdown], {
|
|
31
|
+
type: "text/markdown"
|
|
32
|
+
}));
|
|
33
|
+
element.download = fileName; //the above code is equivalent to
|
|
34
|
+
|
|
35
|
+
document.body.appendChild(element); //onClick property
|
|
36
|
+
|
|
37
|
+
element.click();
|
|
38
|
+
document.body.removeChild(element);
|
|
39
|
+
}
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
return /*#__PURE__*/_react.default.createElement(_index.SimpleDialog, {
|
|
43
|
+
title: title,
|
|
44
|
+
isOpen: true,
|
|
45
|
+
onClose: onDiscard,
|
|
46
|
+
actions: [/*#__PURE__*/_react.default.createElement(_index.Button, {
|
|
47
|
+
"data-test-id": "error-report-download-btn",
|
|
48
|
+
affirmative: true,
|
|
49
|
+
onClick: handleDownload,
|
|
50
|
+
key: "download"
|
|
51
|
+
}, downloadButtonValue), /*#__PURE__*/_react.default.createElement(_index.Button, {
|
|
52
|
+
"data-test-id": "error-report-close-btn",
|
|
53
|
+
key: "close",
|
|
54
|
+
onClick: onDiscard
|
|
55
|
+
}, closeButtonValue)]
|
|
56
|
+
}, /*#__PURE__*/_react.default.createElement(_index.HtmlContentBlock, null, report));
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
exports.ActivityExecutionErrorReportModal = ActivityExecutionErrorReportModal;
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
11
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
12
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
13
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
14
|
+
function step(op) {
|
|
15
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
16
|
+
while (_) try {
|
|
17
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
18
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
19
|
+
switch (op[0]) {
|
|
20
|
+
case 0: case 1: t = op; break;
|
|
21
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
22
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
23
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
24
|
+
default:
|
|
25
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
26
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
27
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
28
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
29
|
+
if (t[2]) _.ops.pop();
|
|
30
|
+
_.trys.pop(); continue;
|
|
31
|
+
}
|
|
32
|
+
op = body.call(thisArg, _);
|
|
33
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
34
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
import { Button, HtmlContentBlock, SimpleDialog } from "../../index";
|
|
38
|
+
import React from "react";
|
|
39
|
+
/** Shows the execution error report to the user and offers to download the report. */
|
|
40
|
+
export var ActivityExecutionErrorReportModal = function (_a) {
|
|
41
|
+
var title = _a.title, onDiscard = _a.onDiscard, report = _a.report, downloadButtonValue = _a.downloadButtonValue, closeButtonValue = _a.closeButtonValue, fetchErrorReport = _a.fetchErrorReport;
|
|
42
|
+
var fileName = "Activity execution report from " + (new Date()).toISOString().replace(/T/, " ").replace(/:/g, "-").substr(0, 19) + ".md";
|
|
43
|
+
var handleDownload = function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
44
|
+
var markdown, element;
|
|
45
|
+
return __generator(this, function (_a) {
|
|
46
|
+
switch (_a.label) {
|
|
47
|
+
case 0: return [4 /*yield*/, fetchErrorReport()];
|
|
48
|
+
case 1:
|
|
49
|
+
markdown = _a.sent();
|
|
50
|
+
if (markdown) {
|
|
51
|
+
element = document.createElement("a");
|
|
52
|
+
element.href = window.URL.createObjectURL(new Blob([markdown], { type: "text/markdown" }));
|
|
53
|
+
element.download = fileName;
|
|
54
|
+
//the above code is equivalent to
|
|
55
|
+
document.body.appendChild(element);
|
|
56
|
+
//onClick property
|
|
57
|
+
element.click();
|
|
58
|
+
document.body.removeChild(element);
|
|
59
|
+
}
|
|
60
|
+
return [2 /*return*/];
|
|
61
|
+
}
|
|
62
|
+
});
|
|
63
|
+
}); };
|
|
64
|
+
return (<SimpleDialog title={title} isOpen={true} onClose={onDiscard} actions={[
|
|
65
|
+
<Button data-test-id={"error-report-download-btn"} affirmative onClick={handleDownload} key="download">
|
|
66
|
+
{downloadButtonValue}
|
|
67
|
+
</Button>,
|
|
68
|
+
<Button data-test-id={"error-report-close-btn"} key="close" onClick={onDiscard}>
|
|
69
|
+
{closeButtonValue}
|
|
70
|
+
</Button>,
|
|
71
|
+
]}>
|
|
72
|
+
<HtmlContentBlock>
|
|
73
|
+
{report}
|
|
74
|
+
</HtmlContentBlock>
|
|
75
|
+
</SimpleDialog>);
|
|
76
|
+
};
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { TestableComponent } from "../../components/interfaces";
|
|
3
|
+
import { IActivityStatus } from "./ActivityControlTypes";
|
|
4
|
+
import { TimeUnits } from "../DateTimeDisplay/ElapsedDateTimeDisplay";
|
|
5
|
+
interface SilkActivityControlProps extends TestableComponent {
|
|
6
|
+
label: string;
|
|
7
|
+
initialStatus?: IActivityStatus;
|
|
8
|
+
registerForUpdates: (callback: (status: IActivityStatus) => any) => any;
|
|
9
|
+
unregisterFromUpdates: () => any;
|
|
10
|
+
showStartAction: boolean;
|
|
11
|
+
showStopAction: boolean;
|
|
12
|
+
failureReportAction?: IErrorReportAction;
|
|
13
|
+
showReloadAction: boolean;
|
|
14
|
+
viewValueAction?: {
|
|
15
|
+
tooltip?: string;
|
|
16
|
+
action: string | (() => any);
|
|
17
|
+
};
|
|
18
|
+
executeActivityAction: (action: ActivityAction) => void;
|
|
19
|
+
translate: (key: ActivityControlTranslationKeys) => string;
|
|
20
|
+
elapsedTimeOfLastStart?: {
|
|
21
|
+
prefix?: string;
|
|
22
|
+
suffix?: string;
|
|
23
|
+
translate: (unit: TimeUnits) => string;
|
|
24
|
+
};
|
|
25
|
+
layoutConfig?: IActivityControlLayoutProps;
|
|
26
|
+
}
|
|
27
|
+
export interface IActivityControlLayoutProps {
|
|
28
|
+
small?: boolean;
|
|
29
|
+
border?: boolean;
|
|
30
|
+
canShrink?: boolean;
|
|
31
|
+
visualization?: "none" | "progressbar" | "spinner";
|
|
32
|
+
}
|
|
33
|
+
interface IErrorReportAction {
|
|
34
|
+
title?: string;
|
|
35
|
+
renderReport: (report: string | IActivityExecutionReport) => JSX.Element;
|
|
36
|
+
renderMarkdown: boolean;
|
|
37
|
+
fetchErrorReport: (markdown: boolean) => Promise<string | IActivityExecutionReport | undefined>;
|
|
38
|
+
allowDownload?: boolean;
|
|
39
|
+
downloadButtonValue: string;
|
|
40
|
+
closeButtonValue: string;
|
|
41
|
+
}
|
|
42
|
+
export interface IActivityExecutionReport {
|
|
43
|
+
errorSummary: string;
|
|
44
|
+
projectId?: string;
|
|
45
|
+
taskId?: string;
|
|
46
|
+
activityId: string;
|
|
47
|
+
projectLabel?: string;
|
|
48
|
+
taskLabel?: string;
|
|
49
|
+
taskDescription?: string;
|
|
50
|
+
errorMessage?: string;
|
|
51
|
+
stackTrace?: IStacktrace;
|
|
52
|
+
}
|
|
53
|
+
interface IStacktrace {
|
|
54
|
+
errorMessage?: String;
|
|
55
|
+
lines: string[];
|
|
56
|
+
cause?: IStacktrace;
|
|
57
|
+
}
|
|
58
|
+
export declare type ActivityControlTranslationKeys = "startActivity" | "stopActivity" | "reloadActivity" | "showErrorReport";
|
|
59
|
+
export declare type ActivityAction = "start" | "cancel" | "restart";
|
|
60
|
+
/** Silk activity control. */
|
|
61
|
+
export declare function SilkActivityControl({ label, initialStatus, registerForUpdates, executeActivityAction, showReloadAction, showStartAction, viewValueAction, showStopAction, failureReportAction, unregisterFromUpdates, translate, elapsedTimeOfLastStart, layoutConfig, ...props }: SilkActivityControlProps): JSX.Element;
|
|
62
|
+
export {};
|
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.SilkActivityControl = SilkActivityControl;
|
|
9
|
+
|
|
10
|
+
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
11
|
+
|
|
12
|
+
var _ActivityControlWidget = require("./ActivityControlWidget");
|
|
13
|
+
|
|
14
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
15
|
+
|
|
16
|
+
var _ActivityExecutionErrorReportModal = require("./ActivityExecutionErrorReportModal");
|
|
17
|
+
|
|
18
|
+
var _index = require("../../index");
|
|
19
|
+
|
|
20
|
+
var _ElapsedDateTimeDisplay = require("../DateTimeDisplay/ElapsedDateTimeDisplay");
|
|
21
|
+
|
|
22
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
23
|
+
|
|
24
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
25
|
+
|
|
26
|
+
const progressBreakpointIndetermination = 10;
|
|
27
|
+
const progressBreakpointAnimation = 99;
|
|
28
|
+
const defaultLayout = {
|
|
29
|
+
small: false,
|
|
30
|
+
border: false,
|
|
31
|
+
canShrink: false,
|
|
32
|
+
visualization: "spinner"
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
/** Silk activity control. */
|
|
36
|
+
function SilkActivityControl({
|
|
37
|
+
label,
|
|
38
|
+
initialStatus,
|
|
39
|
+
registerForUpdates,
|
|
40
|
+
executeActivityAction,
|
|
41
|
+
showReloadAction,
|
|
42
|
+
showStartAction,
|
|
43
|
+
viewValueAction,
|
|
44
|
+
showStopAction,
|
|
45
|
+
failureReportAction,
|
|
46
|
+
unregisterFromUpdates,
|
|
47
|
+
translate,
|
|
48
|
+
elapsedTimeOfLastStart,
|
|
49
|
+
layoutConfig = defaultLayout,
|
|
50
|
+
...props
|
|
51
|
+
}) {
|
|
52
|
+
const [activityStatus, setActivityStatus] = (0, _react.useState)(initialStatus);
|
|
53
|
+
const [errorReport, setErrorReport] = (0, _react.useState)(undefined); // Register update function
|
|
54
|
+
|
|
55
|
+
(0, _react.useEffect)(() => {
|
|
56
|
+
const updateActivityStatus = status => {
|
|
57
|
+
setActivityStatus(status);
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
registerForUpdates(updateActivityStatus);
|
|
61
|
+
return unregisterFromUpdates;
|
|
62
|
+
}, // eslint-disable-next-line react-hooks/exhaustive-deps
|
|
63
|
+
[]); // Create activity actions
|
|
64
|
+
|
|
65
|
+
const actions = [];
|
|
66
|
+
|
|
67
|
+
if (failureReportAction && activityStatus !== null && activityStatus !== void 0 && activityStatus.failed && activityStatus.concreteStatus !== "Cancelled") {
|
|
68
|
+
actions.push({
|
|
69
|
+
"data-test-id": "activity-show-error-report",
|
|
70
|
+
icon: "artefact-report",
|
|
71
|
+
action: () => showErrorReport(failureReportAction),
|
|
72
|
+
tooltip: translate("showErrorReport"),
|
|
73
|
+
hasStateWarning: true
|
|
74
|
+
});
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
if (showStartAction) {
|
|
78
|
+
actions.push({
|
|
79
|
+
"data-test-id": "activity-start-activity",
|
|
80
|
+
icon: "item-start",
|
|
81
|
+
action: () => executeActivityAction("start"),
|
|
82
|
+
tooltip: translate("startActivity"),
|
|
83
|
+
disabled: (activityStatus === null || activityStatus === void 0 ? void 0 : activityStatus.isRunning) === true
|
|
84
|
+
});
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
if (showReloadAction) {
|
|
88
|
+
actions.push({
|
|
89
|
+
"data-test-id": "activity-reload-activity",
|
|
90
|
+
icon: "item-reload",
|
|
91
|
+
action: () => executeActivityAction("restart"),
|
|
92
|
+
tooltip: translate("reloadActivity"),
|
|
93
|
+
disabled: (activityStatus === null || activityStatus === void 0 ? void 0 : activityStatus.isRunning) === true
|
|
94
|
+
});
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
if (showStopAction) {
|
|
98
|
+
actions.push({
|
|
99
|
+
"data-test-id": "activity-stop-activity",
|
|
100
|
+
icon: "item-stop",
|
|
101
|
+
action: () => executeActivityAction("cancel"),
|
|
102
|
+
tooltip: translate("stopActivity"),
|
|
103
|
+
disabled: (activityStatus === null || activityStatus === void 0 ? void 0 : activityStatus.isRunning) === false
|
|
104
|
+
});
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
if (viewValueAction && (activityStatus === null || activityStatus === void 0 ? void 0 : activityStatus.concreteStatus) !== "Not executed") {
|
|
108
|
+
const action = typeof viewValueAction.action === "string" ? () => {
|
|
109
|
+
window.open(viewValueAction.action, "_blank");
|
|
110
|
+
} : viewValueAction.action;
|
|
111
|
+
actions.push({
|
|
112
|
+
"data-test-id": "activity-view-data",
|
|
113
|
+
icon: "artefact-rawdata",
|
|
114
|
+
action,
|
|
115
|
+
tooltip: viewValueAction.tooltip
|
|
116
|
+
});
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
const showErrorReport = async action => {
|
|
120
|
+
const errorReport = await action.fetchErrorReport(action.renderMarkdown);
|
|
121
|
+
setErrorReport(errorReport);
|
|
122
|
+
};
|
|
123
|
+
|
|
124
|
+
const closeErrorReport = () => {
|
|
125
|
+
setErrorReport(undefined);
|
|
126
|
+
};
|
|
127
|
+
|
|
128
|
+
const activityControlLabel = activityStatus !== null && activityStatus !== void 0 && activityStatus.startTime && elapsedTimeOfLastStart ? /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, label, /*#__PURE__*/_react.default.createElement(_index.Spacing, {
|
|
129
|
+
vertical: true,
|
|
130
|
+
size: "tiny"
|
|
131
|
+
}), /*#__PURE__*/_react.default.createElement(_ElapsedDateTimeDisplay.ElapsedDateTimeDisplay, {
|
|
132
|
+
dateTime: activityStatus.startTime,
|
|
133
|
+
prefix: elapsedTimeOfLastStart.prefix,
|
|
134
|
+
suffix: elapsedTimeOfLastStart.suffix,
|
|
135
|
+
translateUnits: elapsedTimeOfLastStart.translate
|
|
136
|
+
})) : label;
|
|
137
|
+
const {
|
|
138
|
+
visualization,
|
|
139
|
+
...otherLayoutConfig
|
|
140
|
+
} = layoutConfig;
|
|
141
|
+
let visualizationProps = {}; // visualization==="none" or undefined
|
|
142
|
+
|
|
143
|
+
const runningProgress = activityStatus && activityStatus.isRunning;
|
|
144
|
+
const waitingProgress = activityStatus && activityStatus.concreteStatus === "Waiting";
|
|
145
|
+
const animateProgress = activityStatus && activityStatus.progress > 0 && activityStatus.progress < progressBreakpointAnimation;
|
|
146
|
+
const indeterminateProgress = activityStatus && activityStatus.progress < progressBreakpointIndetermination;
|
|
147
|
+
|
|
148
|
+
if (visualization === "progressbar") {
|
|
149
|
+
visualizationProps = {
|
|
150
|
+
progressBar: {
|
|
151
|
+
animate: waitingProgress || runningProgress && animateProgress,
|
|
152
|
+
stripes: waitingProgress || runningProgress && animateProgress,
|
|
153
|
+
value: waitingProgress || runningProgress && indeterminateProgress ? undefined : activityStatus && activityStatus.progress > 0 ? activityStatus.progress / 100 : 0,
|
|
154
|
+
intent: activityStatus ? calcIntent(activityStatus) : "none"
|
|
155
|
+
}
|
|
156
|
+
};
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
;
|
|
160
|
+
|
|
161
|
+
if (visualization === "spinner") {
|
|
162
|
+
visualizationProps = {
|
|
163
|
+
progressSpinner: {
|
|
164
|
+
value: waitingProgress || runningProgress && indeterminateProgress ? undefined : activityStatus && activityStatus.progress > 0 ? activityStatus.progress / 100 : 0,
|
|
165
|
+
intent: activityStatus ? calcIntent(activityStatus) : "none"
|
|
166
|
+
}
|
|
167
|
+
};
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
;
|
|
171
|
+
return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(_ActivityControlWidget.ActivityControlWidget, (0, _extends2.default)({
|
|
172
|
+
key: "activity-control",
|
|
173
|
+
"data-test-id": props["data-test-id"],
|
|
174
|
+
label: activityControlLabel,
|
|
175
|
+
activityActions: actions,
|
|
176
|
+
statusMessage: activityStatus === null || activityStatus === void 0 ? void 0 : activityStatus.message
|
|
177
|
+
}, visualizationProps, otherLayoutConfig)), errorReport && failureReportAction && /*#__PURE__*/_react.default.createElement(_ActivityExecutionErrorReportModal.ActivityExecutionErrorReportModal, {
|
|
178
|
+
title: failureReportAction.title,
|
|
179
|
+
key: "error-report-modal",
|
|
180
|
+
closeButtonValue: failureReportAction.closeButtonValue,
|
|
181
|
+
downloadButtonValue: failureReportAction.downloadButtonValue,
|
|
182
|
+
fetchErrorReport: async () => {
|
|
183
|
+
return await failureReportAction.fetchErrorReport(true);
|
|
184
|
+
},
|
|
185
|
+
report: failureReportAction.renderReport(errorReport),
|
|
186
|
+
onDiscard: closeErrorReport
|
|
187
|
+
}));
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
const calcIntent = activityStatus => {
|
|
191
|
+
const concreteStatus = activityStatus.concreteStatus;
|
|
192
|
+
let intent;
|
|
193
|
+
|
|
194
|
+
switch (concreteStatus) {
|
|
195
|
+
case "Running":
|
|
196
|
+
case "Successful":
|
|
197
|
+
intent = "success";
|
|
198
|
+
break;
|
|
199
|
+
|
|
200
|
+
case "Cancelled":
|
|
201
|
+
case "Canceling":
|
|
202
|
+
intent = "warning";
|
|
203
|
+
break;
|
|
204
|
+
|
|
205
|
+
case "Failed":
|
|
206
|
+
intent = "danger";
|
|
207
|
+
break;
|
|
208
|
+
|
|
209
|
+
case "Waiting":
|
|
210
|
+
intent = "none"; // TODO: This is 100% yellow in the old activity control
|
|
211
|
+
|
|
212
|
+
break;
|
|
213
|
+
|
|
214
|
+
default:
|
|
215
|
+
intent = "none";
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
return intent;
|
|
219
|
+
};
|