@orchestrator-ui/orchestrator-ui-components 0.2.4 → 0.2.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/.storybook/main.js +1 -1
- package/.turbo/turbo-build.log +9 -7
- package/.turbo/turbo-lint.log +3 -6
- package/.turbo/turbo-test.log +17 -9
- package/CHANGELOG.md +12 -0
- package/dist/index.d.ts +1092 -358
- package/dist/index.js +22934 -6399
- package/jest.config.cjs +0 -1
- package/package.json +24 -8
- package/src/api/axios.ts +34 -0
- package/src/api/index.ts +170 -0
- package/src/components/WfoAuth/WfoAuth.tsx +22 -0
- package/src/components/WfoAuth/index.ts +1 -0
- package/src/components/{WFOBadges/WFOBadge/WFOBadge.stories.tsx → WfoBadges/WfoBadge/WfoBadge.stories.tsx} +5 -4
- package/src/components/{WFOBadges/WFOBadge/WFOBadge.tsx → WfoBadges/WfoBadge/WfoBadge.tsx} +4 -3
- package/src/components/WfoBadges/WfoBadge/index.ts +1 -0
- package/src/components/{WFOBadges/WFOEngineStatusBadge/WFOEngineStatusBadge.stories.tsx → WfoBadges/WfoEngineStatusBadge/WfoEngineStatusBadge.stories.tsx} +6 -4
- package/src/components/{WFOBadges/WFOEngineStatusBadge/WFOEngineStatusBadge.tsx → WfoBadges/WfoEngineStatusBadge/WfoEngineStatusBadge.tsx} +13 -7
- package/src/components/WfoBadges/WfoEngineStatusBadge/index.ts +1 -0
- package/src/components/{WFOBadges/WFOEnvironmentBadge/WFOEnvironmentBadge.stories.tsx → WfoBadges/WfoEnvironmentBadge/WfoEnvironmentBadge.stories.tsx} +6 -4
- package/src/components/{WFOBadges/WFOEnvironmentBadge/WFOEnvironmentBadge.tsx → WfoBadges/WfoEnvironmentBadge/WfoEnvironmentBadge.tsx} +8 -7
- package/src/components/WfoBadges/WfoEnvironmentBadge/index.ts +1 -0
- package/src/components/WfoBadges/WfoFailedTasksBadge/WfoFailedTasksBadge.stories.tsx +13 -0
- package/src/components/WfoBadges/WfoFailedTasksBadge/WfoFailedTasksBadge.tsx +95 -0
- package/src/components/WfoBadges/WfoFailedTasksBadge/index.ts +1 -0
- package/src/components/{WFOBadges/WFOHeaderBadge/WFOHeaderBadge.stories.tsx → WfoBadges/WfoHeaderBadge/WfoHeaderBadge.stories.tsx} +6 -4
- package/src/components/{WFOBadges/WFOHeaderBadge/WFOHeaderBadge.tsx → WfoBadges/WfoHeaderBadge/WfoHeaderBadge.tsx} +6 -4
- package/src/components/WfoBadges/WfoHeaderBadge/index.ts +1 -0
- package/src/components/{WFOBadges/WFOProcessStatusBadge/WFOProcessStatusBadge.tsx → WfoBadges/WfoProcessStatusBadge/WfoProcessStatusBadge.tsx} +8 -6
- package/src/components/WfoBadges/WfoProcessStatusBadge/index.ts +1 -0
- package/src/components/WfoBadges/WfoProductBlockBadge/WfoProductBlockBadge.stories.tsx +16 -0
- package/src/components/WfoBadges/WfoProductBlockBadge/WfoProductBlockBadge.tsx +70 -0
- package/src/components/WfoBadges/WfoProductBlockBadge/index.ts +1 -0
- package/src/components/WfoBadges/WfoProductStatusBadge/WfoProductStatusBadge.stories.tsx +22 -0
- package/src/components/WfoBadges/WfoProductStatusBadge/WfoProductStatusBadge.tsx +53 -0
- package/src/components/WfoBadges/WfoProductStatusBadge/index.ts +1 -0
- package/src/components/{WFOBadges/WFOSubscriptionStatusBadge/WFOSubscriptionStatusBadge.stories.tsx → WfoBadges/WfoSubscriptionStatusBadge/WfoSubscriptionStatusBadge.stories.tsx} +5 -4
- package/src/components/{WFOBadges/WFOSubscriptionStatusBadge/WFOSubscriptionStatusBadge.tsx → WfoBadges/WfoSubscriptionStatusBadge/WfoSubscriptionStatusBadge.tsx} +12 -10
- package/src/components/WfoBadges/WfoSubscriptionStatusBadge/index.ts +1 -0
- package/src/components/WfoBadges/WfoWorkflowTargetBadge/WfoWorkflowTargetBadge.tsx +65 -0
- package/src/components/WfoBadges/WfoWorkflowTargetBadge/index.ts +1 -0
- package/src/components/WfoBadges/index.ts +9 -0
- package/src/components/WfoButtonComboBox/WfoButtonComboBox.tsx +76 -0
- package/src/components/WfoButtonComboBox/styles.ts +13 -0
- package/src/components/WfoDateTime/WfoDateTime.tsx +28 -0
- package/src/components/WfoDateTime/index.ts +1 -0
- package/src/components/WfoDropdownButton/WfoDropdownButton.tsx +67 -0
- package/src/components/WfoDropdownButton/index.ts +1 -0
- package/src/components/{WFOFilterTabs/WFOFilterTabs.tsx → WfoFilterTabs/WfoFilterTabs.tsx} +8 -6
- package/src/components/WfoFilterTabs/index.ts +1 -0
- package/src/components/WfoForms/AutoFieldLoader.tsx +110 -0
- package/src/components/WfoForms/AutoFields.tsx +49 -0
- package/src/components/WfoForms/CreateForm.tsx +71 -0
- package/src/components/WfoForms/UserInputForm.tsx +607 -0
- package/src/components/WfoForms/UserInputFormStyling.ts +80 -0
- package/src/components/WfoForms/UserInputFormWizard.tsx +120 -0
- package/src/components/WfoForms/formFields/AcceptField.tsx +239 -0
- package/src/components/WfoForms/formFields/AcceptFieldStyling.ts +29 -0
- package/src/components/WfoForms/formFields/BoolField.tsx +71 -0
- package/src/components/WfoForms/formFields/BoolFieldStyling.ts +68 -0
- package/src/components/WfoForms/formFields/ContactPersonAutocomplete.tsx +97 -0
- package/src/components/WfoForms/formFields/ContactPersonAutocompleteStyles.ts +40 -0
- package/src/components/WfoForms/formFields/ContactPersonNameField.tsx +253 -0
- package/src/components/WfoForms/formFields/DateField.tsx +72 -0
- package/src/components/WfoForms/formFields/DividerField.tsx +29 -0
- package/src/components/WfoForms/formFields/ErrorField.tsx +40 -0
- package/src/components/WfoForms/formFields/ErrorsField.tsx +34 -0
- package/src/components/WfoForms/formFields/ImsNodeIdField.tsx +110 -0
- package/src/components/WfoForms/formFields/IpNetworkField.tsx +128 -0
- package/src/components/WfoForms/formFields/IpPrefixTableField.tsx +454 -0
- package/src/components/WfoForms/formFields/IpPrefixTableFieldStyling.ts +117 -0
- package/src/components/WfoForms/formFields/LabelField.tsx +39 -0
- package/src/components/WfoForms/formFields/ListAddField.tsx +98 -0
- package/src/components/WfoForms/formFields/ListDelField.tsx +95 -0
- package/src/components/WfoForms/formFields/ListField.tsx +113 -0
- package/src/components/WfoForms/formFields/ListItemField.tsx +40 -0
- package/src/components/WfoForms/formFields/ListSelectField.tsx +92 -0
- package/src/components/WfoForms/formFields/LocationCodeField.tsx +66 -0
- package/src/components/WfoForms/formFields/LongTextField.tsx +68 -0
- package/src/components/WfoForms/formFields/NestField.tsx +107 -0
- package/src/components/WfoForms/formFields/NumField.tsx +75 -0
- package/src/components/WfoForms/formFields/OptGroupField.tsx +74 -0
- package/src/components/WfoForms/formFields/OrganisationField.tsx +57 -0
- package/src/components/WfoForms/formFields/ProductField.tsx +78 -0
- package/src/components/WfoForms/formFields/RadioField.tsx +87 -0
- package/src/components/WfoForms/formFields/SelectField.tsx +152 -0
- package/src/components/WfoForms/formFields/SplitPrefix.tsx +163 -0
- package/src/components/WfoForms/formFields/SplitPrefixStyling.ts +11 -0
- package/src/components/WfoForms/formFields/SubmitField.tsx +50 -0
- package/src/components/WfoForms/formFields/SubscriptionField.tsx +351 -0
- package/src/components/WfoForms/formFields/SubscriptionFieldStyling.ts +33 -0
- package/src/components/WfoForms/formFields/SubscriptionSummaryField.tsx +75 -0
- package/src/components/WfoForms/formFields/TextField.tsx +71 -0
- package/src/components/WfoForms/formFields/TimestampField.tsx +103 -0
- package/src/components/WfoForms/formFields/VlanField.tsx +297 -0
- package/src/components/WfoForms/formFields/index.ts +29 -0
- package/src/components/WfoForms/formFields/listFieldStyling.ts +86 -0
- package/src/components/WfoForms/formFields/reactSelectStyles.ts +45 -0
- package/src/components/WfoForms/formFields/surf/types.ts +53 -0
- package/src/components/WfoForms/formFields/surf/utils.ts +1 -0
- package/src/components/WfoForms/formFields/types.ts +50 -0
- package/src/components/WfoForms/formFields/utils.spec.ts +196 -0
- package/src/components/WfoForms/formFields/utils.ts +65 -0
- package/src/components/WfoForms/index.ts +5 -0
- package/src/components/WfoForms/useAxiosApiClient.ts +8 -0
- package/src/components/WfoInsyncIcon/WfoInsyncIcon.stories.tsx +21 -0
- package/src/components/WfoInsyncIcon/WfoInsyncIcon.tsx +26 -0
- package/src/components/WfoInsyncIcon/index.ts +1 -0
- package/src/components/WfoJsonCodeBlock/WfoJsonCodeBlock.tsx +27 -0
- package/src/components/WfoJsonCodeBlock/styles.ts +13 -0
- package/src/components/WfoKeyValueTable/WfoKeyCell.tsx +25 -0
- package/src/components/WfoKeyValueTable/WfoKeyValueTable.tsx +41 -0
- package/src/components/WfoKeyValueTable/WfoValueCell.tsx +53 -0
- package/src/components/WfoKeyValueTable/index.ts +3 -0
- package/src/components/WfoKeyValueTable/styles.ts +77 -0
- package/src/components/WfoLoading/WfoLoading.tsx +3 -0
- package/src/components/WfoLoading/index.ts +1 -0
- package/src/components/WfoNoResults/WfoNoResults.stories.tsx +19 -0
- package/src/components/WfoNoResults/WfoNoResults.tsx +22 -0
- package/src/components/WfoNoResults/index.ts +1 -0
- package/src/components/WfoNoResults/styles.ts +22 -0
- package/src/components/WfoPageHeader/WfoPageHeader.tsx +25 -0
- package/src/components/{WFOPageTemplate/WFOBreadcrumbs/WFOBreadcrumbs.tsx → WfoPageTemplate/WfoBreadcrumbs/WfoBreadcrumbs.tsx} +5 -2
- package/src/components/WfoPageTemplate/WfoBreadcrumbs/index.ts +1 -0
- package/src/components/{WFOPageTemplate/WFOPageHeader/WFOPageHeader.stories.tsx → WfoPageTemplate/WfoPageHeader/WfoPageHeader.stories.tsx} +7 -5
- package/src/components/{WFOPageTemplate/WFOPageHeader/WFOPageHeader.tsx → WfoPageTemplate/WfoPageHeader/WfoPageHeader.tsx} +26 -11
- package/src/components/WfoPageTemplate/WfoPageHeader/index.ts +1 -0
- package/src/components/{WFOPageTemplate/WFOPageTemplate/WFOPageTemplate.stories.tsx → WfoPageTemplate/WfoPageTemplate/WfoPageTemplate.stories.tsx} +8 -6
- package/src/components/{WFOPageTemplate/WFOPageTemplate/WFOPageTemplate.tsx → WfoPageTemplate/WfoPageTemplate/WfoPageTemplate.tsx} +20 -10
- package/src/components/WfoPageTemplate/WfoPageTemplate/index.ts +1 -0
- package/src/components/{WFOPageTemplate/WFOSidebar/WFOSidebar.stories.tsx → WfoPageTemplate/WfoSidebar/WfoSidebar.stories.tsx} +6 -4
- package/src/components/WfoPageTemplate/WfoSidebar/WfoSidebar.tsx +161 -0
- package/src/components/WfoPageTemplate/WfoSidebar/WfoStartCreateWorkflowButtonComboBox.tsx +58 -0
- package/src/components/WfoPageTemplate/WfoSidebar/index.ts +1 -0
- package/src/components/WfoPageTemplate/index.ts +4 -0
- package/src/components/{WFOPageTemplate → WfoPageTemplate}/paths.ts +1 -1
- package/src/components/WfoProcessesList/WfoProcessList.tsx +227 -0
- package/src/components/WfoProcessesList/processListObjectMappers.ts +79 -0
- package/src/components/{WFOSearchBar/WFOSearchField.tsx → WfoSearchBar/WfoSearchField.tsx} +4 -3
- package/src/components/WfoSearchBar/index.ts +1 -0
- package/src/components/WfoSettingsModal/WfoInformationModal.tsx +41 -0
- package/src/components/{WFOSettingsModal/WFOSettingsModal.tsx → WfoSettingsModal/WfoSettingsModal.tsx} +3 -2
- package/src/components/WfoSettingsModal/index.tsx +2 -0
- package/src/components/{WFOSettingsPage/WFOEngineStatusButton.tsx → WfoSettingsPage/WfoEngineStatusButton.tsx} +5 -3
- package/src/components/{WFOSettingsPage/WFOFlushSettings.tsx → WfoSettingsPage/WfoFlushSettings.tsx} +19 -30
- package/src/components/{WFOSettingsPage/WFOModifySettings.tsx → WfoSettingsPage/WfoModifySettings.tsx} +7 -5
- package/src/components/{WFOSettingsPage/WFOSettings.tsx → WfoSettingsPage/WfoSettings.tsx} +12 -8
- package/src/components/{WFOSettingsPage/WFOStatus.tsx → WfoSettingsPage/WfoStatus.tsx} +8 -6
- package/src/components/WfoSettingsPage/index.ts +1 -0
- package/src/components/{WFOStartPage/WFOFrequentlyUsed.stories.tsx → WfoStartPage/WfoFrequentlyUsed.stories.tsx} +5 -4
- package/src/components/{WFOStartPage/WFOFrequentlyUsed.tsx → WfoStartPage/WfoFrequentlyUsed.tsx} +4 -3
- package/src/components/{WFOStartPage/WFOListItemStartPage.stories.tsx → WfoStartPage/WfoListItemStartPage.stories.tsx} +6 -4
- package/src/components/{WFOStartPage/WFOListItemStartPage.tsx → WfoStartPage/WfoListItemStartPage.tsx} +9 -6
- package/src/components/{WFOStartPage/WFOListStartPage.stories.tsx → WfoStartPage/WfoListStartPage.stories.tsx} +6 -4
- package/src/components/{WFOStartPage/WFOListStartPage.tsx → WfoStartPage/WfoListStartPage.tsx} +9 -6
- package/src/components/{WFOStartPage/WFOMultiListSection.stories.tsx → WfoStartPage/WfoMultiListSection.stories.tsx} +5 -4
- package/src/components/{WFOStartPage/WFOMultiListSection.tsx → WfoStartPage/WfoMultiListSection.tsx} +9 -6
- package/src/components/WfoStartPage/WfoNewProcessPanel.stories.tsx +13 -0
- package/src/components/{WFOStartPage/WFONewProcessPanel.tsx → WfoStartPage/WfoNewProcessPanel.tsx} +5 -3
- package/src/components/WfoStartPage/WfoStatCards.stories.tsx +13 -0
- package/src/components/{WFOStartPage/WFOStatCards.tsx → WfoStartPage/WfoStatCards.tsx} +6 -4
- package/src/components/WfoStartPage/index.ts +6 -0
- package/src/components/WfoStartTaskButtonComboBox/WfoStartTaskButtonComboBox.tsx +51 -0
- package/src/components/WfoStartTaskButtonComboBox/index.ts +1 -0
- package/src/components/WfoSubscription/SubscriptionKeyValueBlock.tsx +46 -0
- package/src/components/WfoSubscription/WfoProcessesTimeline.tsx +158 -0
- package/src/components/WfoSubscription/WfoRelatedSubscriptions.tsx +192 -0
- package/src/components/WfoSubscription/WfoSubscription.tsx +145 -0
- package/src/components/WfoSubscription/WfoSubscriptionActions.tsx +236 -0
- package/src/components/WfoSubscription/WfoSubscriptionDetailTree.tsx +161 -0
- package/src/components/WfoSubscription/WfoSubscriptionGeneral.tsx +147 -0
- package/src/components/WfoSubscription/WfoSubscriptionProductBlock.tsx +207 -0
- package/src/components/WfoSubscription/index.ts +8 -0
- package/src/components/WfoSubscription/styles.ts +104 -0
- package/src/components/WfoSubscription/utils/index.ts +1 -0
- package/src/components/WfoSubscription/utils/utils.spec.ts +168 -0
- package/src/components/WfoSubscription/utils/utils.ts +76 -0
- package/src/components/{WFOSubscriptionsList/WFOSubscriptionsList.tsx → WfoSubscriptionsList/WfoSubscriptionsList.tsx} +63 -57
- package/src/components/{WFOSubscriptionsList → WfoSubscriptionsList}/index.ts +1 -2
- package/src/components/{WFOSubscriptionsList → WfoSubscriptionsList}/mapGrapghQlSubscriptionsResultToSubscriptionListItems.ts +16 -7
- package/src/components/{WFOSubscriptionsList → WfoSubscriptionsList}/subscriptionListTabs.ts +18 -18
- package/src/components/WfoTable/WfoBasicTable/WfoBasicTable.tsx +178 -0
- package/src/components/{WFOTable/WFOSortDirectionIcon.tsx → WfoTable/WfoBasicTable/WfoSortDirectionIcon.tsx} +8 -8
- package/src/components/WfoTable/WfoBasicTable/WfoStatusColorField.tsx +21 -0
- package/src/components/WfoTable/WfoBasicTable/WfoTableHeaderCell.tsx +120 -0
- package/src/components/WfoTable/WfoBasicTable/index.ts +4 -0
- package/src/components/WfoTable/WfoBasicTable/styles.ts +73 -0
- package/src/components/{WFOTable/WFODataGridTable/WFODataGridTable.stories.tsx → WfoTable/WfoDataGridTable/WfoDataGridTable.stories.tsx} +9 -7
- package/src/components/{WFOTable/WFODataGridTable/WFODataGridTable.tsx → WfoTable/WfoDataGridTable/WfoDataGridTable.tsx} +23 -21
- package/src/components/{WFOTable/WFODataGridTable/WFOdataGridColumns.spec.ts → WfoTable/WfoDataGridTable/WfodataGridColumns.spec.ts} +7 -7
- package/src/components/{WFOTable/WFODataGridTable/WFOdataGridColumns.ts → WfoTable/WfoDataGridTable/WfodataGridColumns.ts} +8 -7
- package/src/components/WfoTable/WfoFirstPartUUID/WfoFirstPartUUID.tsx +11 -0
- package/src/components/WfoTable/WfoFirstPartUUID/index.ts +1 -0
- package/src/components/WfoTable/WfoSortButtons/WfoSortButton.tsx +31 -0
- package/src/components/WfoTable/WfoSortButtons/WfoSortButtons.tsx +33 -0
- package/src/components/WfoTable/WfoSortButtons/index.ts +2 -0
- package/src/components/WfoTable/WfoSortButtons/styles.ts +20 -0
- package/src/components/{WFOTable/WFOTableSettingsModal/WFOTableSettingsModal.tsx → WfoTable/WfoTableSettingsModal/WfoTableSettingsModal.tsx} +5 -3
- package/src/components/WfoTable/WfoTableSettingsModal/index.ts +1 -0
- package/src/components/WfoTable/WfoTableWithFilter/WfoTableWithFilter.tsx +253 -0
- package/src/components/WfoTable/WfoTableWithFilter/index.ts +1 -0
- package/src/components/WfoTable/index.ts +15 -0
- package/src/components/{WFOTable → WfoTable}/utils/columns.ts +27 -16
- package/src/components/{WFOTable → WfoTable}/utils/constants.ts +3 -1
- package/src/components/WfoTable/utils/mapSortableAndFilterableValuesToTableColumnConfig.spec.ts +52 -0
- package/src/components/WfoTable/utils/mapSortableAndFilterableValuesToTableColumnConfig.ts +21 -0
- package/src/components/{WFOTable → WfoTable}/utils/tableConfigPersistence.spec.ts +4 -4
- package/src/components/{WFOTable → WfoTable}/utils/tableConfigPersistence.ts +12 -16
- package/src/components/{WFOTable → WfoTable}/utils/tableUtils.spec.ts +1 -1
- package/src/components/{WFOTable → WfoTable}/utils/tableUtils.ts +6 -25
- package/src/components/WfoTimeline/WfoTimeline.tsx +69 -0
- package/src/components/WfoTimeline/WfoTimelineStep.tsx +57 -0
- package/src/components/WfoTimeline/index.ts +1 -0
- package/src/components/WfoTimeline/mapProcessStepStatusToEuiStepStatus.ts +23 -0
- package/src/components/WfoTimeline/styles.ts +165 -0
- package/src/components/WfoTimeline/timelineUtils.ts +14 -0
- package/src/components/WfoToastsList/WfoToastsList.tsx +22 -0
- package/src/components/WfoToastsList/index.ts +1 -0
- package/src/components/WfoTree/WfoTree.tsx +27 -0
- package/src/components/{WFOTree/WFOTreeBranch.tsx → WfoTree/WfoTreeBranch.tsx} +7 -6
- package/src/components/{WFOTree/WFOTreeNode.tsx → WfoTree/WfoTreeNode.tsx} +28 -13
- package/src/components/WfoTree/index.ts +4 -0
- package/src/components/WfoTree/styles.ts +18 -0
- package/src/components/WfoTree/treeUtils.spec.ts +100 -0
- package/src/components/WfoTree/treeUtils.ts +21 -0
- package/src/components/WfoWorkflowSteps/WfoStep/WfoStep.stories.tsx +13 -0
- package/src/components/WfoWorkflowSteps/WfoStep/WfoStep.tsx +167 -0
- package/src/components/WfoWorkflowSteps/WfoStep/index.ts +1 -0
- package/src/components/WfoWorkflowSteps/WfoStepList/WfoStepList.tsx +107 -0
- package/src/components/WfoWorkflowSteps/WfoStepList/index.ts +1 -0
- package/src/components/WfoWorkflowSteps/WfoStepStatusIcon/WfoStepStatusIcon.stories.tsx +16 -0
- package/src/components/WfoWorkflowSteps/WfoStepStatusIcon/WfoStepStatusIcon.tsx +114 -0
- package/src/components/WfoWorkflowSteps/WfoStepStatusIcon/index.ts +1 -0
- package/src/components/WfoWorkflowSteps/WfoWorkflowStepList/WfoStepListHeader.tsx +139 -0
- package/src/components/WfoWorkflowSteps/WfoWorkflowStepList/WfoWorkflowStepList.stories.tsx +56 -0
- package/src/components/WfoWorkflowSteps/WfoWorkflowStepList/WfoWorkflowStepList.tsx +121 -0
- package/src/components/WfoWorkflowSteps/WfoWorkflowStepList/index.ts +2 -0
- package/src/components/WfoWorkflowSteps/index.ts +4 -0
- package/src/components/WfoWorkflowSteps/stepListUtils.spec.ts +26 -0
- package/src/components/WfoWorkflowSteps/stepListUtils.ts +56 -0
- package/src/components/WfoWorkflowSteps/styles.ts +121 -0
- package/src/components/confirmationDialog/ConfirmationDialogStyling.ts +12 -0
- package/src/components/confirmationDialog/WfoConfirmationDialog.tsx +112 -0
- package/src/components/confirmationDialog/index.ts +1 -0
- package/src/components/index.ts +19 -11
- package/src/contexts/ApiClientContext.tsx +30 -0
- package/src/contexts/ConfirmationDialogProvider.tsx +99 -0
- package/src/contexts/OrchestratorConfigContext.tsx +8 -3
- package/src/contexts/ToastContext.tsx +136 -0
- package/src/contexts/TreeContext.tsx +53 -32
- package/src/contexts/index.ts +3 -1
- package/src/graphqlQueries/customersQuery.ts +19 -0
- package/src/graphqlQueries/index.ts +4 -0
- package/src/graphqlQueries/processDetailQuery.ts +45 -0
- package/src/graphqlQueries/processListQuery.ts +17 -7
- package/src/graphqlQueries/productBlocksQuery.ts +13 -1
- package/src/graphqlQueries/productsQuery.ts +5 -1
- package/src/graphqlQueries/relatedSubscriptionsQuery.ts +65 -0
- package/src/graphqlQueries/resourceTypesQuery.ts +13 -2
- package/src/graphqlQueries/subscriptionDetailQuery.ts +62 -0
- package/src/graphqlQueries/subscriptionsDropdownOptionsQuery.ts +47 -0
- package/src/graphqlQueries/subscriptionsListQuery.ts +4 -0
- package/src/graphqlQueries/{workflowsQuery.ts → workflows/workflowsQuery.ts} +9 -3
- package/src/graphqlQueries/workflows/workflowsQueryForDropdownList.ts +41 -0
- package/src/hooks/DataFetchHooks.ts +72 -49
- package/src/hooks/ProcessesHooks/useDeleteProcess.ts +37 -0
- package/src/hooks/index.ts +4 -1
- package/src/hooks/surf/useGetSubscriptionDropdownOptions.ts +47 -0
- package/src/hooks/surf/useIsTaggedPort.ts +29 -0
- package/src/hooks/useDataDisplayParams.ts +1 -1
- package/src/hooks/useEngineStatusQuery.ts +20 -10
- package/src/hooks/useOrchestratorConfig.ts +6 -2
- package/src/hooks/useProcessStatusCountsQuery.ts +8 -23
- package/src/hooks/useQueryWithFetch.ts +33 -0
- package/src/hooks/useQueryWithGraphql.ts +18 -13
- package/src/hooks/useSessionWithToken.ts +14 -0
- package/src/hooks/useStoredTableConfig.ts +43 -0
- package/src/hooks/useSubscriptionActions.ts +3 -3
- package/src/hooks/useToastMessage.ts +5 -0
- package/src/hooks/useWithOrchestratorTheme.ts +10 -0
- package/src/icons/WfoArrowNarrowDown.stories.tsx +13 -0
- package/src/icons/{WFOArrowNarrowDown.tsx → WfoArrowNarrowDown.tsx} +4 -2
- package/src/icons/WfoArrowNarrowUp.stories.tsx +13 -0
- package/src/icons/{WFOArrowNarrowUp.tsx → WfoArrowNarrowUp.tsx} +4 -2
- package/src/icons/WfoArrowsExpand.stories.tsx +13 -0
- package/src/icons/WfoArrowsExpand.tsx +33 -0
- package/src/icons/WfoCheckmarkCircleFill.stories.tsx +13 -0
- package/src/icons/{WFOCheckmarkCircleFill.tsx → WfoCheckmarkCircleFill.tsx} +3 -2
- package/src/icons/WfoChevronDown.stories.tsx +13 -0
- package/src/icons/{WFOChevronDown.tsx → WfoChevronDown.tsx} +3 -2
- package/src/icons/WfoChevronUp.stories.tsx +13 -0
- package/src/icons/WfoChevronUp.tsx +33 -0
- package/src/icons/WfoClipboardCopy.stories.tsx +13 -0
- package/src/icons/WfoClipboardCopy.tsx +33 -0
- package/src/icons/WfoCode.stories.tsx +13 -0
- package/src/icons/WfoCode.tsx +35 -0
- package/src/icons/WfoCogFill.stories.tsx +13 -0
- package/src/icons/WfoCogFill.tsx +35 -0
- package/src/icons/WfoEyeFill.stories.tsx +13 -0
- package/src/icons/WfoEyeFill.tsx +35 -0
- package/src/icons/{WFOIconProps.ts → WfoIconProps.ts} +1 -1
- package/src/icons/WfoLogoutIcon.stories.tsx +13 -0
- package/src/icons/{WFOLogoutIcon.tsx → WfoLogoutIcon.tsx} +3 -2
- package/src/icons/WfoMinusCircleFill.stories.tsx +13 -0
- package/src/icons/WfoMinusCircleFill.tsx +33 -0
- package/src/icons/WfoMinusCircleOutline.stories.tsx +13 -0
- package/src/icons/{WFOMinusCircleOutline.tsx → WfoMinusCircleOutline.tsx} +3 -2
- package/src/icons/WfoPencilAlt.stories.tsx +13 -0
- package/src/icons/WfoPencilAlt.tsx +33 -0
- package/src/icons/WfoPlayFill.stories.tsx +13 -0
- package/src/icons/WfoPlayFill.tsx +35 -0
- package/src/icons/WfoPlusCircleFill.stories.tsx +13 -0
- package/src/icons/{WFOPlusCircleFill.tsx → WfoPlusCircleFill.tsx} +3 -2
- package/src/icons/WfoRefresh.stories.tsx +13 -0
- package/src/icons/WfoRefresh.tsx +35 -0
- package/src/icons/WfoSearchStrikethrough.stories.tsx +13 -0
- package/src/icons/WfoSearchStrikethrough.tsx +33 -0
- package/src/icons/WfoSortAsc.stories.tsx +13 -0
- package/src/icons/WfoSortAsc.tsx +33 -0
- package/src/icons/WfoSortDesc.stories.tsx +13 -0
- package/src/icons/WfoSortDesc.tsx +33 -0
- package/src/icons/WfoStatistic.tsx +41 -0
- package/src/icons/WfoStatusDotIcon.stories.tsx +13 -0
- package/src/icons/{WFOStatusDotIcon.tsx → WfoStatusDotIcon.tsx} +3 -2
- package/src/icons/WfoXCircleFill.stories.tsx +13 -0
- package/src/icons/{WFOXCircleFill.tsx → WfoXCircleFill.tsx} +3 -2
- package/src/icons/index.ts +22 -10
- package/src/index.ts +1 -0
- package/src/messages/en-US.json +173 -20
- package/src/messages/getTranslationMessages.spec.ts +1 -1
- package/src/messages/getTranslationMessages.ts +1 -1
- package/src/messages/nl-NL.json +177 -22
- package/src/pages/index.ts +2 -0
- package/src/pages/metadata/{WFOMetadataPageLayout.tsx → WfoMetadataPageLayout.tsx} +5 -3
- package/src/pages/metadata/WfoProductBlocksPage.tsx +239 -0
- package/src/pages/metadata/{WFOProductsPage.tsx → WfoProductsPage.tsx} +96 -54
- package/src/pages/metadata/WfoResourceTypesPage.tsx +185 -0
- package/src/pages/metadata/WfoWorkflowsPage.tsx +194 -0
- package/src/pages/metadata/index.ts +4 -4
- package/src/pages/metadata/workflowListObjectMapper.ts +43 -0
- package/src/pages/processes/WfoProcessDetail.tsx +327 -0
- package/src/pages/processes/WfoProcessDetailPage.tsx +88 -0
- package/src/pages/processes/WfoProcessListPage.tsx +106 -0
- package/src/pages/processes/WfoProcessListSubscriptionsCell.tsx +72 -0
- package/src/pages/processes/getProcessListTabTypeFromString.ts +6 -6
- package/src/pages/processes/index.ts +3 -2
- package/src/pages/processes/tabConfig.ts +28 -10
- package/src/pages/processes/timelineUtils.spec.ts +202 -0
- package/src/pages/processes/timelineUtils.ts +113 -0
- package/src/pages/subscriptions/WfoSubscriptionDetailPage.tsx +19 -0
- package/src/pages/subscriptions/{WFOSubscriptionsListPage.tsx → WfoSubscriptionsListPage.tsx} +40 -20
- package/src/pages/subscriptions/index.ts +2 -1
- package/src/pages/tasks/WfoTaskListPage.tsx +120 -0
- package/src/pages/tasks/index.ts +1 -0
- package/src/pages/workflow/WfoStartWorkflowPage.tsx +176 -0
- package/src/pages/workflow/index.ts +1 -0
- package/src/stories/Button.jsx +45 -39
- package/src/stories/Configure.mdx +48 -43
- package/src/stories/Header.jsx +59 -45
- package/src/stories/Page.jsx +81 -60
- package/src/stories/Page.stories.js +2 -1
- package/src/stories/button.css +18 -18
- package/src/stories/colors.mdx +12 -0
- package/src/stories/colors.tsx +27 -0
- package/src/stories/header.css +18 -18
- package/src/stories/page.css +40 -40
- package/src/theme/defaultOrchestratorTheme.ts +16 -0
- package/src/types/forms.ts +40 -0
- package/src/types/index.ts +0 -1
- package/src/types/types.ts +283 -73
- package/src/utils/date.spec.ts +157 -5
- package/src/utils/date.ts +66 -5
- package/src/utils/environmentVariables.spec.ts +17 -0
- package/src/utils/environmentVariables.ts +12 -0
- package/src/utils/getDefaultTableConfig.ts +101 -0
- package/src/utils/getProductNamesFromProcess.spec.ts +133 -0
- package/src/utils/getProductNamesFromProcess.ts +16 -0
- package/src/utils/getTokenName.ts +2 -1
- package/src/utils/index.ts +2 -0
- package/src/utils/string.spec.ts +24 -1
- package/src/utils/strings.ts +5 -0
- package/tsconfig.build.json +18 -0
- package/tsconfig.json +8 -2
- package/src/components/WFOBadges/WFOBadge/index.ts +0 -1
- package/src/components/WFOBadges/WFOEngineStatusBadge/index.ts +0 -1
- package/src/components/WFOBadges/WFOEnvironmentBadge/index.ts +0 -1
- package/src/components/WFOBadges/WFOFailedTasksBadge/WFOFailedTasksBadge.stories.tsx +0 -12
- package/src/components/WFOBadges/WFOFailedTasksBadge/WFOFailedTasksBadge.tsx +0 -63
- package/src/components/WFOBadges/WFOFailedTasksBadge/index.ts +0 -1
- package/src/components/WFOBadges/WFOHeaderBadge/index.ts +0 -1
- package/src/components/WFOBadges/WFOProcessStatusBadge/index.ts +0 -1
- package/src/components/WFOBadges/WFOProductBlockBadge/WFOProductBlockBadge.stories.tsx +0 -15
- package/src/components/WFOBadges/WFOProductBlockBadge/WFOProductBlockBadge.tsx +0 -22
- package/src/components/WFOBadges/WFOProductBlockBadge/index.ts +0 -1
- package/src/components/WFOBadges/WFOSubscriptionStatusBadge/index.ts +0 -1
- package/src/components/WFOBadges/index.ts +0 -8
- package/src/components/WFOFilterTabs/index.ts +0 -1
- package/src/components/WFOLoading/WFOLoading.tsx +0 -2
- package/src/components/WFOLoading/index.ts +0 -1
- package/src/components/WFOPageTemplate/WFOBreadcrumbs/index.ts +0 -1
- package/src/components/WFOPageTemplate/WFOPageHeader/index.ts +0 -1
- package/src/components/WFOPageTemplate/WFOPageTemplate/index.ts +0 -1
- package/src/components/WFOPageTemplate/WFOSidebar/WFOSidebar.tsx +0 -161
- package/src/components/WFOPageTemplate/WFOSidebar/index.ts +0 -1
- package/src/components/WFOPageTemplate/index.ts +0 -4
- package/src/components/WFOSearchBar/index.ts +0 -1
- package/src/components/WFOSettingsModal/index.tsx +0 -1
- package/src/components/WFOSettingsPage/index.ts +0 -1
- package/src/components/WFOStartPage/WFONewProcessPanel.stories.tsx +0 -12
- package/src/components/WFOStartPage/WFOStatCards.stories.tsx +0 -12
- package/src/components/WFOStartPage/index.ts +0 -6
- package/src/components/WFOSubscription/WFOFixedInputBlock.tsx +0 -58
- package/src/components/WFOSubscription/WFOProcessesTimeline.tsx +0 -105
- package/src/components/WFOSubscription/WFOProductBlock.tsx +0 -186
- package/src/components/WFOSubscription/WFOSubscriptionActions.tsx +0 -138
- package/src/components/WFOSubscription/WFOSubscriptionBlock.tsx +0 -109
- package/src/components/WFOSubscription/WFOSubscriptionDetailTree.tsx +0 -184
- package/src/components/WFOSubscription/WFOSubscriptionGeneral.tsx +0 -53
- package/src/components/WFOSubscription/index.ts +0 -7
- package/src/components/WFOSubscription/styles.ts +0 -18
- package/src/components/WFOSubscriptionsList/types.ts +0 -11
- package/src/components/WFOTable/WFOTable.tsx +0 -85
- package/src/components/WFOTable/WFOTableHeaderCell.tsx +0 -30
- package/src/components/WFOTable/WFOTableSettingsModal/index.ts +0 -1
- package/src/components/WFOTable/WFOTableWithFilter/WFOTableWithFilter.tsx +0 -174
- package/src/components/WFOTable/WFOTableWithFilter/index.ts +0 -1
- package/src/components/WFOTable/index.ts +0 -14
- package/src/components/WFOTree/WFOTree.tsx +0 -16
- package/src/contexts/SubscriptionContext.tsx +0 -72
- package/src/hooks/useSubscriptionProcesses.ts +0 -45
- package/src/icons/WFOCheckmarkCircleFill.stories.tsx +0 -12
- package/src/icons/WFOLogoutIcon.stories.tsx +0 -12
- package/src/icons/WFOMinusCircleOutline.stories.tsx +0 -12
- package/src/icons/WFOPlusCircleFill.stories.tsx +0 -12
- package/src/icons/WFOStatusDotIcon.stories.tsx +0 -12
- package/src/icons/WFOXCircleFill.stories.tsx +0 -12
- package/src/pages/metadata/WFOProductBlocksPage.tsx +0 -166
- package/src/pages/metadata/WFOResourceTypesPage.tsx +0 -120
- package/src/pages/metadata/WFOWorkflowsPage.tsx +0 -251
- package/src/pages/processes/WFOProcessListPage.tsx +0 -213
- package/src/pages/processes/WFOProcessesListSubscriptionsCell.tsx +0 -28
- package/src/pages/processes/tableConfig.ts +0 -22
- package/src/types/subscription.ts +0 -21
- package/src/components/{WFOTable → WfoTable}/utils/columns.spec.ts +1 -1
|
@@ -1,138 +0,0 @@
|
|
|
1
|
-
import React, { FC, useState } from 'react';
|
|
2
|
-
import {
|
|
3
|
-
EuiButton,
|
|
4
|
-
EuiContextMenuItem,
|
|
5
|
-
EuiContextMenuPanel,
|
|
6
|
-
EuiPanel,
|
|
7
|
-
EuiAvatar,
|
|
8
|
-
EuiTitle,
|
|
9
|
-
EuiPopover,
|
|
10
|
-
} from '@elastic/eui';
|
|
11
|
-
import { useTranslations } from 'next-intl';
|
|
12
|
-
import { useSubscriptionActions } from '../../hooks/useSubscriptionActions';
|
|
13
|
-
|
|
14
|
-
type MenuItemProps = {
|
|
15
|
-
key: string;
|
|
16
|
-
icon: string;
|
|
17
|
-
description: string;
|
|
18
|
-
index: number;
|
|
19
|
-
};
|
|
20
|
-
|
|
21
|
-
const MenuItem: FC<MenuItemProps> = ({ icon, description, key }) => (
|
|
22
|
-
<EuiContextMenuItem key={key} icon={<EuiAvatar name={icon} size="s" />}>
|
|
23
|
-
{description}
|
|
24
|
-
</EuiContextMenuItem>
|
|
25
|
-
);
|
|
26
|
-
|
|
27
|
-
type MenuBlockProps = {
|
|
28
|
-
title: string;
|
|
29
|
-
};
|
|
30
|
-
const MenuBlock: FC<MenuBlockProps> = ({ title }) => (
|
|
31
|
-
<EuiTitle size="xxxs">
|
|
32
|
-
<h3>{title}</h3>
|
|
33
|
-
</EuiTitle>
|
|
34
|
-
);
|
|
35
|
-
|
|
36
|
-
export type SubscriptionActionsProps = {
|
|
37
|
-
subscriptionId: string;
|
|
38
|
-
};
|
|
39
|
-
|
|
40
|
-
export const WFOSubscriptionActions: FC<SubscriptionActionsProps> = ({
|
|
41
|
-
subscriptionId,
|
|
42
|
-
}) => {
|
|
43
|
-
const t = useTranslations('subscriptions.detail.workflow');
|
|
44
|
-
const [isPopoverOpen, setPopover] = useState(false);
|
|
45
|
-
const { data: subscriptionActions } =
|
|
46
|
-
useSubscriptionActions(subscriptionId);
|
|
47
|
-
|
|
48
|
-
const onButtonClick = () => {
|
|
49
|
-
setPopover(!isPopoverOpen);
|
|
50
|
-
};
|
|
51
|
-
|
|
52
|
-
const closePopover = () => {
|
|
53
|
-
setPopover(false);
|
|
54
|
-
};
|
|
55
|
-
|
|
56
|
-
const button = (
|
|
57
|
-
<EuiButton
|
|
58
|
-
iconType="arrowDown"
|
|
59
|
-
iconSide="right"
|
|
60
|
-
onClick={onButtonClick}
|
|
61
|
-
>
|
|
62
|
-
Actions
|
|
63
|
-
</EuiButton>
|
|
64
|
-
);
|
|
65
|
-
|
|
66
|
-
return (
|
|
67
|
-
<EuiPopover
|
|
68
|
-
id="subscriptionActionPopover"
|
|
69
|
-
button={button}
|
|
70
|
-
isOpen={isPopoverOpen}
|
|
71
|
-
closePopover={closePopover}
|
|
72
|
-
panelPaddingSize="none"
|
|
73
|
-
anchorPosition="downLeft"
|
|
74
|
-
>
|
|
75
|
-
<EuiContextMenuPanel>
|
|
76
|
-
<EuiPanel color="transparent" paddingSize="s">
|
|
77
|
-
{subscriptionActions && subscriptionActions.create && (
|
|
78
|
-
<>
|
|
79
|
-
<MenuBlock title={t('create')}></MenuBlock>
|
|
80
|
-
{subscriptionActions.create.map((item, index) => (
|
|
81
|
-
<MenuItem
|
|
82
|
-
key={`c_${index}`}
|
|
83
|
-
icon={'CreateLong'}
|
|
84
|
-
description={item.description}
|
|
85
|
-
index={index}
|
|
86
|
-
/>
|
|
87
|
-
))}
|
|
88
|
-
</>
|
|
89
|
-
)}
|
|
90
|
-
|
|
91
|
-
{subscriptionActions && subscriptionActions.modify && (
|
|
92
|
-
<>
|
|
93
|
-
<MenuBlock title={t('modify')}></MenuBlock>
|
|
94
|
-
{subscriptionActions.modify.map((item, index) => (
|
|
95
|
-
<MenuItem
|
|
96
|
-
key={`m_${index}`}
|
|
97
|
-
icon={'M'}
|
|
98
|
-
description={item.description}
|
|
99
|
-
index={index}
|
|
100
|
-
/>
|
|
101
|
-
))}
|
|
102
|
-
</>
|
|
103
|
-
)}
|
|
104
|
-
|
|
105
|
-
{subscriptionActions && subscriptionActions.system && (
|
|
106
|
-
<>
|
|
107
|
-
<MenuBlock title={t('system')}></MenuBlock>
|
|
108
|
-
{subscriptionActions.system.map((item, index) => (
|
|
109
|
-
<MenuItem
|
|
110
|
-
key={`s_${index}`}
|
|
111
|
-
icon={'System'}
|
|
112
|
-
description={item.description}
|
|
113
|
-
index={index}
|
|
114
|
-
/>
|
|
115
|
-
))}
|
|
116
|
-
</>
|
|
117
|
-
)}
|
|
118
|
-
|
|
119
|
-
{subscriptionActions && subscriptionActions.terminate && (
|
|
120
|
-
<>
|
|
121
|
-
<MenuBlock title={t('terminate')}></MenuBlock>
|
|
122
|
-
{subscriptionActions.terminate.map(
|
|
123
|
-
(item, index) => (
|
|
124
|
-
<MenuItem
|
|
125
|
-
key={`t_${index}`}
|
|
126
|
-
icon={'Terminate'}
|
|
127
|
-
description={item.description}
|
|
128
|
-
index={index}
|
|
129
|
-
/>
|
|
130
|
-
),
|
|
131
|
-
)}
|
|
132
|
-
</>
|
|
133
|
-
)}
|
|
134
|
-
</EuiPanel>
|
|
135
|
-
</EuiContextMenuPanel>
|
|
136
|
-
</EuiPopover>
|
|
137
|
-
);
|
|
138
|
-
};
|
|
@@ -1,109 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
|
|
3
|
-
import {
|
|
4
|
-
EuiButtonEmpty,
|
|
5
|
-
EuiFlexGroup,
|
|
6
|
-
EuiFlexItem,
|
|
7
|
-
EuiSpacer,
|
|
8
|
-
EuiText,
|
|
9
|
-
} from '@elastic/eui';
|
|
10
|
-
import { useTranslations } from 'next-intl';
|
|
11
|
-
import { WFOCheckmarkCircleFill, WFOMinusCircleOutline } from '../../icons';
|
|
12
|
-
import { WFOSubscriptionStatusBadge } from '../WFOBadges';
|
|
13
|
-
import {
|
|
14
|
-
subscriptionDefinitionCellStyle,
|
|
15
|
-
subscriptionTableRowStyle,
|
|
16
|
-
subscriptionValueCellStyle,
|
|
17
|
-
} from './styles';
|
|
18
|
-
|
|
19
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
20
|
-
export const RenderField = (field: string, data: any) => {
|
|
21
|
-
if (field === 'status')
|
|
22
|
-
return <WFOSubscriptionStatusBadge status={data[field]} />;
|
|
23
|
-
else if (field === 'insync')
|
|
24
|
-
return (
|
|
25
|
-
<div style={{ position: 'relative', top: 5 }}>
|
|
26
|
-
{data[field] ? (
|
|
27
|
-
<WFOCheckmarkCircleFill color="#007832" />
|
|
28
|
-
) : (
|
|
29
|
-
<WFOMinusCircleOutline color="#BD271F" />
|
|
30
|
-
)}
|
|
31
|
-
</div>
|
|
32
|
-
);
|
|
33
|
-
else if (field === 'product.name') return <div>{data.product.name}</div>;
|
|
34
|
-
return <div>{data[field]}</div>;
|
|
35
|
-
};
|
|
36
|
-
|
|
37
|
-
export const WFOSubscriptionBlock = (title: string, data: object) => {
|
|
38
|
-
const t = useTranslations('common');
|
|
39
|
-
const keys = [];
|
|
40
|
-
for (const key in data) {
|
|
41
|
-
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
42
|
-
// @ts-ignore
|
|
43
|
-
if (typeof data[key] !== 'object') {
|
|
44
|
-
keys.push(key);
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
if (keys.length === 0) return;
|
|
48
|
-
|
|
49
|
-
return (
|
|
50
|
-
<>
|
|
51
|
-
<EuiSpacer size={'m'}></EuiSpacer>
|
|
52
|
-
<div>
|
|
53
|
-
<div style={{ marginTop: 5 }}>
|
|
54
|
-
<EuiFlexGroup justifyContent="spaceBetween">
|
|
55
|
-
<EuiFlexItem>
|
|
56
|
-
<EuiText grow={false}>
|
|
57
|
-
<h3>{title}</h3>
|
|
58
|
-
</EuiText>
|
|
59
|
-
</EuiFlexItem>
|
|
60
|
-
<EuiFlexItem grow={false}>
|
|
61
|
-
<EuiButtonEmpty size={'s'} iconType={'starEmpty'}>
|
|
62
|
-
{t('addToFavorites')}
|
|
63
|
-
</EuiButtonEmpty>
|
|
64
|
-
</EuiFlexItem>
|
|
65
|
-
</EuiFlexGroup>
|
|
66
|
-
|
|
67
|
-
<EuiSpacer size={'s'}></EuiSpacer>
|
|
68
|
-
<table width="100%">
|
|
69
|
-
<tbody>
|
|
70
|
-
<tr key={0} css={subscriptionTableRowStyle}>
|
|
71
|
-
<td
|
|
72
|
-
valign={'top'}
|
|
73
|
-
css={subscriptionDefinitionCellStyle}
|
|
74
|
-
>
|
|
75
|
-
<b>{t('product')}</b>
|
|
76
|
-
</td>
|
|
77
|
-
<td css={subscriptionValueCellStyle}>
|
|
78
|
-
{/*
|
|
79
|
-
@typescript-eslint/ban-ts-comment
|
|
80
|
-
@ts-ignore */}
|
|
81
|
-
{data.product.name}
|
|
82
|
-
</td>
|
|
83
|
-
</tr>
|
|
84
|
-
{keys.map((k, i) => (
|
|
85
|
-
<tr
|
|
86
|
-
key={i}
|
|
87
|
-
style={{
|
|
88
|
-
backgroundColor:
|
|
89
|
-
i % 2 ? '#F1F5F9' : '#FFF',
|
|
90
|
-
}}
|
|
91
|
-
>
|
|
92
|
-
<td
|
|
93
|
-
valign={'top'}
|
|
94
|
-
css={subscriptionDefinitionCellStyle}
|
|
95
|
-
>
|
|
96
|
-
<b>{k}</b>
|
|
97
|
-
</td>
|
|
98
|
-
<td css={subscriptionValueCellStyle}>
|
|
99
|
-
{RenderField(k, data)}
|
|
100
|
-
</td>
|
|
101
|
-
</tr>
|
|
102
|
-
))}
|
|
103
|
-
</tbody>
|
|
104
|
-
</table>
|
|
105
|
-
</div>
|
|
106
|
-
</div>
|
|
107
|
-
</>
|
|
108
|
-
);
|
|
109
|
-
};
|
|
@@ -1,184 +0,0 @@
|
|
|
1
|
-
import React, { useState } from 'react';
|
|
2
|
-
import { useTranslations } from 'next-intl';
|
|
3
|
-
import { ProductBlockBase, ResourceTypeBase, TreeBlock } from '../../types';
|
|
4
|
-
import { WFOProductBlock } from './WFOProductBlock';
|
|
5
|
-
import {
|
|
6
|
-
SubscriptionContext,
|
|
7
|
-
SubscriptionContextType,
|
|
8
|
-
} from '../../contexts/SubscriptionContext';
|
|
9
|
-
import { WFOTree } from '../WFOTree/WFOTree';
|
|
10
|
-
import { TreeContext, TreeContextType } from '../../contexts/TreeContext';
|
|
11
|
-
|
|
12
|
-
import {
|
|
13
|
-
EuiButtonIcon,
|
|
14
|
-
EuiCallOut,
|
|
15
|
-
EuiFlexGroup,
|
|
16
|
-
EuiFlexItem,
|
|
17
|
-
EuiLoadingContent,
|
|
18
|
-
EuiSearchBar,
|
|
19
|
-
EuiText,
|
|
20
|
-
} from '@elastic/eui';
|
|
21
|
-
|
|
22
|
-
import { getTokenName } from '../../utils/getTokenName';
|
|
23
|
-
|
|
24
|
-
interface TreeBlockOptional extends ProductBlockBase {
|
|
25
|
-
icon?: string;
|
|
26
|
-
label?: string;
|
|
27
|
-
callback?: () => void;
|
|
28
|
-
children?: TreeBlock;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
type NodeMap = { [key: number]: TreeBlock | TreeBlockOptional };
|
|
32
|
-
|
|
33
|
-
const MAX_LABEL_LENGTH = 45;
|
|
34
|
-
const MAX_EXPAND_ALL = 100;
|
|
35
|
-
|
|
36
|
-
function getProductBlockTitle(resourceType: ResourceTypeBase): string {
|
|
37
|
-
if (!resourceType.title) return resourceType.name;
|
|
38
|
-
return resourceType.title?.length > MAX_LABEL_LENGTH
|
|
39
|
-
? `${resourceType.title.substring(0, MAX_LABEL_LENGTH)}...`
|
|
40
|
-
: resourceType.title;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
export const WFOSubscriptionDetailTree = () => {
|
|
44
|
-
const t = useTranslations('subscriptions.detail');
|
|
45
|
-
const [expandAllActive, setExpandAllActive] = useState(false);
|
|
46
|
-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
47
|
-
const [selectedTreeNode, setSelectedTreeNode] = useState(-1);
|
|
48
|
-
|
|
49
|
-
const { subscriptionData, loadingStatus } = React.useContext(
|
|
50
|
-
SubscriptionContext,
|
|
51
|
-
) as SubscriptionContextType;
|
|
52
|
-
|
|
53
|
-
const { selectedIds, collapseAll, expandAll, resetSelection } =
|
|
54
|
-
React.useContext(TreeContext) as TreeContextType;
|
|
55
|
-
|
|
56
|
-
const toggleExpandAll = () => {
|
|
57
|
-
if (expandAllActive) {
|
|
58
|
-
collapseAll();
|
|
59
|
-
} else {
|
|
60
|
-
expandAll(MAX_EXPAND_ALL);
|
|
61
|
-
}
|
|
62
|
-
setExpandAllActive(!expandAllActive);
|
|
63
|
-
};
|
|
64
|
-
|
|
65
|
-
let tree: TreeBlock | null = null;
|
|
66
|
-
if (loadingStatus > 0) {
|
|
67
|
-
const idToNodeMap: NodeMap = {}; // Keeps track of nodes using id as key, for fast lookup
|
|
68
|
-
|
|
69
|
-
// loop over data
|
|
70
|
-
subscriptionData.productBlocks.forEach((productBlock) => {
|
|
71
|
-
const shallowCopy: TreeBlockOptional = { ...productBlock };
|
|
72
|
-
|
|
73
|
-
// Each node will have children, so let's give it a "children" property
|
|
74
|
-
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
75
|
-
// @ts-ignore
|
|
76
|
-
shallowCopy.children = [];
|
|
77
|
-
|
|
78
|
-
// Add an entry for this node to the map so that any future children can lookup the parent
|
|
79
|
-
idToNodeMap[shallowCopy.id] = shallowCopy;
|
|
80
|
-
|
|
81
|
-
// Does this node have a parent?
|
|
82
|
-
if (shallowCopy.parent === null) {
|
|
83
|
-
// Doesn't look like it, so this node is the root of the tree
|
|
84
|
-
shallowCopy.label = shallowCopy.resourceTypes.name;
|
|
85
|
-
shallowCopy.callback = () =>
|
|
86
|
-
setSelectedTreeNode(shallowCopy.id);
|
|
87
|
-
|
|
88
|
-
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
89
|
-
// @ts-ignore
|
|
90
|
-
tree = shallowCopy as TreeBlock;
|
|
91
|
-
} else {
|
|
92
|
-
// This node has a parent, so let's look it up using the id
|
|
93
|
-
const parentNode = idToNodeMap[shallowCopy.parent];
|
|
94
|
-
shallowCopy.label = getProductBlockTitle(
|
|
95
|
-
shallowCopy.resourceTypes,
|
|
96
|
-
);
|
|
97
|
-
shallowCopy.callback = () =>
|
|
98
|
-
setSelectedTreeNode(shallowCopy.id);
|
|
99
|
-
|
|
100
|
-
if (
|
|
101
|
-
!subscriptionData.productBlocks.find(
|
|
102
|
-
(i) => i.parent === shallowCopy.id,
|
|
103
|
-
)
|
|
104
|
-
) {
|
|
105
|
-
shallowCopy.icon = getTokenName(shallowCopy.label);
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
// Let's add the current node as a child of the parent node.
|
|
109
|
-
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
110
|
-
// @ts-ignore
|
|
111
|
-
parentNode.children?.push(shallowCopy);
|
|
112
|
-
}
|
|
113
|
-
});
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
if (!tree) return null;
|
|
117
|
-
|
|
118
|
-
return (
|
|
119
|
-
<EuiFlexGroup style={{ marginTop: 15 }}>
|
|
120
|
-
<EuiFlexItem style={{ maxWidth: 450, width: 450 }}>
|
|
121
|
-
<EuiFlexGroup direction={'column'}>
|
|
122
|
-
<EuiFlexItem grow={false}>
|
|
123
|
-
<EuiFlexGroup>
|
|
124
|
-
<EuiFlexItem grow={false}>
|
|
125
|
-
<EuiText>
|
|
126
|
-
<h3>{t('productBlocks')}</h3>
|
|
127
|
-
</EuiText>
|
|
128
|
-
</EuiFlexItem>
|
|
129
|
-
<EuiFlexItem grow={false}>
|
|
130
|
-
<EuiButtonIcon
|
|
131
|
-
iconType={
|
|
132
|
-
expandAllActive ? 'minimize' : 'expand'
|
|
133
|
-
}
|
|
134
|
-
onClick={toggleExpandAll}
|
|
135
|
-
/>
|
|
136
|
-
</EuiFlexItem>
|
|
137
|
-
<EuiFlexItem grow={true}>
|
|
138
|
-
{selectedIds.length > 0 && (
|
|
139
|
-
<EuiButtonIcon
|
|
140
|
-
iconType="error"
|
|
141
|
-
onClick={resetSelection}
|
|
142
|
-
/>
|
|
143
|
-
)}
|
|
144
|
-
</EuiFlexItem>
|
|
145
|
-
</EuiFlexGroup>
|
|
146
|
-
</EuiFlexItem>
|
|
147
|
-
<EuiFlexItem grow={true}>
|
|
148
|
-
{!tree && <EuiLoadingContent />}
|
|
149
|
-
{tree && <WFOTree data={[tree]} />}
|
|
150
|
-
</EuiFlexItem>
|
|
151
|
-
</EuiFlexGroup>
|
|
152
|
-
</EuiFlexItem>
|
|
153
|
-
<EuiFlexItem grow={true}>
|
|
154
|
-
<div>
|
|
155
|
-
<EuiSearchBar />
|
|
156
|
-
{selectedIds.length === 0 && (
|
|
157
|
-
<EuiCallOut
|
|
158
|
-
style={{
|
|
159
|
-
marginTop: 15,
|
|
160
|
-
minHeight: 600,
|
|
161
|
-
}}
|
|
162
|
-
size="m"
|
|
163
|
-
title={t('noProductBlockSelected')}
|
|
164
|
-
iconType="inspect"
|
|
165
|
-
>
|
|
166
|
-
<p>{t('ctaSelectProductBlock')} </p>
|
|
167
|
-
</EuiCallOut>
|
|
168
|
-
)}
|
|
169
|
-
{selectedIds.length !== 0 &&
|
|
170
|
-
selectedIds
|
|
171
|
-
.reverse()
|
|
172
|
-
.map((id, index) =>
|
|
173
|
-
WFOProductBlock(
|
|
174
|
-
subscriptionData.productBlocks[
|
|
175
|
-
selectedIds[index]
|
|
176
|
-
].resourceTypes,
|
|
177
|
-
id,
|
|
178
|
-
),
|
|
179
|
-
)}
|
|
180
|
-
</div>
|
|
181
|
-
</EuiFlexItem>
|
|
182
|
-
</EuiFlexGroup>
|
|
183
|
-
);
|
|
184
|
-
};
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
|
|
3
|
-
import {
|
|
4
|
-
EuiFlexGrid,
|
|
5
|
-
EuiFlexItem,
|
|
6
|
-
EuiLoadingContent,
|
|
7
|
-
EuiSpacer,
|
|
8
|
-
} from '@elastic/eui';
|
|
9
|
-
// import { useTranslations } from 'next-intl';
|
|
10
|
-
import { SubscriptionContext } from '../../contexts/SubscriptionContext';
|
|
11
|
-
import { WFOSubscriptionBlock } from './WFOSubscriptionBlock';
|
|
12
|
-
import { WFOFixedInputBlock } from './WFOFixedInputBlock';
|
|
13
|
-
|
|
14
|
-
/** TODO: Adding a useTranslations hook here leads to an hooks error. https://github.com/workfloworchestrator/orchestrator-ui/issues/177 */
|
|
15
|
-
|
|
16
|
-
export const WFOSubscriptionGeneral = () => {
|
|
17
|
-
const { subscriptionData, loadingStatus } =
|
|
18
|
-
React.useContext(SubscriptionContext);
|
|
19
|
-
|
|
20
|
-
if (!loadingStatus) {
|
|
21
|
-
return (
|
|
22
|
-
<>
|
|
23
|
-
<EuiSpacer size={'m'} />
|
|
24
|
-
<EuiLoadingContent />
|
|
25
|
-
</>
|
|
26
|
-
);
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
return (
|
|
30
|
-
<EuiFlexGrid direction={'row'}>
|
|
31
|
-
<>
|
|
32
|
-
<EuiFlexItem>
|
|
33
|
-
{WFOSubscriptionBlock(
|
|
34
|
-
'Subscription details',
|
|
35
|
-
subscriptionData,
|
|
36
|
-
)}
|
|
37
|
-
</EuiFlexItem>
|
|
38
|
-
<EuiFlexItem>
|
|
39
|
-
{WFOFixedInputBlock(
|
|
40
|
-
'Fixed Inputs',
|
|
41
|
-
subscriptionData.fixedInputs,
|
|
42
|
-
)}
|
|
43
|
-
</EuiFlexItem>
|
|
44
|
-
<EuiFlexItem>
|
|
45
|
-
{WFOFixedInputBlock(
|
|
46
|
-
'Product Info',
|
|
47
|
-
subscriptionData.product,
|
|
48
|
-
)}
|
|
49
|
-
</EuiFlexItem>
|
|
50
|
-
</>
|
|
51
|
-
</EuiFlexGrid>
|
|
52
|
-
);
|
|
53
|
-
};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export * from './WFOFixedInputBlock';
|
|
2
|
-
export * from './WFOProcessesTimeline';
|
|
3
|
-
export * from './WFOProductBlock';
|
|
4
|
-
export * from './WFOSubscriptionActions';
|
|
5
|
-
export * from './WFOSubscriptionBlock';
|
|
6
|
-
export * from './WFOSubscriptionDetailTree';
|
|
7
|
-
export * from './WFOSubscriptionGeneral';
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { css, SerializedStyles } from '@emotion/react';
|
|
2
|
-
|
|
3
|
-
export const subscriptionTableRowStyle: SerializedStyles = css({
|
|
4
|
-
backgroundColor: '#F1F5F9',
|
|
5
|
-
});
|
|
6
|
-
|
|
7
|
-
export const subscriptionDefinitionCellStyle: SerializedStyles = css({
|
|
8
|
-
width: 350,
|
|
9
|
-
padding: 10,
|
|
10
|
-
borderTopLeftRadius: 8,
|
|
11
|
-
borderBottomLeftRadius: 8,
|
|
12
|
-
});
|
|
13
|
-
|
|
14
|
-
export const subscriptionValueCellStyle: SerializedStyles = css({
|
|
15
|
-
padding: 0,
|
|
16
|
-
borderTopRightRadius: 8,
|
|
17
|
-
borderBottomRightRadius: 8,
|
|
18
|
-
});
|
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { EuiBasicTable, EuiBasicTableColumn, Pagination } from '@elastic/eui';
|
|
3
|
-
import { Criteria } from '@elastic/eui/src/components/basic_table/basic_table';
|
|
4
|
-
import { WFOTableHeaderCell } from './WFOTableHeaderCell';
|
|
5
|
-
|
|
6
|
-
import type {
|
|
7
|
-
WFODataSorting,
|
|
8
|
-
TableColumnKeys,
|
|
9
|
-
WFOTableColumns,
|
|
10
|
-
WFOTableColumnsWithControlColumns,
|
|
11
|
-
} from './utils/columns';
|
|
12
|
-
|
|
13
|
-
export type WFOTableProps<T> = {
|
|
14
|
-
data: T[];
|
|
15
|
-
columns: WFOTableColumnsWithControlColumns<T> | WFOTableColumns<T>;
|
|
16
|
-
hiddenColumns?: TableColumnKeys<T>;
|
|
17
|
-
dataSorting?: WFODataSorting<T>;
|
|
18
|
-
pagination: Pagination;
|
|
19
|
-
isLoading?: boolean;
|
|
20
|
-
onCriteriaChange: (criteria: Criteria<T>) => void;
|
|
21
|
-
onDataSort?: (columnId: keyof T) => void;
|
|
22
|
-
};
|
|
23
|
-
|
|
24
|
-
export const WFOTable = <T,>({
|
|
25
|
-
data,
|
|
26
|
-
columns,
|
|
27
|
-
hiddenColumns,
|
|
28
|
-
dataSorting,
|
|
29
|
-
pagination,
|
|
30
|
-
isLoading,
|
|
31
|
-
onCriteriaChange,
|
|
32
|
-
onDataSort,
|
|
33
|
-
}: WFOTableProps<T>) => (
|
|
34
|
-
<EuiBasicTable
|
|
35
|
-
items={data}
|
|
36
|
-
columns={mapTableColumnsToEuiColumns(
|
|
37
|
-
columns,
|
|
38
|
-
hiddenColumns,
|
|
39
|
-
dataSorting,
|
|
40
|
-
onDataSort,
|
|
41
|
-
)}
|
|
42
|
-
pagination={pagination}
|
|
43
|
-
onChange={onCriteriaChange}
|
|
44
|
-
loading={isLoading}
|
|
45
|
-
/>
|
|
46
|
-
);
|
|
47
|
-
|
|
48
|
-
function mapTableColumnsToEuiColumns<T>(
|
|
49
|
-
columns: WFOTableColumns<T>,
|
|
50
|
-
hiddenColumns?: TableColumnKeys<T>,
|
|
51
|
-
dataSorting?: WFODataSorting<T>,
|
|
52
|
-
onDataSort?: (columnId: keyof T) => void,
|
|
53
|
-
): EuiBasicTableColumn<T>[] {
|
|
54
|
-
function isVisibleColumn(columnKey: string) {
|
|
55
|
-
return !hiddenColumns?.includes(columnKey as keyof T);
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
function mapToEuiColumn(colKey: string): EuiBasicTableColumn<T> {
|
|
59
|
-
const typedColumnKey = colKey as keyof T;
|
|
60
|
-
const column = columns[typedColumnKey];
|
|
61
|
-
const { name } = column;
|
|
62
|
-
|
|
63
|
-
const sortDirection =
|
|
64
|
-
dataSorting?.field === colKey ? dataSorting.sortOrder : undefined;
|
|
65
|
-
|
|
66
|
-
const handleClick = () => onDataSort?.(typedColumnKey);
|
|
67
|
-
|
|
68
|
-
return {
|
|
69
|
-
...column,
|
|
70
|
-
field: typedColumnKey,
|
|
71
|
-
name: name && (
|
|
72
|
-
<WFOTableHeaderCell
|
|
73
|
-
sortDirection={sortDirection}
|
|
74
|
-
onClick={handleClick}
|
|
75
|
-
>
|
|
76
|
-
{name}
|
|
77
|
-
</WFOTableHeaderCell>
|
|
78
|
-
),
|
|
79
|
-
truncateText: true,
|
|
80
|
-
textOnly: true,
|
|
81
|
-
};
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
return Object.keys(columns).filter(isVisibleColumn).map(mapToEuiColumn);
|
|
85
|
-
}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import React, { FC, ReactNode } from 'react';
|
|
2
|
-
|
|
3
|
-
import { SortOrder } from '../../types';
|
|
4
|
-
import { WFOSortDirectionIcon } from './WFOSortDirectionIcon';
|
|
5
|
-
|
|
6
|
-
export type WFOTableHeaderCellProps = {
|
|
7
|
-
sortDirection?: SortOrder;
|
|
8
|
-
onClick?: () => void;
|
|
9
|
-
children: ReactNode;
|
|
10
|
-
};
|
|
11
|
-
|
|
12
|
-
export const WFOTableHeaderCell: FC<WFOTableHeaderCellProps> = ({
|
|
13
|
-
sortDirection,
|
|
14
|
-
children,
|
|
15
|
-
onClick,
|
|
16
|
-
}) => (
|
|
17
|
-
<div
|
|
18
|
-
css={{
|
|
19
|
-
display: 'flex',
|
|
20
|
-
alignItems: 'center',
|
|
21
|
-
cursor: 'pointer',
|
|
22
|
-
}}
|
|
23
|
-
onClick={onClick}
|
|
24
|
-
>
|
|
25
|
-
<div>{children}</div>
|
|
26
|
-
{sortDirection ? (
|
|
27
|
-
<WFOSortDirectionIcon sortDirection={sortDirection} />
|
|
28
|
-
) : null}
|
|
29
|
-
</div>
|
|
30
|
-
);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './WFOTableSettingsModal';
|