You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
279 lines
8.7 KiB
279 lines
8.7 KiB
import { Box as MUIBox } from '@mui/material'; |
|
import { |
|
forwardRef, |
|
ForwardRefExoticComponent, |
|
RefAttributes, |
|
useImperativeHandle, |
|
useState, |
|
} from 'react'; |
|
|
|
import createFunction from '../lib/createFunction'; |
|
import createInputOnChangeHandler from '../lib/createInputOnChangeHandler'; |
|
import FlexBox from './FlexBox'; |
|
import isEmpty from '../lib/isEmpty'; |
|
import OutlinedInputWithLabel from './OutlinedInputWithLabel'; |
|
import pad from '../lib/pad'; |
|
import SuggestButton from './SuggestButton'; |
|
|
|
const MAX_ORGANIZATION_PREFIX_LENGTH = 5; |
|
const MIN_ORGANIZATION_PREFIX_LENGTH = 2; |
|
const MAX_HOST_NUMBER_LENGTH = 2; |
|
|
|
const MAP_TO_ORGANIZATION_PREFIX_BUILDER: Record< |
|
number, |
|
(words: string[]) => string |
|
> = { |
|
0: () => '', |
|
1: ([word]) => |
|
word.substring(0, MIN_ORGANIZATION_PREFIX_LENGTH).toLocaleLowerCase(), |
|
2: (words) => |
|
words.map((word) => word.substring(0, 1).toLocaleLowerCase()).join(''), |
|
}; |
|
|
|
const buildOrganizationPrefix = (organizationName: string) => { |
|
const words: string[] = organizationName |
|
.split(/\s/) |
|
.filter((word) => !/and|of/.test(word)) |
|
.slice(0, MAX_ORGANIZATION_PREFIX_LENGTH); |
|
|
|
const builderKey: number = words.length > 1 ? 2 : words.length; |
|
|
|
return MAP_TO_ORGANIZATION_PREFIX_BUILDER[builderKey](words); |
|
}; |
|
|
|
const buildHostName = ( |
|
organizationPrefix: string, |
|
hostNumber: number, |
|
domainName: string, |
|
) => |
|
isEmpty([organizationPrefix, hostNumber, domainName], { not: true }) |
|
? `${organizationPrefix}-striker${pad(hostNumber)}.${domainName}` |
|
: ''; |
|
|
|
const GeneralInitForm: ForwardRefExoticComponent<RefAttributes<unknown>> = |
|
forwardRef((generalInitFormProps, ref) => { |
|
const [organizationNameInput, setOrganizationNameInput] = |
|
useState<string>(''); |
|
const [organizationPrefixInput, setOrganizationPrefixInput] = |
|
useState<string>(''); |
|
const [ |
|
isOrganizationPrefixInputUserChanged, |
|
setIsOrganizationPrefixInputUserChanged, |
|
] = useState<boolean>(false); |
|
const [domainNameInput, setDomainNameInput] = useState<string>(''); |
|
const [hostNumberInput, setHostNumberInput] = useState<number>(0); |
|
const [hostNameInput, setHostNameInput] = useState<string>(''); |
|
const [isHostNameInputUserChanged, setIsHostNameInputUserChanged] = |
|
useState<boolean>(false); |
|
|
|
const handleOrganizationNameInputOnChange = createInputOnChangeHandler({ |
|
set: setOrganizationNameInput, |
|
}); |
|
const handleOrganizationPrefixInputOnChange = createInputOnChangeHandler({ |
|
postSet: () => { |
|
setIsOrganizationPrefixInputUserChanged(true); |
|
}, |
|
set: setOrganizationPrefixInput, |
|
}); |
|
const handleDomainNameInputOnChange = createInputOnChangeHandler({ |
|
set: setDomainNameInput, |
|
}); |
|
const handleHostNumberInputOnChange = createInputOnChangeHandler({ |
|
set: setHostNumberInput, |
|
setType: 'number', |
|
}); |
|
const handleHostNameInputOnChange = createInputOnChangeHandler({ |
|
postSet: () => { |
|
setIsHostNameInputUserChanged(true); |
|
}, |
|
set: setHostNameInput, |
|
}); |
|
const populateOrganizationPrefixInput = ({ |
|
organizationName = organizationNameInput, |
|
} = {}) => { |
|
const organizationPrefix = buildOrganizationPrefix(organizationName); |
|
|
|
setOrganizationPrefixInput(organizationPrefix); |
|
|
|
return organizationPrefix; |
|
}; |
|
const populateHostNameInput = ({ |
|
organizationPrefix = organizationPrefixInput, |
|
hostNumber = hostNumberInput, |
|
domainName = domainNameInput, |
|
} = {}) => { |
|
const hostName = buildHostName( |
|
organizationPrefix, |
|
hostNumber, |
|
domainName, |
|
); |
|
|
|
setHostNameInput(hostName); |
|
|
|
return hostName; |
|
}; |
|
const populateOrganizationPrefixInputOnBlur = createFunction( |
|
{ condition: !isOrganizationPrefixInputUserChanged }, |
|
populateOrganizationPrefixInput, |
|
); |
|
const populateHostNameInputOnBlur = createFunction( |
|
{ condition: !isHostNameInputUserChanged }, |
|
populateHostNameInput, |
|
); |
|
const handleOrganizationPrefixSuggest = createFunction( |
|
{ |
|
conditionFn: () => |
|
isOrganizationPrefixInputUserChanged && |
|
isEmpty([organizationNameInput], { not: true }), |
|
}, |
|
() => { |
|
const organizationPrefix = populateOrganizationPrefixInput(); |
|
|
|
if (!isHostNameInputUserChanged) { |
|
populateHostNameInput({ organizationPrefix }); |
|
} |
|
}, |
|
); |
|
const handlerHostNameSuggest = createFunction( |
|
{ |
|
conditionFn: () => |
|
isHostNameInputUserChanged && |
|
isEmpty([organizationPrefixInput, hostNumberInput, domainNameInput], { |
|
not: true, |
|
}), |
|
}, |
|
populateHostNameInput, |
|
); |
|
|
|
useImperativeHandle( |
|
ref, |
|
() => ({ |
|
organizationNameInput, |
|
organizationPrefixInput, |
|
domainNameInput, |
|
hostNumberInput, |
|
hostNameInput, |
|
}), |
|
[ |
|
organizationNameInput, |
|
organizationPrefixInput, |
|
domainNameInput, |
|
hostNumberInput, |
|
hostNameInput, |
|
], |
|
); |
|
|
|
return ( |
|
<MUIBox |
|
sx={{ |
|
display: 'flex', |
|
flexDirection: { xs: 'column', sm: 'row' }, |
|
|
|
'& > *': { |
|
flexBasis: '50%', |
|
}, |
|
|
|
'& > :not(:first-child)': { |
|
marginLeft: { xs: 0, sm: '1em' }, |
|
marginTop: { xs: '1em', sm: 0 }, |
|
}, |
|
}} |
|
> |
|
<FlexBox> |
|
<OutlinedInputWithLabel |
|
helpMessageBoxProps={{ |
|
text: 'Name of the organization that maintains this Anvil! system. You can enter anything that makes sense to you.', |
|
}} |
|
id="striker-init-general-organization-name" |
|
inputProps={{ |
|
onBlur: populateOrganizationPrefixInputOnBlur, |
|
}} |
|
label="Organization name" |
|
onChange={handleOrganizationNameInputOnChange} |
|
value={organizationNameInput} |
|
/> |
|
<OutlinedInputWithLabel |
|
helpMessageBoxProps={{ |
|
text: "Alphanumberic short-form of the organization name. It's used as the prefix for host names.", |
|
}} |
|
id="striker-init-general-organization-prefix" |
|
inputProps={{ |
|
endAdornment: ( |
|
<SuggestButton onClick={handleOrganizationPrefixSuggest} /> |
|
), |
|
inputProps: { |
|
maxLength: MAX_ORGANIZATION_PREFIX_LENGTH, |
|
style: { width: '2.5em' }, |
|
}, |
|
onBlur: populateHostNameInputOnBlur, |
|
sx: { |
|
minWidth: 'min-content', |
|
width: 'fit-content', |
|
}, |
|
}} |
|
label="Prefix" |
|
onChange={handleOrganizationPrefixInputOnChange} |
|
value={organizationPrefixInput} |
|
/> |
|
</FlexBox> |
|
<FlexBox> |
|
<OutlinedInputWithLabel |
|
helpMessageBoxProps={{ |
|
text: "Domain name for this striker. It's also the default domain used when creating new install manifests.", |
|
}} |
|
id="striker-init-general-domain-name" |
|
inputProps={{ |
|
onBlur: populateHostNameInputOnBlur, |
|
sx: { |
|
minWidth: { sm: '16em' }, |
|
width: { xs: '100%', sm: '50%' }, |
|
}, |
|
}} |
|
label="Domain name" |
|
onChange={handleDomainNameInputOnChange} |
|
value={domainNameInput} |
|
/> |
|
<OutlinedInputWithLabel |
|
helpMessageBoxProps={{ |
|
text: "Number or count of this striker; this should be '1' for the first striker, '2' for the second striker, and such.", |
|
}} |
|
id="striker-init-general-host-number" |
|
inputProps={{ |
|
inputProps: { maxLength: MAX_HOST_NUMBER_LENGTH }, |
|
onBlur: populateHostNameInputOnBlur, |
|
sx: { |
|
width: '5em', |
|
}, |
|
}} |
|
label="Host #" |
|
onChange={handleHostNumberInputOnChange} |
|
value={hostNumberInput} |
|
/> |
|
<OutlinedInputWithLabel |
|
helpMessageBoxProps={{ |
|
text: "Host name for this striker. It's usually a good idea to use the auto-generated value.", |
|
}} |
|
id="striker-init-general-host-name" |
|
inputProps={{ |
|
endAdornment: <SuggestButton onClick={handlerHostNameSuggest} />, |
|
inputProps: { |
|
style: { |
|
minWidth: '4em', |
|
}, |
|
}, |
|
sx: { |
|
minWidth: 'min-content', |
|
}, |
|
}} |
|
label="Host name" |
|
onChange={handleHostNameInputOnChange} |
|
value={hostNameInput} |
|
/> |
|
</FlexBox> |
|
</MUIBox> |
|
); |
|
}); |
|
|
|
GeneralInitForm.displayName = 'GeneralInitForm'; |
|
|
|
export default GeneralInitForm;
|
|
|