Skip to content

Commit f179c4e

Browse files
authored
[offers][feat] Enhance submit offers form (yangshun#366)
* [eslint] Replace no-shadow with typescript no-shadow * [offers][feat] Add auto scroll to top * [offers][feat] Add error messages for text input fields * [offers][fix] Add warning dialogs * [offers][fix] Auto change currency according to TC currency * [offers][fix] Add select error messages and fix date picker labels * [offers][fix] Fix console warnings
1 parent 596a555 commit f179c4e

File tree

8 files changed

+284
-125
lines changed

8 files changed

+284
-125
lines changed

apps/portal/src/components/offers/Breadcrumb.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export function Breadcrumbs({ stepLabels, currentStep }: BreadcrumbsProps) {
77
return (
88
<div className="flex space-x-1">
99
{stepLabels.map((label, index) => (
10-
<>
10+
<div key={label}>
1111
{index === currentStep ? (
1212
<p className="text-sm text-purple-700">{label}</p>
1313
) : (
@@ -16,7 +16,7 @@ export function Breadcrumbs({ stepLabels, currentStep }: BreadcrumbsProps) {
1616
{index !== stepLabels.length - 1 && (
1717
<p className="text-sm text-gray-400">{'>'}</p>
1818
)}
19-
</>
19+
</div>
2020
))}
2121
</div>
2222
);

apps/portal/src/components/offers/OffersNavigation.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import type { ProductNavigationItems } from '~/components/global/ProductNavigation';
22

33
const navigation: ProductNavigationItems = [
4-
{ href: '/offers', name: 'Home' },
54
{ href: '/offers/submit', name: 'Benchmark your offer' },
65
];
76

apps/portal/src/components/offers/constants.ts

+13-18
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
import { EducationBackgroundType } from './types';
22

3-
const emptyOption = {
4-
label: '----',
5-
value: '',
6-
};
3+
export const emptyOption = '----';
74

85
// TODO: use enums
96
export const titleOptions = [
10-
emptyOption,
117
{
128
label: 'Software engineer',
139
value: 'Software engineer',
@@ -27,7 +23,6 @@ export const titleOptions = [
2723
];
2824

2925
export const companyOptions = [
30-
emptyOption,
3126
{
3227
label: 'Amazon',
3328
value: 'cl93patjt0000txewdi601mub',
@@ -51,7 +46,6 @@ export const companyOptions = [
5146
];
5247

5348
export const locationOptions = [
54-
emptyOption,
5549
{
5650
label: 'Singapore, Singapore',
5751
value: 'Singapore, Singapore',
@@ -67,7 +61,6 @@ export const locationOptions = [
6761
];
6862

6963
export const internshipCycleOptions = [
70-
emptyOption,
7164
{
7265
label: 'Summer',
7366
value: 'Summer',
@@ -91,7 +84,6 @@ export const internshipCycleOptions = [
9184
];
9285

9386
export const yearOptions = [
94-
emptyOption,
9587
{
9688
label: '2021',
9789
value: '2021',
@@ -110,17 +102,14 @@ export const yearOptions = [
110102
},
111103
];
112104

113-
const educationBackgroundTypes = Object.entries(EducationBackgroundType).map(
114-
([key, value]) => ({
115-
label: key,
116-
value,
117-
}),
118-
);
119-
120-
export const educationLevelOptions = [emptyOption, ...educationBackgroundTypes];
105+
export const educationLevelOptions = Object.entries(
106+
EducationBackgroundType,
107+
).map(([key, value]) => ({
108+
label: key,
109+
value,
110+
}));
121111

122112
export const educationFieldOptions = [
123-
emptyOption,
124113
{
125114
label: 'Computer Science',
126115
value: 'Computer Science',
@@ -134,3 +123,9 @@ export const educationFieldOptions = [
134123
value: 'Business Analytics',
135124
},
136125
];
126+
127+
export enum FieldError {
128+
NonNegativeNumber = 'Please fill in a non-negative number in this field.',
129+
Number = 'Please fill in a number in this field.',
130+
Required = 'Please fill in this field.',
131+
}

0 commit comments

Comments
 (0)