@orchestrator-ui/orchestrator-ui-components 0.2.4 → 0.2.5
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 +6 -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} +7 -5
- package/src/components/{WFOStartPage/WFOMultiListSection.stories.tsx → WfoStartPage/WfoMultiListSection.stories.tsx} +5 -4
- package/src/components/{WFOStartPage/WFOMultiListSection.tsx → WfoStartPage/WfoMultiListSection.tsx} +7 -5
- 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} +4 -2
- 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 +14 -0
- package/tsconfig.json +4 -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
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
import React, { useState } from 'react';
|
|
2
|
+
|
|
3
|
+
import { useTranslations } from 'next-intl';
|
|
4
|
+
|
|
5
|
+
import {
|
|
6
|
+
EuiButtonIcon,
|
|
7
|
+
EuiCallOut,
|
|
8
|
+
EuiFlexGroup,
|
|
9
|
+
EuiFlexItem,
|
|
10
|
+
EuiSearchBar,
|
|
11
|
+
EuiText,
|
|
12
|
+
} from '@elastic/eui';
|
|
13
|
+
|
|
14
|
+
import { TreeContext, TreeContextType } from '../../contexts';
|
|
15
|
+
import { ProductBlockInstance, TreeBlock, WfoTreeNodeMap } from '../../types';
|
|
16
|
+
import { getTokenName } from '../../utils/getTokenName';
|
|
17
|
+
import { WfoLoading } from '../WfoLoading';
|
|
18
|
+
import { WfoTree } from '../WfoTree';
|
|
19
|
+
import { getWfoTreeNodeDepth } from '../WfoTree';
|
|
20
|
+
import { WfoSubscriptionProductBlock } from './WfoSubscriptionProductBlock';
|
|
21
|
+
import {
|
|
22
|
+
getFieldFromProductBlockInstanceValues,
|
|
23
|
+
getProductBlockTitle,
|
|
24
|
+
} from './utils';
|
|
25
|
+
|
|
26
|
+
interface WfoSubscriptionDetailTreeProps {
|
|
27
|
+
productBlockInstances: ProductBlockInstance[];
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export const WfoSubscriptionDetailTree = ({
|
|
31
|
+
productBlockInstances,
|
|
32
|
+
}: WfoSubscriptionDetailTreeProps) => {
|
|
33
|
+
const t = useTranslations('subscriptions.detail');
|
|
34
|
+
const [, setSelectedTreeNode] = useState(-1);
|
|
35
|
+
|
|
36
|
+
const { selectedIds, resetSelection } = React.useContext(
|
|
37
|
+
TreeContext,
|
|
38
|
+
) as TreeContextType;
|
|
39
|
+
|
|
40
|
+
let tree: TreeBlock | null = null;
|
|
41
|
+
const depthList: number[] = [];
|
|
42
|
+
|
|
43
|
+
const idToNodeMap: WfoTreeNodeMap = {}; // Keeps track of nodes using id as key, for fast lookup
|
|
44
|
+
|
|
45
|
+
productBlockInstances.forEach((productBlockInstance) => {
|
|
46
|
+
const shallowCopy: TreeBlock = {
|
|
47
|
+
...productBlockInstance,
|
|
48
|
+
icon: '',
|
|
49
|
+
label: '',
|
|
50
|
+
callback: () => {},
|
|
51
|
+
children: [],
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
// Does this node have a parent?
|
|
55
|
+
if (shallowCopy.parent === null) {
|
|
56
|
+
// Doesn't look like it, so this node is the root of the tree
|
|
57
|
+
shallowCopy.label = getFieldFromProductBlockInstanceValues(
|
|
58
|
+
shallowCopy.productBlockInstanceValues,
|
|
59
|
+
'name',
|
|
60
|
+
);
|
|
61
|
+
shallowCopy.callback = () => setSelectedTreeNode(shallowCopy.id);
|
|
62
|
+
depthList.push(0); // First id is on root
|
|
63
|
+
tree = shallowCopy;
|
|
64
|
+
} else {
|
|
65
|
+
// This node has a parent, so let's look it up using the id
|
|
66
|
+
depthList.push(getWfoTreeNodeDepth(shallowCopy, idToNodeMap));
|
|
67
|
+
const parentNode = idToNodeMap[shallowCopy.parent];
|
|
68
|
+
shallowCopy.label = getProductBlockTitle(
|
|
69
|
+
shallowCopy.productBlockInstanceValues,
|
|
70
|
+
);
|
|
71
|
+
shallowCopy.callback = () => setSelectedTreeNode(shallowCopy.id);
|
|
72
|
+
|
|
73
|
+
if (
|
|
74
|
+
!productBlockInstances.find((i) => i.parent === shallowCopy.id)
|
|
75
|
+
) {
|
|
76
|
+
shallowCopy.icon = getTokenName(shallowCopy.label);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
// Let's add the current node as a child of the parent node.
|
|
80
|
+
if (parentNode.children && Array.isArray(parentNode.children)) {
|
|
81
|
+
parentNode.children.push(shallowCopy);
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
// Add an entry for this node to the map so that any future children can look up the parent
|
|
86
|
+
idToNodeMap[shallowCopy.id] = shallowCopy;
|
|
87
|
+
});
|
|
88
|
+
|
|
89
|
+
if (!tree) return null;
|
|
90
|
+
|
|
91
|
+
return (
|
|
92
|
+
<EuiFlexGroup style={{ marginTop: 15 }}>
|
|
93
|
+
<EuiFlexItem style={{ maxWidth: 450, width: 450 }}>
|
|
94
|
+
<EuiFlexGroup direction={'column'}>
|
|
95
|
+
<EuiFlexItem grow={false}>
|
|
96
|
+
<EuiFlexGroup>
|
|
97
|
+
<EuiFlexItem grow={false}>
|
|
98
|
+
<EuiText>
|
|
99
|
+
<h3>{t('productBlocks')}</h3>
|
|
100
|
+
</EuiText>
|
|
101
|
+
</EuiFlexItem>
|
|
102
|
+
<EuiFlexItem grow={true}>
|
|
103
|
+
{selectedIds.length > 0 && (
|
|
104
|
+
<EuiButtonIcon
|
|
105
|
+
iconType="error"
|
|
106
|
+
onClick={resetSelection}
|
|
107
|
+
/>
|
|
108
|
+
)}
|
|
109
|
+
</EuiFlexItem>
|
|
110
|
+
</EuiFlexGroup>
|
|
111
|
+
</EuiFlexItem>
|
|
112
|
+
<EuiFlexItem grow={true}>
|
|
113
|
+
{!tree && <WfoLoading />}
|
|
114
|
+
{tree && (
|
|
115
|
+
<WfoTree data={[tree]} depthList={depthList} />
|
|
116
|
+
)}
|
|
117
|
+
</EuiFlexItem>
|
|
118
|
+
</EuiFlexGroup>
|
|
119
|
+
</EuiFlexItem>
|
|
120
|
+
<EuiFlexItem grow={true}>
|
|
121
|
+
<div>
|
|
122
|
+
<EuiSearchBar />
|
|
123
|
+
{selectedIds.length === 0 && (
|
|
124
|
+
<EuiCallOut
|
|
125
|
+
style={{
|
|
126
|
+
marginTop: 15,
|
|
127
|
+
minHeight: 600,
|
|
128
|
+
}}
|
|
129
|
+
size="m"
|
|
130
|
+
title={t('noProductBlockSelected')}
|
|
131
|
+
iconType="inspect"
|
|
132
|
+
>
|
|
133
|
+
<p>{t('ctaSelectProductBlock')} </p>
|
|
134
|
+
</EuiCallOut>
|
|
135
|
+
)}
|
|
136
|
+
{selectedIds.length !== 0 &&
|
|
137
|
+
selectedIds.map((id, index) => {
|
|
138
|
+
const block =
|
|
139
|
+
productBlockInstances[selectedIds[index]];
|
|
140
|
+
return (
|
|
141
|
+
<WfoSubscriptionProductBlock
|
|
142
|
+
key={index}
|
|
143
|
+
ownerSubscriptionId={
|
|
144
|
+
block.ownerSubscriptionId
|
|
145
|
+
}
|
|
146
|
+
subscriptionInstanceId={
|
|
147
|
+
block.subscriptionInstanceId
|
|
148
|
+
}
|
|
149
|
+
productBlockInstanceValues={
|
|
150
|
+
block.productBlockInstanceValues
|
|
151
|
+
}
|
|
152
|
+
inUseByRelations={block.inUseByRelations}
|
|
153
|
+
id={id}
|
|
154
|
+
/>
|
|
155
|
+
);
|
|
156
|
+
})}
|
|
157
|
+
</div>
|
|
158
|
+
</EuiFlexItem>
|
|
159
|
+
</EuiFlexGroup>
|
|
160
|
+
);
|
|
161
|
+
};
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
import { useTranslations } from 'next-intl';
|
|
4
|
+
|
|
5
|
+
import { EuiFlexGrid, EuiFlexItem } from '@elastic/eui';
|
|
6
|
+
|
|
7
|
+
import { SubscriptionDetail } from '../../types';
|
|
8
|
+
import {
|
|
9
|
+
WfoProductStatusBadge,
|
|
10
|
+
WfoSubscriptionStatusBadge,
|
|
11
|
+
} from '../WfoBadges';
|
|
12
|
+
import { WfoInsyncIcon } from '../WfoInsyncIcon/WfoInsyncIcon';
|
|
13
|
+
import { WfoKeyValueTableDataType } from '../WfoKeyValueTable/WfoKeyValueTable';
|
|
14
|
+
import { SubscriptionKeyValueBlock } from './SubscriptionKeyValueBlock';
|
|
15
|
+
|
|
16
|
+
interface WfoSubscriptionGeneralProps {
|
|
17
|
+
subscriptionDetail: SubscriptionDetail;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export const WfoSubscriptionGeneral = ({
|
|
21
|
+
subscriptionDetail,
|
|
22
|
+
}: WfoSubscriptionGeneralProps) => {
|
|
23
|
+
const t = useTranslations('subscriptions.detail');
|
|
24
|
+
|
|
25
|
+
const getSubscriptionDetailBlockData = (): WfoKeyValueTableDataType[] => {
|
|
26
|
+
return [
|
|
27
|
+
{
|
|
28
|
+
key: t('subscriptionId'),
|
|
29
|
+
value: subscriptionDetail.subscriptionId,
|
|
30
|
+
textToCopy: subscriptionDetail.subscriptionId,
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
key: t('productName'),
|
|
34
|
+
value: subscriptionDetail.product.name,
|
|
35
|
+
},
|
|
36
|
+
|
|
37
|
+
{
|
|
38
|
+
key: t('description'),
|
|
39
|
+
value: subscriptionDetail.description,
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
key: t('startDate'),
|
|
43
|
+
value: subscriptionDetail.startDate,
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
key: t('endDate'),
|
|
47
|
+
value: subscriptionDetail.endDate,
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
key: t('status'),
|
|
51
|
+
value: (
|
|
52
|
+
<WfoSubscriptionStatusBadge
|
|
53
|
+
status={subscriptionDetail.status}
|
|
54
|
+
/>
|
|
55
|
+
),
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
key: t('insync'),
|
|
59
|
+
value: <WfoInsyncIcon inSync={subscriptionDetail.insync} />,
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
key: t('customer'),
|
|
63
|
+
value:
|
|
64
|
+
subscriptionDetail && subscriptionDetail.customer
|
|
65
|
+
? `${subscriptionDetail.customer?.fullname}`
|
|
66
|
+
: '-',
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
key: t('customerUuid'),
|
|
70
|
+
value:
|
|
71
|
+
subscriptionDetail && subscriptionDetail.customer
|
|
72
|
+
? `${subscriptionDetail.customer?.identifier}`
|
|
73
|
+
: '-',
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
key: t('note'),
|
|
77
|
+
value: (subscriptionDetail && subscriptionDetail.note) || '-',
|
|
78
|
+
},
|
|
79
|
+
];
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
const getFixedInputBlockData = (): WfoKeyValueTableDataType[] => {
|
|
83
|
+
return subscriptionDetail.fixedInputs.map((fixedInput) => ({
|
|
84
|
+
key: fixedInput.field,
|
|
85
|
+
value: fixedInput.value,
|
|
86
|
+
}));
|
|
87
|
+
};
|
|
88
|
+
|
|
89
|
+
const getProductInfoBlockData = (): WfoKeyValueTableDataType[] => {
|
|
90
|
+
const product = subscriptionDetail.product;
|
|
91
|
+
return [
|
|
92
|
+
{
|
|
93
|
+
key: t('name'),
|
|
94
|
+
value: product.name,
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
key: t('description'),
|
|
98
|
+
value: product.description,
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
key: t('productType'),
|
|
102
|
+
value: product.productType,
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
key: t('tag'),
|
|
106
|
+
value: product.tag,
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
key: t('status'),
|
|
110
|
+
value: <WfoProductStatusBadge status={product.status} />,
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
key: t('created'),
|
|
114
|
+
value: product.createdAt,
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
key: t('endDate'),
|
|
118
|
+
value: product.endDate,
|
|
119
|
+
},
|
|
120
|
+
];
|
|
121
|
+
};
|
|
122
|
+
|
|
123
|
+
return (
|
|
124
|
+
<EuiFlexGrid direction={'row'}>
|
|
125
|
+
<>
|
|
126
|
+
<EuiFlexItem>
|
|
127
|
+
<SubscriptionKeyValueBlock
|
|
128
|
+
title={t('blockTitleSubscriptionDetails')}
|
|
129
|
+
keyValues={getSubscriptionDetailBlockData()}
|
|
130
|
+
/>
|
|
131
|
+
</EuiFlexItem>
|
|
132
|
+
<EuiFlexItem>
|
|
133
|
+
<SubscriptionKeyValueBlock
|
|
134
|
+
title={t('blockTitleFixedInputs')}
|
|
135
|
+
keyValues={getFixedInputBlockData()}
|
|
136
|
+
/>
|
|
137
|
+
</EuiFlexItem>
|
|
138
|
+
<EuiFlexItem>
|
|
139
|
+
<SubscriptionKeyValueBlock
|
|
140
|
+
title={t('blockTitleProductInfo')}
|
|
141
|
+
keyValues={getProductInfoBlockData()}
|
|
142
|
+
/>
|
|
143
|
+
</EuiFlexItem>
|
|
144
|
+
</>
|
|
145
|
+
</EuiFlexGrid>
|
|
146
|
+
);
|
|
147
|
+
};
|
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
import React, { useState } from 'react';
|
|
2
|
+
|
|
3
|
+
import { useTranslations } from 'next-intl';
|
|
4
|
+
import { useRouter } from 'next/router';
|
|
5
|
+
|
|
6
|
+
import {
|
|
7
|
+
EuiBadge,
|
|
8
|
+
EuiButtonEmpty,
|
|
9
|
+
EuiCodeBlock,
|
|
10
|
+
EuiFlexGroup,
|
|
11
|
+
EuiFlexItem,
|
|
12
|
+
EuiIcon,
|
|
13
|
+
EuiPanel,
|
|
14
|
+
EuiSpacer,
|
|
15
|
+
EuiText,
|
|
16
|
+
} from '@elastic/eui';
|
|
17
|
+
|
|
18
|
+
import { useOrchestratorTheme, useWithOrchestratorTheme } from '../../hooks';
|
|
19
|
+
import { FieldValue, InUseByRelation } from '../../types';
|
|
20
|
+
import { camelToHuman } from '../../utils';
|
|
21
|
+
import { PATH_SUBSCRIPTIONS } from '../WfoPageTemplate';
|
|
22
|
+
import { getStyles } from './styles';
|
|
23
|
+
import { getProductBlockTitle } from './utils';
|
|
24
|
+
|
|
25
|
+
interface WfoSubscriptionProductBlockProps {
|
|
26
|
+
ownerSubscriptionId: string;
|
|
27
|
+
subscriptionInstanceId: string;
|
|
28
|
+
productBlockInstanceValues: FieldValue[];
|
|
29
|
+
inUseByRelations: InUseByRelation[];
|
|
30
|
+
id: number;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export const HIDDEN_KEYS = ['title', 'name', 'label'];
|
|
34
|
+
|
|
35
|
+
export const WfoSubscriptionProductBlock = ({
|
|
36
|
+
ownerSubscriptionId,
|
|
37
|
+
subscriptionInstanceId,
|
|
38
|
+
productBlockInstanceValues,
|
|
39
|
+
inUseByRelations,
|
|
40
|
+
}: WfoSubscriptionProductBlockProps) => {
|
|
41
|
+
const router = useRouter();
|
|
42
|
+
const subscriptionId = router.query['subscriptionId'];
|
|
43
|
+
|
|
44
|
+
const t = useTranslations('subscriptions.detail');
|
|
45
|
+
const { theme } = useOrchestratorTheme();
|
|
46
|
+
const {
|
|
47
|
+
productBlockIconStyle,
|
|
48
|
+
productBlockPanelStyle,
|
|
49
|
+
productBlockLeftColStyle,
|
|
50
|
+
productBlockFirstLeftColStyle,
|
|
51
|
+
productBlockRightColStyle,
|
|
52
|
+
productBlockFirstRightColStyle,
|
|
53
|
+
} = useWithOrchestratorTheme(getStyles);
|
|
54
|
+
|
|
55
|
+
const [hideDetails, setHideDetails] = useState(true);
|
|
56
|
+
|
|
57
|
+
const isFirstBlock = (index: number): boolean => {
|
|
58
|
+
if (!hideDetails) return false;
|
|
59
|
+
return index === 0;
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
return (
|
|
63
|
+
<>
|
|
64
|
+
<EuiSpacer size={'m'}></EuiSpacer>
|
|
65
|
+
<EuiPanel
|
|
66
|
+
color="transparent"
|
|
67
|
+
hasShadow={false}
|
|
68
|
+
css={productBlockPanelStyle}
|
|
69
|
+
>
|
|
70
|
+
<EuiFlexGroup>
|
|
71
|
+
<EuiFlexItem grow={false}>
|
|
72
|
+
<div css={productBlockIconStyle}>
|
|
73
|
+
<EuiIcon
|
|
74
|
+
type="filebeatApp"
|
|
75
|
+
color={theme.colors.primary}
|
|
76
|
+
/>
|
|
77
|
+
</div>
|
|
78
|
+
</EuiFlexItem>
|
|
79
|
+
<EuiFlexItem>
|
|
80
|
+
<EuiText grow={true}>
|
|
81
|
+
<h3>
|
|
82
|
+
{getProductBlockTitle(
|
|
83
|
+
productBlockInstanceValues,
|
|
84
|
+
)}
|
|
85
|
+
</h3>
|
|
86
|
+
</EuiText>
|
|
87
|
+
<EuiText>{`${t(
|
|
88
|
+
'subscriptionInstanceId',
|
|
89
|
+
)}: ${subscriptionInstanceId}`}</EuiText>
|
|
90
|
+
</EuiFlexItem>
|
|
91
|
+
<EuiFlexItem grow={false}>
|
|
92
|
+
<EuiButtonEmpty
|
|
93
|
+
aria-label={
|
|
94
|
+
hideDetails
|
|
95
|
+
? t('showDetails')
|
|
96
|
+
: t('hideDetails')
|
|
97
|
+
}
|
|
98
|
+
size={'m'}
|
|
99
|
+
onClick={() => setHideDetails(!hideDetails)}
|
|
100
|
+
>
|
|
101
|
+
{hideDetails ? t('showDetails') : t('hideDetails')}
|
|
102
|
+
</EuiButtonEmpty>
|
|
103
|
+
</EuiFlexItem>
|
|
104
|
+
</EuiFlexGroup>
|
|
105
|
+
|
|
106
|
+
<EuiSpacer size={'m'}></EuiSpacer>
|
|
107
|
+
{
|
|
108
|
+
<table width="100%">
|
|
109
|
+
{!hideDetails && (
|
|
110
|
+
<>
|
|
111
|
+
<tr key={-2}>
|
|
112
|
+
<td
|
|
113
|
+
valign={'top'}
|
|
114
|
+
css={productBlockFirstLeftColStyle}
|
|
115
|
+
>
|
|
116
|
+
<b>{t('ownerSubscriptionId')}</b>
|
|
117
|
+
</td>
|
|
118
|
+
<td
|
|
119
|
+
valign={'top'}
|
|
120
|
+
css={productBlockFirstRightColStyle}
|
|
121
|
+
>
|
|
122
|
+
{subscriptionId ===
|
|
123
|
+
ownerSubscriptionId ? (
|
|
124
|
+
<>
|
|
125
|
+
{subscriptionId}
|
|
126
|
+
<EuiBadge>{t('self')}</EuiBadge>
|
|
127
|
+
</>
|
|
128
|
+
) : (
|
|
129
|
+
<a
|
|
130
|
+
href={`${PATH_SUBSCRIPTIONS}/${ownerSubscriptionId}`}
|
|
131
|
+
>
|
|
132
|
+
{ownerSubscriptionId}
|
|
133
|
+
</a>
|
|
134
|
+
)}
|
|
135
|
+
</td>
|
|
136
|
+
</tr>
|
|
137
|
+
<tr key={-1}>
|
|
138
|
+
<td
|
|
139
|
+
valign={'top'}
|
|
140
|
+
css={productBlockLeftColStyle}
|
|
141
|
+
>
|
|
142
|
+
<b>{t('inUseByRelations')}</b>
|
|
143
|
+
</td>
|
|
144
|
+
<td
|
|
145
|
+
valign={'top'}
|
|
146
|
+
css={productBlockRightColStyle}
|
|
147
|
+
>
|
|
148
|
+
<EuiCodeBlock language="json">
|
|
149
|
+
{JSON.stringify(
|
|
150
|
+
inUseByRelations,
|
|
151
|
+
null,
|
|
152
|
+
4,
|
|
153
|
+
)}
|
|
154
|
+
</EuiCodeBlock>
|
|
155
|
+
</td>
|
|
156
|
+
</tr>
|
|
157
|
+
</>
|
|
158
|
+
)}
|
|
159
|
+
|
|
160
|
+
{productBlockInstanceValues
|
|
161
|
+
.filter(
|
|
162
|
+
(productBlockInstanceValue) =>
|
|
163
|
+
!HIDDEN_KEYS.includes(
|
|
164
|
+
productBlockInstanceValue.field,
|
|
165
|
+
),
|
|
166
|
+
)
|
|
167
|
+
.map((productBlockInstanceValue, index) => (
|
|
168
|
+
<tr key={index}>
|
|
169
|
+
<td
|
|
170
|
+
valign={'top'}
|
|
171
|
+
css={
|
|
172
|
+
isFirstBlock(index)
|
|
173
|
+
? productBlockFirstLeftColStyle
|
|
174
|
+
: productBlockLeftColStyle
|
|
175
|
+
}
|
|
176
|
+
>
|
|
177
|
+
<b>
|
|
178
|
+
{camelToHuman(
|
|
179
|
+
productBlockInstanceValue.field,
|
|
180
|
+
)}
|
|
181
|
+
</b>
|
|
182
|
+
</td>
|
|
183
|
+
<td
|
|
184
|
+
valign={'top'}
|
|
185
|
+
css={
|
|
186
|
+
isFirstBlock(index)
|
|
187
|
+
? productBlockFirstRightColStyle
|
|
188
|
+
: productBlockRightColStyle
|
|
189
|
+
}
|
|
190
|
+
>
|
|
191
|
+
{typeof productBlockInstanceValue.value ===
|
|
192
|
+
'boolean' ? (
|
|
193
|
+
<EuiBadge>
|
|
194
|
+
{productBlockInstanceValue.value.toString()}
|
|
195
|
+
</EuiBadge>
|
|
196
|
+
) : (
|
|
197
|
+
productBlockInstanceValue.value
|
|
198
|
+
)}
|
|
199
|
+
</td>
|
|
200
|
+
</tr>
|
|
201
|
+
))}
|
|
202
|
+
</table>
|
|
203
|
+
}
|
|
204
|
+
</EuiPanel>
|
|
205
|
+
</>
|
|
206
|
+
);
|
|
207
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from './utils';
|
|
2
|
+
export * from './WfoProcessesTimeline';
|
|
3
|
+
export * from './WfoSubscriptionProductBlock';
|
|
4
|
+
export * from './WfoSubscriptionActions';
|
|
5
|
+
export * from './SubscriptionKeyValueBlock';
|
|
6
|
+
export * from './WfoSubscriptionDetailTree';
|
|
7
|
+
export * from './WfoSubscriptionGeneral';
|
|
8
|
+
export * from './WfoSubscription';
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import { EuiThemeComputed } from '@elastic/eui/src/services/theme/types';
|
|
2
|
+
import { css } from '@emotion/react';
|
|
3
|
+
|
|
4
|
+
export const getStyles = (theme: EuiThemeComputed) => {
|
|
5
|
+
const contentCellStyle = {
|
|
6
|
+
padding: (theme.base / 4) * 3,
|
|
7
|
+
borderBottom: theme.border.thin,
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
const headerCellStyle = css({
|
|
11
|
+
...contentCellStyle,
|
|
12
|
+
paddingLeft: 0,
|
|
13
|
+
width: theme.base * 16,
|
|
14
|
+
fontWeight: theme.font.weight.medium,
|
|
15
|
+
});
|
|
16
|
+
|
|
17
|
+
const emptyCellStyle = css({
|
|
18
|
+
width: theme.base,
|
|
19
|
+
});
|
|
20
|
+
|
|
21
|
+
const tableStyle = css({
|
|
22
|
+
backgroundColor: theme.colors.lightestShade,
|
|
23
|
+
width: '100%',
|
|
24
|
+
borderRadius: theme.border.radius.medium,
|
|
25
|
+
marginTop: theme.base / 2,
|
|
26
|
+
});
|
|
27
|
+
|
|
28
|
+
const timeLineStyle = css({
|
|
29
|
+
paddingLeft: theme.base / 2,
|
|
30
|
+
});
|
|
31
|
+
const workflowTargetStyle = css({ fontWeight: theme.font.weight.bold });
|
|
32
|
+
|
|
33
|
+
const lastContentCellStyle = css({
|
|
34
|
+
...contentCellStyle,
|
|
35
|
+
border: 0,
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
const lastHeaderCellStyle = css({
|
|
39
|
+
padding: theme.base,
|
|
40
|
+
paddingLeft: 0,
|
|
41
|
+
width: 250,
|
|
42
|
+
fontWeight: theme.font.weight.medium,
|
|
43
|
+
border: 0,
|
|
44
|
+
});
|
|
45
|
+
|
|
46
|
+
const productBlockIconStyle = css({
|
|
47
|
+
width: 45,
|
|
48
|
+
height: 45,
|
|
49
|
+
backgroundColor: 'rgb(193,221,241,1)',
|
|
50
|
+
paddingTop: 13,
|
|
51
|
+
paddingLeft: 15,
|
|
52
|
+
borderRadius: 7,
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
const productBlockPanelStyle = css({
|
|
56
|
+
backgroundColor: theme.colors.lightestShade,
|
|
57
|
+
});
|
|
58
|
+
|
|
59
|
+
const productBlockLeftCol = {
|
|
60
|
+
width: 250,
|
|
61
|
+
paddingLeft: 0,
|
|
62
|
+
paddingTop: 10,
|
|
63
|
+
paddingBottom: 10,
|
|
64
|
+
borderBottom: `solid 1px ${theme.colors.lightShade}`,
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
const productBlockLeftColStyle = css({ ...productBlockLeftCol });
|
|
68
|
+
|
|
69
|
+
const productBlockFirstLeftColStyle = css({
|
|
70
|
+
borderTop: `solid 1px ${theme.colors.lightShade}`,
|
|
71
|
+
...productBlockLeftCol,
|
|
72
|
+
});
|
|
73
|
+
|
|
74
|
+
const productBlockRightCol = {
|
|
75
|
+
paddingLeft: 0,
|
|
76
|
+
paddingTop: 10,
|
|
77
|
+
paddingBottom: 10,
|
|
78
|
+
borderBottom: `solid 1px ${theme.colors.lightShade}`,
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
const productBlockRightColStyle = css({ ...productBlockRightCol });
|
|
82
|
+
|
|
83
|
+
const productBlockFirstRightColStyle = css({
|
|
84
|
+
borderTop: `solid 1px ${theme.colors.lightShade}`,
|
|
85
|
+
...productBlockRightCol,
|
|
86
|
+
});
|
|
87
|
+
|
|
88
|
+
return {
|
|
89
|
+
contentCellStyle,
|
|
90
|
+
headerCellStyle,
|
|
91
|
+
tableStyle,
|
|
92
|
+
timeLineStyle,
|
|
93
|
+
workflowTargetStyle,
|
|
94
|
+
emptyCellStyle,
|
|
95
|
+
lastContentCellStyle,
|
|
96
|
+
lastHeaderCellStyle,
|
|
97
|
+
productBlockIconStyle,
|
|
98
|
+
productBlockPanelStyle,
|
|
99
|
+
productBlockLeftColStyle,
|
|
100
|
+
productBlockFirstLeftColStyle,
|
|
101
|
+
productBlockRightColStyle,
|
|
102
|
+
productBlockFirstRightColStyle,
|
|
103
|
+
};
|
|
104
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './utils';
|