|
|
@ -24,7 +24,10 @@ import OutlinedInputWithLabel, { |
|
|
|
import pad from '../lib/pad'; |
|
|
|
import pad from '../lib/pad'; |
|
|
|
import SuggestButton from './SuggestButton'; |
|
|
|
import SuggestButton from './SuggestButton'; |
|
|
|
import { createTestInputFunction, testNotBlank } from '../lib/test_input'; |
|
|
|
import { createTestInputFunction, testNotBlank } from '../lib/test_input'; |
|
|
|
import { InputTestBatches, InputTestInputs } from '../types/TestInputFunction'; |
|
|
|
import { |
|
|
|
|
|
|
|
InputTestBatches, |
|
|
|
|
|
|
|
TestInputFunctionOptions, |
|
|
|
|
|
|
|
} from '../types/TestInputFunction'; |
|
|
|
import { BodyText } from './Text'; |
|
|
|
import { BodyText } from './Text'; |
|
|
|
|
|
|
|
|
|
|
|
type GeneralInitFormValues = { |
|
|
|
type GeneralInitFormValues = { |
|
|
@ -219,9 +222,7 @@ const GeneralInitForm = forwardRef< |
|
|
|
[IT_IDS.confirmAdminPassword]: { |
|
|
|
[IT_IDS.confirmAdminPassword]: { |
|
|
|
defaults: { |
|
|
|
defaults: { |
|
|
|
getValue: () => |
|
|
|
getValue: () => |
|
|
|
isConfirmAdminPassword |
|
|
|
confirmAdminPasswordInputRef.current?.getValue?.call(null), |
|
|
|
? confirmAdminPasswordInputRef.current.getValue?.call(null) |
|
|
|
|
|
|
|
: adminPasswordInputRef.current.getValue?.call(null), |
|
|
|
|
|
|
|
onSuccess: () => { |
|
|
|
onSuccess: () => { |
|
|
|
setConfirmAdminPasswordInputMessage(undefined); |
|
|
|
setConfirmAdminPasswordInputMessage(undefined); |
|
|
|
}, |
|
|
|
}, |
|
|
@ -336,7 +337,6 @@ const GeneralInitForm = forwardRef< |
|
|
|
}, |
|
|
|
}, |
|
|
|
}), |
|
|
|
}), |
|
|
|
[ |
|
|
|
[ |
|
|
|
isConfirmAdminPassword, |
|
|
|
|
|
|
|
setAdminPasswordInputMessage, |
|
|
|
setAdminPasswordInputMessage, |
|
|
|
setConfirmAdminPasswordInputMessage, |
|
|
|
setConfirmAdminPasswordInputMessage, |
|
|
|
setDomainNameInputMessage, |
|
|
|
setDomainNameInputMessage, |
|
|
@ -350,19 +350,29 @@ const GeneralInitForm = forwardRef< |
|
|
|
[inputTests], |
|
|
|
[inputTests], |
|
|
|
); |
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
const testAllInputs = useCallback( |
|
|
|
const testInputToToggleSubmitDisabled = useCallback( |
|
|
|
(...excludeTestIds: string[]) => |
|
|
|
({ |
|
|
|
testInput({ excludeTestIds, isIgnoreOnCallbacks: true }), |
|
|
|
excludeTestIds = [], |
|
|
|
[testInput], |
|
|
|
inputs, |
|
|
|
); |
|
|
|
isExcludeConfirmAdminPassword = !isConfirmAdminPassword, |
|
|
|
const testInputSeparate = useCallback( |
|
|
|
}: Pick<TestInputFunctionOptions, 'inputs' | 'excludeTestIds'> & { |
|
|
|
(id: string, input: InputTestInputs[string]) => { |
|
|
|
isExcludeConfirmAdminPassword?: boolean; |
|
|
|
const isLocalValid = testInput({ |
|
|
|
} = {}) => { |
|
|
|
inputs: { [id]: input }, |
|
|
|
if (isExcludeConfirmAdminPassword) { |
|
|
|
}); |
|
|
|
excludeTestIds.push(IT_IDS.confirmAdminPassword); |
|
|
|
toggleSubmitDisabled?.call(null, isLocalValid && testAllInputs(id)); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
toggleSubmitDisabled?.call( |
|
|
|
|
|
|
|
null, |
|
|
|
|
|
|
|
testInput({ |
|
|
|
|
|
|
|
excludeTestIds, |
|
|
|
|
|
|
|
inputs, |
|
|
|
|
|
|
|
isIgnoreOnCallbacks: true, |
|
|
|
|
|
|
|
isTestAll: true, |
|
|
|
|
|
|
|
}), |
|
|
|
|
|
|
|
); |
|
|
|
}, |
|
|
|
}, |
|
|
|
[testInput, testAllInputs, toggleSubmitDisabled], |
|
|
|
[isConfirmAdminPassword, testInput, toggleSubmitDisabled], |
|
|
|
); |
|
|
|
); |
|
|
|
const populateOrganizationPrefixInput = useCallback( |
|
|
|
const populateOrganizationPrefixInput = useCallback( |
|
|
|
({ |
|
|
|
({ |
|
|
@ -439,13 +449,33 @@ const GeneralInitForm = forwardRef< |
|
|
|
const handleOrganizationPrefixSuggest = useCallback(() => { |
|
|
|
const handleOrganizationPrefixSuggest = useCallback(() => { |
|
|
|
const organizationPrefix = populateOrganizationPrefixInput(); |
|
|
|
const organizationPrefix = populateOrganizationPrefixInput(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let hostName: string | undefined; |
|
|
|
|
|
|
|
|
|
|
|
if (!hostNameInputRef.current.getIsChangedByUser?.call(null)) { |
|
|
|
if (!hostNameInputRef.current.getIsChangedByUser?.call(null)) { |
|
|
|
populateHostNameInput({ organizationPrefix }); |
|
|
|
hostName = populateHostNameInput({ organizationPrefix }); |
|
|
|
} |
|
|
|
} |
|
|
|
}, [populateHostNameInput, populateOrganizationPrefixInput]); |
|
|
|
|
|
|
|
|
|
|
|
testInput({ |
|
|
|
|
|
|
|
inputs: { |
|
|
|
|
|
|
|
[IT_IDS.hostName]: { value: hostName }, |
|
|
|
|
|
|
|
[IT_IDS.organizationPrefix]: { value: organizationPrefix }, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
testInputToToggleSubmitDisabled({ |
|
|
|
|
|
|
|
excludeTestIds: [IT_IDS.hostName, IT_IDS.organizationPrefix], |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}, [ |
|
|
|
|
|
|
|
populateHostNameInput, |
|
|
|
|
|
|
|
populateOrganizationPrefixInput, |
|
|
|
|
|
|
|
testInput, |
|
|
|
|
|
|
|
testInputToToggleSubmitDisabled, |
|
|
|
|
|
|
|
]); |
|
|
|
const handlerHostNameSuggest = useCallback(() => { |
|
|
|
const handlerHostNameSuggest = useCallback(() => { |
|
|
|
populateHostNameInput(); |
|
|
|
const hostName = populateHostNameInput(); |
|
|
|
}, [populateHostNameInput]); |
|
|
|
|
|
|
|
|
|
|
|
testInput({ inputs: { [IT_IDS.hostName]: { value: hostName } } }); |
|
|
|
|
|
|
|
testInputToToggleSubmitDisabled({ excludeTestIds: [IT_IDS.hostName] }); |
|
|
|
|
|
|
|
}, [populateHostNameInput, testInput, testInputToToggleSubmitDisabled]); |
|
|
|
const buildHelpMessage = useCallback( |
|
|
|
const buildHelpMessage = useCallback( |
|
|
|
(text: string) => (previous?: string) => |
|
|
|
(text: string) => (previous?: string) => |
|
|
|
previous === text ? undefined : text, |
|
|
|
previous === text ? undefined : text, |
|
|
@ -479,7 +509,7 @@ const GeneralInitForm = forwardRef< |
|
|
|
inputLabelProps={{ isNotifyRequired: true }} |
|
|
|
inputLabelProps={{ isNotifyRequired: true }} |
|
|
|
label="Organization name" |
|
|
|
label="Organization name" |
|
|
|
onChange={() => { |
|
|
|
onChange={() => { |
|
|
|
toggleSubmitDisabled?.call(null, testAllInputs()); |
|
|
|
testInputToToggleSubmitDisabled(); |
|
|
|
}} |
|
|
|
}} |
|
|
|
onHelp={() => { |
|
|
|
onHelp={() => { |
|
|
|
setHelpMessage( |
|
|
|
setHelpMessage( |
|
|
@ -517,18 +547,24 @@ const GeneralInitForm = forwardRef< |
|
|
|
minWidth: '2.5em', |
|
|
|
minWidth: '2.5em', |
|
|
|
}, |
|
|
|
}, |
|
|
|
}, |
|
|
|
}, |
|
|
|
onBlur: populateHostNameInputOnBlur, |
|
|
|
onBlur: (event, ...resetArgs) => { |
|
|
|
|
|
|
|
const { |
|
|
|
|
|
|
|
target: { value }, |
|
|
|
|
|
|
|
} = event; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
testInput({ |
|
|
|
|
|
|
|
inputs: { [IT_IDS.organizationPrefix]: { value } }, |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
populateHostNameInputOnBlur(event, ...resetArgs); |
|
|
|
|
|
|
|
}, |
|
|
|
}} |
|
|
|
}} |
|
|
|
inputLabelProps={{ isNotifyRequired: true }} |
|
|
|
inputLabelProps={{ isNotifyRequired: true }} |
|
|
|
label="Prefix" |
|
|
|
label="Prefix" |
|
|
|
onChange={({ target: { value } }) => { |
|
|
|
onChange={({ target: { value } }) => { |
|
|
|
testInputSeparate(IT_IDS.organizationPrefix, { |
|
|
|
testInputToToggleSubmitDisabled({ |
|
|
|
[IT_IDS.organizationPrefix]: { |
|
|
|
inputs: { [IT_IDS.organizationPrefix]: { value } }, |
|
|
|
max: MAX_ORGANIZATION_PREFIX_LENGTH, |
|
|
|
|
|
|
|
min: MIN_ORGANIZATION_PREFIX_LENGTH, |
|
|
|
|
|
|
|
value, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
setOrganizationPrefixInputMessage(); |
|
|
|
setIsShowOrganizationPrefixSuggest( |
|
|
|
setIsShowOrganizationPrefixSuggest( |
|
|
|
isOrganizationPrefixPrereqFilled(), |
|
|
|
isOrganizationPrefixPrereqFilled(), |
|
|
|
); |
|
|
|
); |
|
|
@ -555,12 +591,24 @@ const GeneralInitForm = forwardRef< |
|
|
|
minWidth: '2em', |
|
|
|
minWidth: '2em', |
|
|
|
}, |
|
|
|
}, |
|
|
|
}, |
|
|
|
}, |
|
|
|
onBlur: populateHostNameInputOnBlur, |
|
|
|
onBlur: (event, ...restArgs) => { |
|
|
|
|
|
|
|
const { |
|
|
|
|
|
|
|
target: { value }, |
|
|
|
|
|
|
|
} = event; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
testInput({ |
|
|
|
|
|
|
|
inputs: { [IT_IDS.hostNumber]: { value } }, |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
populateHostNameInputOnBlur(event, ...restArgs); |
|
|
|
|
|
|
|
}, |
|
|
|
}} |
|
|
|
}} |
|
|
|
inputLabelProps={{ isNotifyRequired: true }} |
|
|
|
inputLabelProps={{ isNotifyRequired: true }} |
|
|
|
label="Striker #" |
|
|
|
label="Striker #" |
|
|
|
onChange={({ target: { value } }) => { |
|
|
|
onChange={({ target: { value } }) => { |
|
|
|
testInputSeparate(IT_IDS.hostNumber, { value }); |
|
|
|
testInputToToggleSubmitDisabled({ |
|
|
|
|
|
|
|
inputs: { [IT_IDS.hostNumber]: { value } }, |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
setHostNumberInputMessage(); |
|
|
|
}} |
|
|
|
}} |
|
|
|
onHelp={() => { |
|
|
|
onHelp={() => { |
|
|
|
setHelpMessage( |
|
|
|
setHelpMessage( |
|
|
@ -584,12 +632,22 @@ const GeneralInitForm = forwardRef< |
|
|
|
<OutlinedInputWithLabel |
|
|
|
<OutlinedInputWithLabel |
|
|
|
id="striker-init-general-domain-name" |
|
|
|
id="striker-init-general-domain-name" |
|
|
|
inputProps={{ |
|
|
|
inputProps={{ |
|
|
|
onBlur: populateHostNameInputOnBlur, |
|
|
|
onBlur: (event, ...restArgs) => { |
|
|
|
|
|
|
|
const { |
|
|
|
|
|
|
|
target: { value }, |
|
|
|
|
|
|
|
} = event; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
testInput({ inputs: { [IT_IDS.domainName]: { value } } }); |
|
|
|
|
|
|
|
populateHostNameInputOnBlur(event, ...restArgs); |
|
|
|
|
|
|
|
}, |
|
|
|
}} |
|
|
|
}} |
|
|
|
inputLabelProps={{ isNotifyRequired: true }} |
|
|
|
inputLabelProps={{ isNotifyRequired: true }} |
|
|
|
label="Domain name" |
|
|
|
label="Domain name" |
|
|
|
onChange={({ target: { value } }) => { |
|
|
|
onChange={({ target: { value } }) => { |
|
|
|
testInputSeparate(IT_IDS.domainName, { value }); |
|
|
|
testInputToToggleSubmitDisabled({ |
|
|
|
|
|
|
|
inputs: { [IT_IDS.domainName]: { value } }, |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
setDomainNameInputMessage(); |
|
|
|
}} |
|
|
|
}} |
|
|
|
onHelp={() => { |
|
|
|
onHelp={() => { |
|
|
|
setHelpMessage( |
|
|
|
setHelpMessage( |
|
|
@ -614,11 +672,17 @@ const GeneralInitForm = forwardRef< |
|
|
|
onClick={handlerHostNameSuggest} |
|
|
|
onClick={handlerHostNameSuggest} |
|
|
|
/> |
|
|
|
/> |
|
|
|
), |
|
|
|
), |
|
|
|
|
|
|
|
onBlur: ({ target: { value } }) => { |
|
|
|
|
|
|
|
testInput({ inputs: { [IT_IDS.hostName]: { value } } }); |
|
|
|
|
|
|
|
}, |
|
|
|
}} |
|
|
|
}} |
|
|
|
inputLabelProps={{ isNotifyRequired: true }} |
|
|
|
inputLabelProps={{ isNotifyRequired: true }} |
|
|
|
label="Host name" |
|
|
|
label="Host name" |
|
|
|
onChange={({ target: { value } }) => { |
|
|
|
onChange={({ target: { value } }) => { |
|
|
|
testInputSeparate(IT_IDS.hostName, { value }); |
|
|
|
testInputToToggleSubmitDisabled({ |
|
|
|
|
|
|
|
inputs: { [IT_IDS.hostName]: { value } }, |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
setHostNameInputMessage(); |
|
|
|
setIsShowHostNameSuggest(isHostNamePrereqFilled()); |
|
|
|
setIsShowHostNameSuggest(isHostNamePrereqFilled()); |
|
|
|
}} |
|
|
|
}} |
|
|
|
onHelp={() => { |
|
|
|
onHelp={() => { |
|
|
@ -654,18 +718,30 @@ const GeneralInitForm = forwardRef< |
|
|
|
inputProps: { |
|
|
|
inputProps: { |
|
|
|
type: INPUT_TYPES.password, |
|
|
|
type: INPUT_TYPES.password, |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
onBlur: ({ target: { value } }) => { |
|
|
|
|
|
|
|
testInput({ |
|
|
|
|
|
|
|
inputs: { [IT_IDS.adminPassword]: { value } }, |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}, |
|
|
|
onPasswordVisibilityAppend: (inputType) => { |
|
|
|
onPasswordVisibilityAppend: (inputType) => { |
|
|
|
setIsConfirmAdminPassword( |
|
|
|
const localIsConfirmAdminPassword = |
|
|
|
inputType === INPUT_TYPES.password, |
|
|
|
inputType === INPUT_TYPES.password; |
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
testInputToToggleSubmitDisabled({ |
|
|
|
|
|
|
|
isExcludeConfirmAdminPassword: |
|
|
|
|
|
|
|
!localIsConfirmAdminPassword, |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
setIsConfirmAdminPassword(localIsConfirmAdminPassword); |
|
|
|
|
|
|
|
setConfirmAdminPasswordInputMessage(); |
|
|
|
}, |
|
|
|
}, |
|
|
|
}} |
|
|
|
}} |
|
|
|
inputLabelProps={{ isNotifyRequired: true }} |
|
|
|
inputLabelProps={{ isNotifyRequired: true }} |
|
|
|
label="Admin password" |
|
|
|
label="Admin password" |
|
|
|
onChange={({ target: { value } }) => { |
|
|
|
onChange={({ target: { value } }) => { |
|
|
|
testInputSeparate(IT_IDS.adminPassword, { |
|
|
|
testInputToToggleSubmitDisabled({ |
|
|
|
value, |
|
|
|
inputs: { [IT_IDS.adminPassword]: { value } }, |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
setAdminPasswordInputMessage(); |
|
|
|
}} |
|
|
|
}} |
|
|
|
onHelp={() => { |
|
|
|
onHelp={() => { |
|
|
|
setHelpMessage( |
|
|
|
setHelpMessage( |
|
|
@ -689,15 +765,23 @@ const GeneralInitForm = forwardRef< |
|
|
|
inputProps: { |
|
|
|
inputProps: { |
|
|
|
type: INPUT_TYPES.password, |
|
|
|
type: INPUT_TYPES.password, |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
onBlur: ({ target: { value } }) => { |
|
|
|
|
|
|
|
testInput({ |
|
|
|
|
|
|
|
inputs: { |
|
|
|
|
|
|
|
[IT_IDS.confirmAdminPassword]: { value }, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}, |
|
|
|
}} |
|
|
|
}} |
|
|
|
inputLabelProps={{ |
|
|
|
inputLabelProps={{ |
|
|
|
isNotifyRequired: isConfirmAdminPassword, |
|
|
|
isNotifyRequired: isConfirmAdminPassword, |
|
|
|
}} |
|
|
|
}} |
|
|
|
label="Confirm password" |
|
|
|
label="Confirm password" |
|
|
|
onChange={({ target: { value } }) => { |
|
|
|
onChange={({ target: { value } }) => { |
|
|
|
testInputSeparate(IT_IDS.confirmAdminPassword, { |
|
|
|
testInputToToggleSubmitDisabled({ |
|
|
|
value, |
|
|
|
inputs: { [IT_IDS.confirmAdminPassword]: { value } }, |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
setConfirmAdminPasswordInputMessage(); |
|
|
|
}} |
|
|
|
}} |
|
|
|
/> |
|
|
|
/> |
|
|
|
} |
|
|
|
} |
|
|
|