Skip to content

Commit

Permalink
chore: make image field optional
Browse files Browse the repository at this point in the history
  • Loading branch information
kituuu committed May 19, 2024
1 parent d2d8a91 commit 29f283e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 19 deletions.
31 changes: 13 additions & 18 deletions frontend/src/features/AddWorkspace/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const AddWorkspace = () => {
}
};

const validate: _VALIDATE_PROPS = (name, value, files) => {
const validate: _VALIDATE_PROPS = (name, value) => {
switch (name) {
case 'workspace':
if (!value) {
Expand All @@ -88,11 +88,6 @@ const AddWorkspace = () => {
return 'Workspace name already exist';
}
return '';
case 'image':
if (!FileList) {
return 'File is required';
}
return '';
case 'description':
if (value.length > 200) {
return 'Description should be less then 200 characters';
Expand Down Expand Up @@ -122,8 +117,8 @@ const AddWorkspace = () => {
}
};
const handleBlur = (e: React.FocusEvent<HTMLInputElement>) => {
const { name, value, files } = e.target;
const error = validate(name, value, files);
const { name, value } = e.target;
const error = validate(name, value);
setFormErrors({
...formErrors,
[name]: error,
Expand All @@ -132,17 +127,18 @@ const AddWorkspace = () => {

const handleSubmit: _FORM_SUBMIT = (event) => {
event.preventDefault();
const workspace_error = validate('workspace', form.workspace, null);
const desc_error = validate('description', form.description, null);
const image_error = form.image ? '' : 'Image is required';
const workspace_error = validate('workspace', form.workspace);
const desc_error = validate('description', form.description);
setFormErrors({
...formErrors,
workspace: workspace_error,
description: desc_error,
image: image_error,
});
if (workspace_error || desc_error || image_error)
toast.error('Check workspace, icon and description fields');
if (workspace_error || desc_error) {
if (workspace_error)
toast.error('Check workspace field');
if (desc_error) toast.error("Check description field")
}
else {
if (token) {
const newForm = form;
Expand Down Expand Up @@ -222,7 +218,7 @@ const AddWorkspace = () => {
>
<div className='single-form-element-container'>
<p className='label'>
Add Icon<span style={{ color: 'red', paddingLeft: '4px' }}>*</span>
Add Icon
</p>
<div className='file-input-container'>
<label htmlFor='icon-file' className='file-label'>
Expand All @@ -242,7 +238,6 @@ const AddWorkspace = () => {
<p>Supported formats: JPEG, JPG, PNG</p>
<p>Selected File: {form.image?.name}</p>
</div>
{formErrors.image && <p className='form-error'>{formErrors.image}</p>}
</div>
<div className='single-form-element-container'>
<label className='label' htmlFor='workspace-name'>
Expand Down Expand Up @@ -302,8 +297,8 @@ const AddWorkspace = () => {
type='button'
disabled={
form.member
? !users.includes(form.member) &&
form.member == userContext?.username
? (!users.includes(form.member) &&
form.member == userContext?.username)
: true
}
>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/features/AddWorkspace/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ export type _WORKSPACE_FORM_CHANGE = (

export type _FORM_SUBMIT = (event: FormEvent<HTMLFormElement>) => void;

export type _VALIDATE_PROPS = (name: string, value: string, files:FileList|null) => string;
export type _VALIDATE_PROPS = (name: string, value: string) => string;

0 comments on commit 29f283e

Please sign in to comment.