@@ -35,10 +35,15 @@ export const IncidentEditor = ({
35
35
onSubmit,
36
36
data,
37
37
onClose,
38
- mode = IncidentAction . ADD ,
38
+ mode = IncidentAction . CREATE ,
39
39
} : IncidentEditorProps ) => {
40
40
const assigneeValues = data ?. assignees && getAssigneeWithURN ( data . assignees ) ;
41
- const isFormValid = Boolean ( data ?. title ?. length && data ?. description && data ?. type && data ?. customType ) ;
41
+ const isFormValid = Boolean (
42
+ data ?. title ?. length &&
43
+ data ?. description &&
44
+ data ?. type &&
45
+ ( data ?. type !== IncidentType . Custom || data ?. customType ) ,
46
+ ) ;
42
47
const { user } = useUserContext ( ) ;
43
48
const userHasChangedState = useRef ( false ) ;
44
49
const isFirstRender = useRef ( true ) ;
@@ -47,7 +52,7 @@ export const IncidentEditor = ({
47
52
const [ isLoadingAssigneeOrAssets , setIsLoadingAssigneeOrAssets ] = useState ( true ) ;
48
53
49
54
const [ isRequiredFieldsFilled , setIsRequiredFieldsFilled ] = useState < boolean > (
50
- mode === IncidentAction . VIEW ? ! isFormValid : false ,
55
+ mode === IncidentAction . EDIT ? isFormValid : false ,
51
56
) ;
52
57
53
58
const { handleSubmit, form, isLoading } = useIncidentHandler ( {
@@ -78,7 +83,7 @@ export const IncidentEditor = ({
78
83
79
84
// Ensure we don't override user's choice if they manually change the state
80
85
if (
81
- mode === IncidentAction . VIEW &&
86
+ mode === IncidentAction . EDIT &&
82
87
( formValues ?. status === IncidentStage . Fixed || formValues ?. status === IncidentStage . NoActionRequired ) &&
83
88
formValues ?. state !== IncidentState . Resolved
84
89
) {
@@ -105,7 +110,7 @@ export const IncidentEditor = ({
105
110
}
106
111
} ;
107
112
108
- const actionButtonLabel = mode === IncidentAction . ADD ? 'Create' : 'Update' ;
113
+ const actionButtonLabel = mode === IncidentAction . CREATE ? 'Create' : 'Update' ;
109
114
const showCustomCategory = form . getFieldValue ( 'type' ) === IncidentType . Custom ;
110
115
const isLinkedAssetPresent = ! formValues ?. resourceUrns ?. length ;
111
116
const isSubmitButtonDisabled =
@@ -146,7 +151,7 @@ export const IncidentEditor = ({
146
151
doNotFocus
147
152
className = "add-incident-description"
148
153
placeholder = "Provide a description..."
149
- content = { mode === IncidentAction . VIEW ? data ?. description : '' }
154
+ content = { mode === IncidentAction . EDIT ? data ?. description : '' }
150
155
/>
151
156
</ InputFormItem >
152
157
< IncidentSelectField
@@ -158,7 +163,7 @@ export const IncidentEditor = ({
158
163
}
159
164
} }
160
165
form = { form }
161
- isDisabled = { mode === IncidentAction . VIEW }
166
+ isDisabled = { mode === IncidentAction . EDIT }
162
167
handleValuesChange = { handleValuesChange }
163
168
value = { formValues ?. [ INCIDENT_OPTION_LABEL_MAPPING . category . fieldName ] }
164
169
/>
@@ -171,6 +176,7 @@ export const IncidentEditor = ({
171
176
styles = { {
172
177
width : '50%' ,
173
178
} }
179
+ isDisabled = { mode === IncidentAction . EDIT }
174
180
id = "custom-incident-type-input"
175
181
/>
176
182
</ SelectFormItem >
@@ -205,7 +211,7 @@ export const IncidentEditor = ({
205
211
setIsLinkedAssetsLoading = { setIsLoadingAssigneeOrAssets }
206
212
/>
207
213
</ SelectFormItem >
208
- { mode === IncidentAction . VIEW && (
214
+ { mode === IncidentAction . EDIT && (
209
215
< IncidentSelectField
210
216
incidentLabelMap = { INCIDENT_OPTION_LABEL_MAPPING . state }
211
217
options = { INCIDENT_STATES }
0 commit comments