|
|
|
@ -18,11 +18,10 @@ import {
|
|
|
|
|
TextInput,
|
|
|
|
|
} from '@tih/ui';
|
|
|
|
|
|
|
|
|
|
import type { Filter } from '~/components/resumes/browse/resumeFilters';
|
|
|
|
|
import {
|
|
|
|
|
EXPERIENCE,
|
|
|
|
|
LOCATION,
|
|
|
|
|
ROLE,
|
|
|
|
|
EXPERIENCES,
|
|
|
|
|
LOCATIONS,
|
|
|
|
|
ROLES,
|
|
|
|
|
} from '~/components/resumes/browse/resumeFilters';
|
|
|
|
|
import SubmissionGuidelines from '~/components/resumes/submit-form/SubmissionGuidelines';
|
|
|
|
|
|
|
|
|
@ -47,12 +46,6 @@ type IFormInput = {
|
|
|
|
|
title: string;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const selectors: Array<Filter> = [
|
|
|
|
|
{ id: 'role', label: 'Role', options: ROLE },
|
|
|
|
|
{ id: 'experience', label: 'Experience Level', options: EXPERIENCE },
|
|
|
|
|
{ id: 'location', label: 'Location', options: LOCATION },
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
type InitFormDetails = {
|
|
|
|
|
additionalInfo?: string;
|
|
|
|
|
experience: string;
|
|
|
|
@ -261,11 +254,13 @@ export default function SubmitResumeForm({
|
|
|
|
|
onClose={() => setIsDialogShown(false)}>
|
|
|
|
|
Note that your current input will not be saved!
|
|
|
|
|
</Dialog>
|
|
|
|
|
<div className="mx-20 space-y-4 py-8">
|
|
|
|
|
<form onSubmit={handleSubmit(onSubmit)}>
|
|
|
|
|
<h1 className="mb-4 text-2xl font-bold">Upload a resume</h1>
|
|
|
|
|
<form
|
|
|
|
|
className="mt-8 w-full max-w-screen-lg space-y-6 self-center rounded-lg bg-white p-10 shadow-lg"
|
|
|
|
|
onSubmit={handleSubmit(onSubmit)}>
|
|
|
|
|
<h1 className="mb-4 text-center text-2xl font-semibold">
|
|
|
|
|
{isNewForm ? 'Upload a resume' : 'Update details'}
|
|
|
|
|
</h1>
|
|
|
|
|
{/* Title Section */}
|
|
|
|
|
<div className="mb-4">
|
|
|
|
|
<TextInput
|
|
|
|
|
{...register('title', { required: true })}
|
|
|
|
|
disabled={isLoading}
|
|
|
|
@ -274,20 +269,36 @@ export default function SubmitResumeForm({
|
|
|
|
|
required={true}
|
|
|
|
|
onChange={(val) => setValue('title', val)}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
{/* Selectors */}
|
|
|
|
|
{selectors.map((item) => (
|
|
|
|
|
<div key={item.id} className="mb-4">
|
|
|
|
|
<div className="flex gap-12">
|
|
|
|
|
<Select
|
|
|
|
|
{...register(item.id, { required: true })}
|
|
|
|
|
{...register('role', { required: true })}
|
|
|
|
|
defaultValue={undefined}
|
|
|
|
|
disabled={isLoading}
|
|
|
|
|
label={item.label}
|
|
|
|
|
options={item.options}
|
|
|
|
|
label="Role"
|
|
|
|
|
options={ROLES}
|
|
|
|
|
placeholder=" "
|
|
|
|
|
required={true}
|
|
|
|
|
onChange={(val) => setValue(item.id, val)}
|
|
|
|
|
onChange={(val) => setValue('role', val)}
|
|
|
|
|
/>
|
|
|
|
|
<Select
|
|
|
|
|
{...register('experience', { required: true })}
|
|
|
|
|
disabled={isLoading}
|
|
|
|
|
label="Experience Level"
|
|
|
|
|
options={EXPERIENCES}
|
|
|
|
|
placeholder=" "
|
|
|
|
|
required={true}
|
|
|
|
|
onChange={(val) => setValue('experience', val)}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
))}
|
|
|
|
|
<Select
|
|
|
|
|
{...register('location', { required: true })}
|
|
|
|
|
disabled={isLoading}
|
|
|
|
|
label="Location"
|
|
|
|
|
options={LOCATIONS}
|
|
|
|
|
placeholder=" "
|
|
|
|
|
required={true}
|
|
|
|
|
onChange={(val) => setValue('location', val)}
|
|
|
|
|
/>
|
|
|
|
|
{/* Upload resume form */}
|
|
|
|
|
{isNewForm && (
|
|
|
|
|
<>
|
|
|
|
@ -302,9 +313,7 @@ export default function SubmitResumeForm({
|
|
|
|
|
<div
|
|
|
|
|
{...getRootProps()}
|
|
|
|
|
className={clsx(
|
|
|
|
|
fileUploadError
|
|
|
|
|
? 'border-danger-600'
|
|
|
|
|
: 'border-gray-300',
|
|
|
|
|
fileUploadError ? 'border-danger-600' : 'border-gray-300',
|
|
|
|
|
'mt-2 flex cursor-pointer justify-center rounded-md border-2 border-dashed bg-gray-100 px-6 pt-5 pb-6',
|
|
|
|
|
)}>
|
|
|
|
|
<div className="space-y-1 text-center">
|
|
|
|
@ -348,15 +357,12 @@ export default function SubmitResumeForm({
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{fileUploadError && (
|
|
|
|
|
<p className="text-danger-600 text-sm">
|
|
|
|
|
{fileUploadError}
|
|
|
|
|
</p>
|
|
|
|
|
<p className="text-danger-600 text-sm">{fileUploadError}</p>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
</>
|
|
|
|
|
)}
|
|
|
|
|
{/* Additional Info Section */}
|
|
|
|
|
<div className="mb-8">
|
|
|
|
|
<TextArea
|
|
|
|
|
{...register('additionalInfo')}
|
|
|
|
|
disabled={isLoading}
|
|
|
|
@ -364,8 +370,9 @@ export default function SubmitResumeForm({
|
|
|
|
|
placeholder={ADDITIONAL_INFO_PLACEHOLDER}
|
|
|
|
|
onChange={(val) => setValue('additionalInfo', val)}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
{/* Submission Guidelines */}
|
|
|
|
|
{isNewForm && (
|
|
|
|
|
<>
|
|
|
|
|
<SubmissionGuidelines />
|
|
|
|
|
<CheckboxInput
|
|
|
|
|
{...register('isChecked', { required: true })}
|
|
|
|
@ -373,8 +380,10 @@ export default function SubmitResumeForm({
|
|
|
|
|
label="I have read and will follow the guidelines stated."
|
|
|
|
|
onChange={(val) => setValue('isChecked', val)}
|
|
|
|
|
/>
|
|
|
|
|
</>
|
|
|
|
|
)}
|
|
|
|
|
{/* Clear and Submit Buttons */}
|
|
|
|
|
<div className="mt-4 flex justify-end gap-4">
|
|
|
|
|
<div className="flex justify-end gap-4">
|
|
|
|
|
<Button
|
|
|
|
|
addonPosition="start"
|
|
|
|
|
disabled={isLoading}
|
|
|
|
@ -392,7 +401,6 @@ export default function SubmitResumeForm({
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
</main>
|
|
|
|
|
</>
|
|
|
|
|