@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,75 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2019-2023 SURF.
|
|
3
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
* you may not use this file except in compliance with the License.
|
|
5
|
+
* You may obtain a copy of the License at
|
|
6
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
7
|
+
*
|
|
8
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
9
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
10
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
11
|
+
* See the License for the specific language governing permissions and
|
|
12
|
+
* limitations under the License.
|
|
13
|
+
*
|
|
14
|
+
*/
|
|
15
|
+
import React from 'react';
|
|
16
|
+
|
|
17
|
+
import { connectField, filterDOMProps } from 'uniforms';
|
|
18
|
+
|
|
19
|
+
import { EuiFieldNumber, EuiFormRow, EuiText } from '@elastic/eui';
|
|
20
|
+
|
|
21
|
+
import { FieldProps } from '../../../types/forms';
|
|
22
|
+
|
|
23
|
+
export type NumFieldProps = FieldProps<
|
|
24
|
+
number,
|
|
25
|
+
{ max?: number; min?: number; precision?: number; step?: number }
|
|
26
|
+
// Todo: not sure what this did
|
|
27
|
+
// NumericInput
|
|
28
|
+
>;
|
|
29
|
+
|
|
30
|
+
function Num({
|
|
31
|
+
disabled,
|
|
32
|
+
id,
|
|
33
|
+
label,
|
|
34
|
+
description,
|
|
35
|
+
max,
|
|
36
|
+
min,
|
|
37
|
+
name,
|
|
38
|
+
onChange,
|
|
39
|
+
placeholder,
|
|
40
|
+
readOnly,
|
|
41
|
+
step,
|
|
42
|
+
value,
|
|
43
|
+
error,
|
|
44
|
+
showInlineError,
|
|
45
|
+
errorMessage,
|
|
46
|
+
...props
|
|
47
|
+
}: NumFieldProps) {
|
|
48
|
+
return (
|
|
49
|
+
<div {...filterDOMProps(props)}>
|
|
50
|
+
<EuiFormRow
|
|
51
|
+
label={label}
|
|
52
|
+
labelAppend={<EuiText size="m">{description}</EuiText>}
|
|
53
|
+
error={showInlineError ? errorMessage : false}
|
|
54
|
+
isInvalid={error}
|
|
55
|
+
id={id}
|
|
56
|
+
fullWidth
|
|
57
|
+
>
|
|
58
|
+
<EuiFieldNumber
|
|
59
|
+
name={name}
|
|
60
|
+
isInvalid={error}
|
|
61
|
+
placeholder={placeholder}
|
|
62
|
+
readOnly={readOnly}
|
|
63
|
+
onChange={(event) => onChange(parseInt(event.target.value))}
|
|
64
|
+
min={min}
|
|
65
|
+
max={max}
|
|
66
|
+
step={step ?? 1}
|
|
67
|
+
value={value ?? ''}
|
|
68
|
+
disabled={disabled}
|
|
69
|
+
/>
|
|
70
|
+
</EuiFormRow>
|
|
71
|
+
</div>
|
|
72
|
+
);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export const NumField = connectField(Num, { kind: 'leaf' });
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2019-2023 SURF.
|
|
3
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
* you may not use this file except in compliance with the License.
|
|
5
|
+
* You may obtain a copy of the License at
|
|
6
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
7
|
+
*
|
|
8
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
9
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
10
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
11
|
+
* See the License for the specific language governing permissions and
|
|
12
|
+
* limitations under the License.
|
|
13
|
+
*
|
|
14
|
+
*/
|
|
15
|
+
import React from 'react';
|
|
16
|
+
|
|
17
|
+
import { useTranslations } from 'next-intl';
|
|
18
|
+
import { connectField, filterDOMProps, useField } from 'uniforms';
|
|
19
|
+
import { AutoField } from 'uniforms-unstyled';
|
|
20
|
+
|
|
21
|
+
import { EuiDescribedFormGroup, EuiFlexItem, EuiFormRow } from '@elastic/eui';
|
|
22
|
+
|
|
23
|
+
import { BoolField } from './BoolField';
|
|
24
|
+
import { FieldProps } from './types';
|
|
25
|
+
|
|
26
|
+
export type OptGroupFieldProps = FieldProps<
|
|
27
|
+
null,
|
|
28
|
+
{ fields?: unknown[]; itemProps?: object }
|
|
29
|
+
>;
|
|
30
|
+
|
|
31
|
+
filterDOMProps.register('properties');
|
|
32
|
+
|
|
33
|
+
function OptGroup({
|
|
34
|
+
fields,
|
|
35
|
+
itemProps,
|
|
36
|
+
name,
|
|
37
|
+
readOnly,
|
|
38
|
+
className = '',
|
|
39
|
+
...props
|
|
40
|
+
}: OptGroupFieldProps) {
|
|
41
|
+
const t = useTranslations('pydanticForms.fields');
|
|
42
|
+
const enabled = useField('enabled', {})[0].value;
|
|
43
|
+
|
|
44
|
+
return (
|
|
45
|
+
<EuiDescribedFormGroup
|
|
46
|
+
{...filterDOMProps(props)}
|
|
47
|
+
title={<span>{t(`${name}.title`)}</span>}
|
|
48
|
+
description={t(`${name}.description`)}
|
|
49
|
+
className={`${className} optgroup-field`}
|
|
50
|
+
>
|
|
51
|
+
<>
|
|
52
|
+
<EuiFlexItem>
|
|
53
|
+
<EuiFormRow
|
|
54
|
+
error={false}
|
|
55
|
+
isInvalid={false}
|
|
56
|
+
id={name} // Not sure if this is always unique...
|
|
57
|
+
>
|
|
58
|
+
<BoolField name="enabled" readOnly={readOnly} />
|
|
59
|
+
</EuiFormRow>
|
|
60
|
+
</EuiFlexItem>
|
|
61
|
+
{enabled &&
|
|
62
|
+
fields
|
|
63
|
+
?.filter((field) => field !== 'enabled')
|
|
64
|
+
.map((field) => (
|
|
65
|
+
<EuiFlexItem key={field}>
|
|
66
|
+
<AutoField name={field} {...itemProps} />
|
|
67
|
+
</EuiFlexItem>
|
|
68
|
+
))}
|
|
69
|
+
</>
|
|
70
|
+
</EuiDescribedFormGroup>
|
|
71
|
+
);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
export const OptGroupField = connectField(OptGroup);
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2019-2023 SURF.
|
|
3
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
* you may not use this file except in compliance with the License.
|
|
5
|
+
* You may obtain a copy of the License at
|
|
6
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
7
|
+
*
|
|
8
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
9
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
10
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
11
|
+
* See the License for the specific language governing permissions and
|
|
12
|
+
* limitations under the License.
|
|
13
|
+
*
|
|
14
|
+
*/
|
|
15
|
+
import React from 'react';
|
|
16
|
+
|
|
17
|
+
import { useTranslations } from 'next-intl';
|
|
18
|
+
import { connectField } from 'uniforms';
|
|
19
|
+
|
|
20
|
+
import { GET_CUSTOMER_GRAPHQL_QUERY } from '../../../graphqlQueries';
|
|
21
|
+
import { useQueryWithGraphql } from '../../../hooks';
|
|
22
|
+
import { SelectField, SelectFieldProps } from './SelectField';
|
|
23
|
+
|
|
24
|
+
export type OrganisationFieldProps = Omit<
|
|
25
|
+
SelectFieldProps,
|
|
26
|
+
'placeholder' | 'transform' | 'allowedValues'
|
|
27
|
+
>;
|
|
28
|
+
|
|
29
|
+
function Organisation({ ...props }: OrganisationFieldProps) {
|
|
30
|
+
const t = useTranslations('pydanticForms');
|
|
31
|
+
|
|
32
|
+
const { data, isFetched } = useQueryWithGraphql(
|
|
33
|
+
GET_CUSTOMER_GRAPHQL_QUERY,
|
|
34
|
+
{},
|
|
35
|
+
'customers',
|
|
36
|
+
);
|
|
37
|
+
|
|
38
|
+
const uuidCustomerNameMap = new Map<string, string>();
|
|
39
|
+
|
|
40
|
+
if (isFetched) {
|
|
41
|
+
const customers = data?.customers.page;
|
|
42
|
+
customers?.map((customer) => {
|
|
43
|
+
uuidCustomerNameMap.set(customer.identifier, customer.fullname);
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
return (
|
|
48
|
+
<SelectField
|
|
49
|
+
{...props}
|
|
50
|
+
allowedValues={Array.from(uuidCustomerNameMap.keys())}
|
|
51
|
+
transform={(uuid: string) => uuidCustomerNameMap.get(uuid) || uuid}
|
|
52
|
+
placeholder={t('widgets.organisation.placeholder')}
|
|
53
|
+
/>
|
|
54
|
+
);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export const OrganisationField = connectField(Organisation, { kind: 'leaf' });
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2019-2023 SURF.
|
|
3
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
* you may not use this file except in compliance with the License.
|
|
5
|
+
* You may obtain a copy of the License at
|
|
6
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
7
|
+
*
|
|
8
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
9
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
10
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
11
|
+
* See the License for the specific language governing permissions and
|
|
12
|
+
* limitations under the License.
|
|
13
|
+
*
|
|
14
|
+
*/
|
|
15
|
+
import React from 'react';
|
|
16
|
+
import { useQuery } from 'react-query';
|
|
17
|
+
|
|
18
|
+
import get from 'lodash/get';
|
|
19
|
+
import { useTranslations } from 'next-intl';
|
|
20
|
+
import { connectField, filterDOMProps } from 'uniforms';
|
|
21
|
+
|
|
22
|
+
import { ProductDefinition } from '../../../types';
|
|
23
|
+
import { useAxiosApiClient } from '../useAxiosApiClient';
|
|
24
|
+
import { SelectField, SelectFieldProps } from './SelectField';
|
|
25
|
+
|
|
26
|
+
export type ProductFieldProps = { productIds?: string[] } & Omit<
|
|
27
|
+
SelectFieldProps,
|
|
28
|
+
'placeholder' | 'transform' | 'allowedValues'
|
|
29
|
+
>;
|
|
30
|
+
declare module 'uniforms' {
|
|
31
|
+
interface FilterDOMProps {
|
|
32
|
+
productIds: never;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
filterDOMProps.register('productIds');
|
|
36
|
+
|
|
37
|
+
function Product({ name, productIds, ...props }: ProductFieldProps) {
|
|
38
|
+
const apiClient = useAxiosApiClient();
|
|
39
|
+
const t = useTranslations('pydanticForms');
|
|
40
|
+
const { isLoading, error, data } = useQuery(
|
|
41
|
+
['products'],
|
|
42
|
+
apiClient.products,
|
|
43
|
+
);
|
|
44
|
+
|
|
45
|
+
const productById = (
|
|
46
|
+
id: string,
|
|
47
|
+
products: ProductDefinition[],
|
|
48
|
+
): ProductDefinition => {
|
|
49
|
+
return products.find((prod) => prod.productId === id)!;
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
if (isLoading || error) return null;
|
|
53
|
+
|
|
54
|
+
const products = productIds
|
|
55
|
+
? data?.map((id) => productById(id.productId, data))
|
|
56
|
+
: data;
|
|
57
|
+
|
|
58
|
+
const productLabelLookup =
|
|
59
|
+
products?.reduce<{ [index: string]: string }>(function (
|
|
60
|
+
mapping,
|
|
61
|
+
product,
|
|
62
|
+
) {
|
|
63
|
+
mapping[product.productId] = product.name;
|
|
64
|
+
return mapping;
|
|
65
|
+
}, {}) ?? {};
|
|
66
|
+
|
|
67
|
+
return (
|
|
68
|
+
<SelectField
|
|
69
|
+
name={name}
|
|
70
|
+
{...props}
|
|
71
|
+
allowedValues={Object.keys(productLabelLookup)}
|
|
72
|
+
transform={(uuid: string) => get(productLabelLookup, uuid, uuid)}
|
|
73
|
+
placeholder={t('widgets.product.placeholder')}
|
|
74
|
+
/>
|
|
75
|
+
);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export const ProductField = connectField(Product);
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2019-2023 SURF.
|
|
3
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
* you may not use this file except in compliance with the License.
|
|
5
|
+
* You may obtain a copy of the License at
|
|
6
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
7
|
+
*
|
|
8
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
9
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
10
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
11
|
+
* See the License for the specific language governing permissions and
|
|
12
|
+
* limitations under the License.
|
|
13
|
+
*
|
|
14
|
+
*/
|
|
15
|
+
import React from 'react';
|
|
16
|
+
|
|
17
|
+
import { omit } from 'lodash';
|
|
18
|
+
import { connectField, filterDOMProps } from 'uniforms';
|
|
19
|
+
|
|
20
|
+
import { EuiFormRow, EuiRadio, EuiText } from '@elastic/eui';
|
|
21
|
+
|
|
22
|
+
import { FieldProps } from '../../../types/forms';
|
|
23
|
+
|
|
24
|
+
const base64 =
|
|
25
|
+
typeof btoa !== 'undefined'
|
|
26
|
+
? btoa
|
|
27
|
+
: (x: string) => Buffer.from(x).toString('base64');
|
|
28
|
+
const escape = (x: string) => base64(encodeURIComponent(x)).replace(/=+$/, '');
|
|
29
|
+
|
|
30
|
+
export type RadioFieldProps = FieldProps<
|
|
31
|
+
string,
|
|
32
|
+
{
|
|
33
|
+
allowedValues?: string[];
|
|
34
|
+
checkboxes?: boolean;
|
|
35
|
+
transform?(value: string): string;
|
|
36
|
+
}
|
|
37
|
+
>;
|
|
38
|
+
|
|
39
|
+
function Radio({
|
|
40
|
+
allowedValues,
|
|
41
|
+
disabled,
|
|
42
|
+
id,
|
|
43
|
+
label,
|
|
44
|
+
description,
|
|
45
|
+
name,
|
|
46
|
+
onChange,
|
|
47
|
+
readOnly,
|
|
48
|
+
transform,
|
|
49
|
+
value,
|
|
50
|
+
error,
|
|
51
|
+
showInlineError,
|
|
52
|
+
errorMessage,
|
|
53
|
+
...props
|
|
54
|
+
}: RadioFieldProps) {
|
|
55
|
+
return (
|
|
56
|
+
<div {...omit(filterDOMProps(props), ['checkboxes'])}>
|
|
57
|
+
<EuiFormRow
|
|
58
|
+
label={label}
|
|
59
|
+
labelAppend={<EuiText size="m">{description}</EuiText>}
|
|
60
|
+
error={showInlineError ? errorMessage : false}
|
|
61
|
+
isInvalid={error}
|
|
62
|
+
id={id}
|
|
63
|
+
fullWidth
|
|
64
|
+
>
|
|
65
|
+
<>
|
|
66
|
+
{allowedValues?.map((item) => (
|
|
67
|
+
<EuiRadio
|
|
68
|
+
key={item}
|
|
69
|
+
id={`${id}-${escape(item)}`}
|
|
70
|
+
label={transform ? transform(item) : item}
|
|
71
|
+
disabled={disabled}
|
|
72
|
+
name={name}
|
|
73
|
+
checked={item === value}
|
|
74
|
+
onChange={() => {
|
|
75
|
+
if (!readOnly) {
|
|
76
|
+
onChange(item);
|
|
77
|
+
}
|
|
78
|
+
}}
|
|
79
|
+
/>
|
|
80
|
+
))}
|
|
81
|
+
</>
|
|
82
|
+
</EuiFormRow>
|
|
83
|
+
</div>
|
|
84
|
+
);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export const RadioField = connectField(Radio, { kind: 'leaf' });
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2019-2023 SURF.
|
|
3
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
* you may not use this file except in compliance with the License.
|
|
5
|
+
* You may obtain a copy of the License at
|
|
6
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
7
|
+
*
|
|
8
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
9
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
10
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
11
|
+
* See the License for the specific language governing permissions and
|
|
12
|
+
* limitations under the License.
|
|
13
|
+
*
|
|
14
|
+
*/
|
|
15
|
+
import React from 'react';
|
|
16
|
+
import ReactSelect from 'react-select';
|
|
17
|
+
|
|
18
|
+
import { get } from 'lodash';
|
|
19
|
+
import { useTranslations } from 'next-intl';
|
|
20
|
+
import {
|
|
21
|
+
connectField,
|
|
22
|
+
filterDOMProps,
|
|
23
|
+
joinName,
|
|
24
|
+
useField,
|
|
25
|
+
useForm,
|
|
26
|
+
} from 'uniforms';
|
|
27
|
+
|
|
28
|
+
import { EuiFormRow, EuiText } from '@elastic/eui';
|
|
29
|
+
|
|
30
|
+
import { useOrchestratorTheme } from '../../../hooks';
|
|
31
|
+
import { ListField, ListFieldProps } from './ListField';
|
|
32
|
+
import { ListItemField } from './ListItemField';
|
|
33
|
+
import { ListSelectField } from './ListSelectField';
|
|
34
|
+
import { getReactSelectInnerComponentStyles } from './reactSelectStyles';
|
|
35
|
+
import { FieldProps, Option } from './types';
|
|
36
|
+
|
|
37
|
+
export type SelectFieldProps = FieldProps<
|
|
38
|
+
string | string[],
|
|
39
|
+
{ allowedValues?: string[]; transform?(value: string): string }
|
|
40
|
+
>;
|
|
41
|
+
|
|
42
|
+
function Select({
|
|
43
|
+
allowedValues = [],
|
|
44
|
+
disabled,
|
|
45
|
+
fieldType,
|
|
46
|
+
id,
|
|
47
|
+
label,
|
|
48
|
+
description,
|
|
49
|
+
name,
|
|
50
|
+
onChange,
|
|
51
|
+
placeholder,
|
|
52
|
+
readOnly,
|
|
53
|
+
transform,
|
|
54
|
+
value,
|
|
55
|
+
error,
|
|
56
|
+
showInlineError,
|
|
57
|
+
errorMessage,
|
|
58
|
+
...props
|
|
59
|
+
}: SelectFieldProps) {
|
|
60
|
+
const t = useTranslations('pydanticForms');
|
|
61
|
+
const { theme } = useOrchestratorTheme();
|
|
62
|
+
|
|
63
|
+
const nameArray = joinName(null, name);
|
|
64
|
+
let parentName = joinName(nameArray.slice(0, -1));
|
|
65
|
+
|
|
66
|
+
// We can't call useField conditionally so we call it for ourselves if there is no parent
|
|
67
|
+
if (parentName === '') {
|
|
68
|
+
parentName = name;
|
|
69
|
+
}
|
|
70
|
+
const parent = useField(parentName, {}, { absoluteName: true })[0];
|
|
71
|
+
const { model } = useForm();
|
|
72
|
+
|
|
73
|
+
if (parentName !== name) {
|
|
74
|
+
if (
|
|
75
|
+
parent.fieldType === Array &&
|
|
76
|
+
(parent as ListFieldProps).uniqueItems
|
|
77
|
+
) {
|
|
78
|
+
const allValues: string[] = get(model, parentName, []);
|
|
79
|
+
const chosenValues = allValues.filter(
|
|
80
|
+
(_item, index) =>
|
|
81
|
+
index.toString() !== nameArray[nameArray.length - 1],
|
|
82
|
+
);
|
|
83
|
+
|
|
84
|
+
allowedValues = allowedValues.filter(
|
|
85
|
+
(value) => !chosenValues.includes(value),
|
|
86
|
+
);
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
const options = allowedValues.map((value: string) => ({
|
|
90
|
+
label: transform ? transform(value) : value,
|
|
91
|
+
text: transform ? transform(value) : value,
|
|
92
|
+
value: value,
|
|
93
|
+
}));
|
|
94
|
+
|
|
95
|
+
const selectedValue = options.find(
|
|
96
|
+
(option: Option) => option.value === value,
|
|
97
|
+
);
|
|
98
|
+
|
|
99
|
+
// React select allows callbacks to supply style for innercomponents: https://react-select.com/styles#inner-components
|
|
100
|
+
const reactSelectInnerComponentStyles =
|
|
101
|
+
getReactSelectInnerComponentStyles(theme);
|
|
102
|
+
|
|
103
|
+
if (fieldType === Array) {
|
|
104
|
+
// Avoid circular import with our own ListSelectField (instead of recursively trying to use SelectField)
|
|
105
|
+
return (
|
|
106
|
+
<ListField name={name}>
|
|
107
|
+
<ListItemField name="$">
|
|
108
|
+
<ListSelectField
|
|
109
|
+
name=""
|
|
110
|
+
transform={transform}
|
|
111
|
+
allowedValues={allowedValues}
|
|
112
|
+
/>
|
|
113
|
+
</ListItemField>
|
|
114
|
+
</ListField>
|
|
115
|
+
);
|
|
116
|
+
} else {
|
|
117
|
+
return (
|
|
118
|
+
<section {...filterDOMProps(props)}>
|
|
119
|
+
<EuiFormRow
|
|
120
|
+
label={label}
|
|
121
|
+
labelAppend={<EuiText size="m">{description}</EuiText>}
|
|
122
|
+
error={showInlineError ? errorMessage : false}
|
|
123
|
+
isInvalid={error}
|
|
124
|
+
id={id}
|
|
125
|
+
fullWidth
|
|
126
|
+
>
|
|
127
|
+
<ReactSelect<Option, false>
|
|
128
|
+
id={id}
|
|
129
|
+
inputId={`${id}.search`}
|
|
130
|
+
name={name}
|
|
131
|
+
onChange={(option) => {
|
|
132
|
+
if (!readOnly) {
|
|
133
|
+
onChange(option?.value);
|
|
134
|
+
}
|
|
135
|
+
}}
|
|
136
|
+
styles={reactSelectInnerComponentStyles}
|
|
137
|
+
options={options}
|
|
138
|
+
value={selectedValue}
|
|
139
|
+
isSearchable={true}
|
|
140
|
+
isClearable={true}
|
|
141
|
+
placeholder={
|
|
142
|
+
placeholder || t('widgets.select.placeholder')
|
|
143
|
+
}
|
|
144
|
+
isDisabled={disabled || readOnly}
|
|
145
|
+
/>
|
|
146
|
+
</EuiFormRow>
|
|
147
|
+
</section>
|
|
148
|
+
);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
export const SelectField = connectField(Select);
|
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2019-2023 SURF.
|
|
3
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
* you may not use this file except in compliance with the License.
|
|
5
|
+
* You may obtain a copy of the License at
|
|
6
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
7
|
+
*
|
|
8
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
9
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
10
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
11
|
+
* See the License for the specific language governing permissions and
|
|
12
|
+
* limitations under the License.
|
|
13
|
+
*
|
|
14
|
+
*/
|
|
15
|
+
import React from 'react';
|
|
16
|
+
import ReactSelect, { SingleValue } from 'react-select';
|
|
17
|
+
|
|
18
|
+
import { range } from 'lodash';
|
|
19
|
+
|
|
20
|
+
import { EuiFlexItem } from '@elastic/eui';
|
|
21
|
+
|
|
22
|
+
import { ApiClientContext } from '../../../contexts';
|
|
23
|
+
import { splitPrefixStyling } from './SplitPrefixStyling';
|
|
24
|
+
import { Option } from './types';
|
|
25
|
+
|
|
26
|
+
interface IProps {
|
|
27
|
+
id: string;
|
|
28
|
+
name: string;
|
|
29
|
+
subnet: string;
|
|
30
|
+
prefixlen: number;
|
|
31
|
+
prefixMin: number;
|
|
32
|
+
onChange: (value: string) => void;
|
|
33
|
+
selectedSubnet?: string;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
interface IState {
|
|
37
|
+
subnets: [];
|
|
38
|
+
desiredPrefixlen: number;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export default class SplitPrefix extends React.PureComponent<IProps> {
|
|
42
|
+
static contextType = ApiClientContext;
|
|
43
|
+
context!: React.ContextType<typeof ApiClientContext>;
|
|
44
|
+
state: IState = {
|
|
45
|
+
subnets: [],
|
|
46
|
+
desiredPrefixlen: 0,
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
fetchFreePrefixes(
|
|
50
|
+
subnet: string,
|
|
51
|
+
prefixlen: number,
|
|
52
|
+
desiredPrefixlen: number,
|
|
53
|
+
) {
|
|
54
|
+
this.context.apiClient
|
|
55
|
+
.free_subnets(subnet, prefixlen, desiredPrefixlen)
|
|
56
|
+
.then((result: string[]) => {
|
|
57
|
+
const subnets = result.filter(
|
|
58
|
+
(x) => parseInt(x.split('/')[1], 10) === desiredPrefixlen,
|
|
59
|
+
);
|
|
60
|
+
this.setState({
|
|
61
|
+
subnets: subnets,
|
|
62
|
+
desiredPrefixlen: desiredPrefixlen,
|
|
63
|
+
loading: false,
|
|
64
|
+
});
|
|
65
|
+
});
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
componentDidUpdate(prevProps: IProps) {
|
|
69
|
+
if (
|
|
70
|
+
this.props.subnet !== prevProps.subnet ||
|
|
71
|
+
this.props.prefixlen !== prevProps.prefixlen
|
|
72
|
+
) {
|
|
73
|
+
this.fetchFreePrefixes(
|
|
74
|
+
this.props.subnet,
|
|
75
|
+
this.props.prefixlen,
|
|
76
|
+
this.props.prefixMin,
|
|
77
|
+
);
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
componentDidMount() {
|
|
82
|
+
const { subnet, prefixlen, prefixMin } = { ...this.props };
|
|
83
|
+
|
|
84
|
+
this.fetchFreePrefixes(subnet, prefixlen, prefixMin);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
changePrefixLength = (e: SingleValue<Option<number>>) => {
|
|
88
|
+
const { subnet, prefixlen } = { ...this.props };
|
|
89
|
+
|
|
90
|
+
const desiredPrefixlen = e?.value;
|
|
91
|
+
if (desiredPrefixlen) {
|
|
92
|
+
this.fetchFreePrefixes(subnet, prefixlen, desiredPrefixlen);
|
|
93
|
+
}
|
|
94
|
+
};
|
|
95
|
+
|
|
96
|
+
selectSubnet = (e: SingleValue<Option>) => {
|
|
97
|
+
this.props.onChange(e?.value ?? '');
|
|
98
|
+
};
|
|
99
|
+
|
|
100
|
+
render() {
|
|
101
|
+
const { id, name, subnet, prefixlen, prefixMin, selectedSubnet } =
|
|
102
|
+
this.props;
|
|
103
|
+
const version = subnet.indexOf(':') === -1 ? 4 : 6;
|
|
104
|
+
const max_for_version = version === 4 ? 32 : 64;
|
|
105
|
+
const { desiredPrefixlen } = this.state;
|
|
106
|
+
const prefixlengths = range(max_for_version - prefixMin + 1).map(
|
|
107
|
+
(x) => prefixMin + x,
|
|
108
|
+
);
|
|
109
|
+
const length_options: Option<number>[] = prefixlengths.map((pl) => ({
|
|
110
|
+
value: pl,
|
|
111
|
+
label: pl.toString(),
|
|
112
|
+
}));
|
|
113
|
+
const length_value = length_options.find(
|
|
114
|
+
(option) => option.value === desiredPrefixlen,
|
|
115
|
+
);
|
|
116
|
+
|
|
117
|
+
const prefix_options = this.state.subnets.map((sn) => ({
|
|
118
|
+
label: sn,
|
|
119
|
+
value: sn,
|
|
120
|
+
}));
|
|
121
|
+
const prefix_value = prefix_options.find(
|
|
122
|
+
(option) => option.value === selectedSubnet,
|
|
123
|
+
);
|
|
124
|
+
// Todo 482: re-implement when this component is refactored to function based
|
|
125
|
+
// const customStyles = getReactSelectTheme(this.context.theme);
|
|
126
|
+
|
|
127
|
+
return (
|
|
128
|
+
<EuiFlexItem css={splitPrefixStyling}>
|
|
129
|
+
<section>
|
|
130
|
+
<h3>
|
|
131
|
+
Selected prefix: {subnet}/{prefixlen}
|
|
132
|
+
</h3>
|
|
133
|
+
<div>Desired netmask of the new subnet:</div>
|
|
134
|
+
<ReactSelect
|
|
135
|
+
id={`${id}.desired-netmask`}
|
|
136
|
+
// Todo 482: re-implement when this component is refactored to function based
|
|
137
|
+
// styles={customStyles}
|
|
138
|
+
inputId={`${id}.desired-netmask.search`}
|
|
139
|
+
name={`${name}.desired-netmask`}
|
|
140
|
+
onChange={this.changePrefixLength}
|
|
141
|
+
options={length_options}
|
|
142
|
+
value={length_value}
|
|
143
|
+
/>
|
|
144
|
+
{this.state.subnets && (
|
|
145
|
+
<div>
|
|
146
|
+
<div>Desired prefix:</div>
|
|
147
|
+
<ReactSelect
|
|
148
|
+
id={`${id}.desired-prefix`}
|
|
149
|
+
// Todo 482: re-implement when this component is refactored to function based
|
|
150
|
+
// styles={customStyles}
|
|
151
|
+
inputId={`${id}.desired-prefix.search`}
|
|
152
|
+
name={`${name}.desired-prefix`}
|
|
153
|
+
options={prefix_options}
|
|
154
|
+
onChange={this.selectSubnet}
|
|
155
|
+
value={prefix_value}
|
|
156
|
+
/>
|
|
157
|
+
</div>
|
|
158
|
+
)}
|
|
159
|
+
</section>
|
|
160
|
+
</EuiFlexItem>
|
|
161
|
+
);
|
|
162
|
+
}
|
|
163
|
+
}
|