wizard: add user information step (HMS-4903)

This commit introduces the user information step with the following fields:
(*) `userName` field
(*) `password` field
(*) add unit tests for create and edit mode
This commit is contained in:
Michal Gold 2024-12-18 17:39:51 +02:00 committed by Lucas Garfield
parent 7da478791e
commit d0f2317649
8 changed files with 342 additions and 3 deletions

View file

@ -0,0 +1,66 @@
import React from 'react';
import { Form, FormGroup } from '@patternfly/react-core';
import { useAppDispatch, useAppSelector } from '../../../../../store/hooks';
import {
selectUserNameByIndex,
selectUserPasswordByIndex,
setUserNameByIndex,
setUserPasswordByIndex,
} from '../../../../../store/wizardSlice';
import { HookValidatedInput } from '../../../ValidatedTextInput';
const UserInfo = () => {
const dispatch = useAppDispatch();
const index = 0;
const userNameSelector = selectUserNameByIndex(index);
const userName = useAppSelector(userNameSelector);
const userPasswordSelector = selectUserPasswordByIndex(index);
const userPassword = useAppSelector(userPasswordSelector);
const handleNameChange = (
_e: React.FormEvent<HTMLInputElement>,
value: string
) => {
dispatch(setUserNameByIndex({ index: index, name: value }));
};
const handlePasswordChange = (
_event: React.FormEvent<HTMLInputElement>,
value: string
) => {
dispatch(setUserPasswordByIndex({ index: index, password: value }));
};
const stepValidation = {
errors: {},
disabledNext: false,
};
return (
<Form>
<FormGroup isRequired label="Username">
<HookValidatedInput
ariaLabel="blueprint user name"
value={userName || ''}
placeholder="Enter username"
onChange={(_e, value) => handleNameChange(_e, value)}
stepValidation={stepValidation}
fieldName="userName"
/>
</FormGroup>
<FormGroup isRequired label="Password">
<HookValidatedInput
ariaLabel="blueprint user password"
value={userPassword || ''}
onChange={(_e, value) => handlePasswordChange(_e, value)}
placeholder="Enter password"
stepValidation={stepValidation}
fieldName="userPassword"
/>
</FormGroup>
</Form>
);
};
export default UserInfo;