-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathNewApplicationForm.tsx
157 lines (139 loc) · 5.07 KB
/
NewApplicationForm.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
import React, { type FormEvent, type ChangeEvent, useState } from 'react';
import classes from './NewApplicationForm.module.css';
import { StudioButton, StudioSpinner } from '@studio/components';
import { useTranslation } from 'react-i18next';
import { ServiceOwnerSelector } from '../ServiceOwnerSelector';
import { RepoNameInput } from '../RepoNameInput';
import { type User } from 'app-shared/types/Repository';
import { type Organization } from 'app-shared/types/Organization';
import { useSelectedContext } from '../../hooks/useSelectedContext';
import { SelectedContextType } from 'dashboard/context/HeaderContext';
import { type NewAppForm } from '../../types/NewAppForm';
import { useCreateAppFormValidation } from './hooks/useCreateAppFormValidation';
import { Link } from 'react-router-dom';
import { useUserOrgPermissionQuery } from '../../hooks/queries/useUserOrgPermissionsQuery';
type CancelButton = {
onClick: () => void;
type: 'button';
};
type CancelLink = {
href: string;
type: 'link';
};
export type ActionableElement = CancelButton | CancelLink;
export type NewApplicationFormProps = {
onSubmit: (newAppForm: NewAppForm) => Promise<void>;
user: User;
organizations: Organization[];
isLoading: boolean;
submitButtonText: string;
formError: NewAppForm;
setFormError: React.Dispatch<React.SetStateAction<NewAppForm>>;
actionableElement: ActionableElement;
};
export const NewApplicationForm = ({
onSubmit,
user,
organizations,
isLoading,
submitButtonText,
formError,
setFormError,
actionableElement,
}: NewApplicationFormProps): React.JSX.Element => {
const { t } = useTranslation();
const selectedContext = useSelectedContext();
const { validateRepoOwnerName, validateRepoName } = useCreateAppFormValidation();
const defaultSelectedOrgOrUser: string =
selectedContext === SelectedContextType.Self || selectedContext === SelectedContextType.All
? user.login
: selectedContext;
const [currentSelectedOrg, setCurrentSelectedOrg] = useState<string>(defaultSelectedOrgOrUser);
const { data: userOrgPermission, isFetching } = useUserOrgPermissionQuery(currentSelectedOrg, {
enabled: Boolean(currentSelectedOrg),
});
const validateTextValue = (event: ChangeEvent<HTMLInputElement>) => {
const { errorMessage: repoNameErrorMessage, isValid: isRepoNameValid } = validateRepoName(
event.target.value,
);
setFormError((previous) => ({
...previous,
repoName: isRepoNameValid ? '' : repoNameErrorMessage,
}));
};
const handleSubmit = async (event: FormEvent<HTMLFormElement>): Promise<void> => {
event.preventDefault();
const formData: FormData = new FormData(event.currentTarget);
const newAppForm: NewAppForm = {
org: formData.get('org') as string,
repoName: formData.get('repoName') as string,
};
const isFormValid: boolean = validateNewAppForm(newAppForm);
if (isFormValid) {
await onSubmit(newAppForm);
}
};
const validateNewAppForm = (newAppForm: NewAppForm): boolean => {
const { errorMessage: orgErrorMessage, isValid: isOrgValid } = validateRepoOwnerName(
newAppForm.org,
);
const { errorMessage: repoNameErrorMessage, isValid: isRepoNameValid } = validateRepoName(
newAppForm.repoName,
);
setFormError({
org: isOrgValid ? '' : orgErrorMessage,
repoName: isRepoNameValid ? '' : repoNameErrorMessage,
});
return isOrgValid && isRepoNameValid;
};
const createRepoAccessError: string =
!userOrgPermission?.canCreateOrgRepo && !isFetching
? t('dashboard.missing_service_owner_rights_error_message')
: '';
const hasCreateRepoAccessError: boolean = Boolean(createRepoAccessError);
return (
<form onSubmit={handleSubmit} className={classes.form}>
<ServiceOwnerSelector
name='org'
user={user}
organizations={organizations}
errorMessage={formError.org || createRepoAccessError}
selectedOrgOrUser={defaultSelectedOrgOrUser}
onChange={setCurrentSelectedOrg}
/>
<RepoNameInput
name='repoName'
errorMessage={formError.repoName}
onChange={validateTextValue}
/>
<div className={classes.actionContainer}>
{isLoading ? (
<StudioSpinner showSpinnerTitle spinnerTitle={t('dashboard.creating_your_service')} />
) : (
<>
<StudioButton type='submit' variant='primary' disabled={hasCreateRepoAccessError}>
{submitButtonText}
</StudioButton>
<CancelComponent actionableElement={actionableElement} />
</>
)}
</div>
</form>
);
};
type CancelComponentProps = {
actionableElement: ActionableElement;
};
const CancelComponent = ({ actionableElement }: CancelComponentProps) => {
const { t } = useTranslation();
switch (actionableElement.type) {
case 'button':
return (
<StudioButton onClick={actionableElement.onClick} variant='tertiary'>
{t('general.cancel')}
</StudioButton>
);
case 'link':
return <Link to={actionableElement.href}>{t('general.cancel')}</Link>;
}
};