From 55236129ea84800df59470a5901e604ee304760b Mon Sep 17 00:00:00 2001 From: Ali <83188384+testA113@users.noreply.github.com> Date: Wed, 16 Aug 2023 18:07:49 +1200 Subject: [PATCH] fix(ingress): empty initial selection + fixes [EE-5852] (#10067) Co-authored-by: testa113 --- .../CreateIngressView/CreateIngressView.tsx | 33 ++++++++++++++----- .../CreateIngressView/IngressForm.tsx | 21 +++++++++--- 2 files changed, 42 insertions(+), 12 deletions(-) diff --git a/app/react/kubernetes/ingresses/CreateIngressView/CreateIngressView.tsx b/app/react/kubernetes/ingresses/CreateIngressView/CreateIngressView.tsx index 250262f1b..d8c570eb9 100644 --- a/app/react/kubernetes/ingresses/CreateIngressView/CreateIngressView.tsx +++ b/app/react/kubernetes/ingresses/CreateIngressView/CreateIngressView.tsx @@ -53,6 +53,8 @@ export function CreateIngressView() { const [namespace, setNamespace] = useState(params.namespace || ''); const [ingressRule, setIngressRule] = useState({} as Rule); + // isEditClassNameSet is used to prevent premature validation of the classname in the edit view + const [isEditClassNameSet, setIsEditClassNameSet] = useState(false); const [errors, setErrors] = useState>( {} as Record @@ -243,14 +245,21 @@ export function CreateIngressView() { [ingressControllers] ); - // when the ingress class options update the value to an available one + // when them selected ingress class option update is no longer available set to an empty value useEffect(() => { const ingressClasses = ingressClassOptions.map((option) => option.value); - if (!ingressClasses.includes(ingressRule.IngressClassName)) { - // setting to the first available option (or undefined when there are no options) - handleIngressChange('IngressClassName', ingressClasses[0]); + if ( + !ingressClasses.includes(ingressRule.IngressClassName) && + ingressControllersQuery.isSuccess + ) { + handleIngressChange('IngressClassName', ''); } - }, [handleIngressChange, ingressClassOptions, ingressRule.IngressClassName]); + }, [ + handleIngressChange, + ingressClassOptions, + ingressControllersQuery.isSuccess, + ingressRule.IngressClassName, + ]); const matchedConfigs = configResults?.data?.filter( (config) => @@ -289,6 +298,7 @@ export function CreateIngressView() { const r = prepareRuleFromIngress(ing, type); r.IngressType = type || r.IngressType; setIngressRule(r); + setIsEditClassNameSet(true); } } // eslint-disable-next-line react-hooks/exhaustive-deps @@ -365,12 +375,15 @@ export function CreateIngressView() { errors.ingressName = 'Ingress name already exists'; } - if (!ingressClassOptions.length && ingressControllersQuery.isSuccess) { + if ( + (!ingressClassOptions.length || !rule.IngressClassName) && + ingressControllersQuery.isSuccess + ) { errors.className = 'Ingress class is required'; } } - if (isEdit && !ingressRule.IngressClassName) { + if (isEdit && !ingressRule.IngressClassName && isEditClassNameSet) { errors.className = 'No ingress class is currently set for this ingress - use of the Portainer UI requires one to be set.'; } @@ -513,7 +526,8 @@ export function CreateIngressView() { }, [ isEdit, - ingressClassOptions, + isEditClassNameSet, + ingressClassOptions.length, ingressControllersQuery.isSuccess, environmentId, ingresses, @@ -583,6 +597,8 @@ export function CreateIngressView() { handleNamespaceChange={handleNamespaceChange} namespacesOptions={namespaceOptions} isNamespaceOptionsLoading={namespacesQuery.isLoading} + // wait for ingress results too to set a name that's not taken with handleNamespaceChange() + isIngressNamesLoading={ingressesResults.isLoading} /> {namespace && ( @@ -688,6 +704,7 @@ export function CreateIngressView() { Namespace: namespace, IngressName: newKey, IngressClassName: ingressRule.IngressClassName || '', + IngressType: ingressRule.IngressType || '', Hosts: [host], }; diff --git a/app/react/kubernetes/ingresses/CreateIngressView/IngressForm.tsx b/app/react/kubernetes/ingresses/CreateIngressView/IngressForm.tsx index ba4f7753e..f5c997f15 100644 --- a/app/react/kubernetes/ingresses/CreateIngressView/IngressForm.tsx +++ b/app/react/kubernetes/ingresses/CreateIngressView/IngressForm.tsx @@ -47,6 +47,7 @@ interface Props { tlsOptions: Option[]; namespacesOptions: Option[]; isNamespaceOptionsLoading: boolean; + isIngressNamesLoading: boolean; removeIngressRoute: (hostIndex: number, pathIndex: number) => void; removeIngressHost: (hostIndex: number) => void; @@ -102,6 +103,7 @@ export function IngressForm({ errors, namespacesOptions, isNamespaceOptionsLoading, + isIngressNamesLoading, handleNamespaceChange, namespace, }: Props) { @@ -114,10 +116,21 @@ export function IngressForm({ // when the namespace options update the value to an available one useEffect(() => { const namespaces = namespacesOptions.map((option) => option.value); - if (!namespaces.includes(namespace) && namespaces.length > 0) { + if ( + !namespaces.includes(namespace) && + namespaces.length > 0 && + (!isIngressNamesLoading || isEdit) + ) { handleNamespaceChange(namespaces[0]); } - }, [namespacesOptions, namespace, handleNamespaceChange]); + }, [ + namespacesOptions, + namespace, + handleNamespaceChange, + isNamespaceOptionsLoading, + isEdit, + isIngressNamesLoading, + ]); return ( @@ -526,7 +539,7 @@ export function IngressForm({ )} -
+
{servicePorts && ( <> @@ -669,7 +682,7 @@ export function IngressForm({