-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathscholarshipConfig.js
93 lines (92 loc) · 3.17 KB
/
scholarshipConfig.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import { statesList } from "./examConfig";
export const scholarshipConfig = {
name: "Scholarship Finder",
fields: [
{
name: "status",
label: "Enter Scholarship Status",
options: [
{ value: "Open", label: "Open" },
{ value: "Closed", label: "Closed" },
{ value: "show_both", label: "Both" },
],
},
{
name: "grade",
label: "Enter Grade",
options: [
{ value: "10", label: "Currently in 10th or below" },
{ value: "11", label: "Currently in 11th" },
{ value: "12", label: "Currently in 12th" },
{ value: "12_pass", label: "12th Pass/ Currently in 1st Year" },
{ value: "UG", label: "Currently in UG 2nd/3rd/4th year" },
{ value: "PG", label: "Currently in PG" },
{ value: "Diploma", label: "Currently in Diploma" },
],
},
{
name: "stream",
label: "Enter Stream",
options: [
{ value: "Engineering (BTech)", label: "Engineering (BTech)" },
{ value: "Medical (MBBS)", label: "Medical (MBBS)" },
{ value: "Medical (BDS)", label: "Medical (BDS)" },
{ value: "Pharmacy (BPharm)", label: "Pharmacy (BPharm)" },
{ value: "Nursing (BSc)", label: "Nursing (BSc)" },
{ value: "Architecture (BArch)", label: "Architecture (BArch)" },
{ value: "Law (LLB)", label: "Law (LLB)" },
{ value: "Management (BBA/MBA)", label: "Management (BBA/MBA)" },
{ value: "Science (BSc)", label: "Science (BSc)" },
{ value: "School", label: "School" },
{ value: "Commerce (BCom)", label: "Commerce (BCom)" },
{ value: "Arts", label: "Arts" },
{ value: "PG", label: "PG" },
{ value: "Diploma", label: "Diploma" },
{ value: "ITI", label: "ITI" },
{ value: "BCA", label: "BCA" },
{ value: "Any", label: "Any" },
],
},
{
name: "gender",
label: "Select Gender",
options: [
{ value: "Any", label: "Any" }, // New option added
{ value: "Others", label: "Others" },
{ value: "Both", label: "Male Only" }, // This is for handling the case when the scholarship is open for both.
{ value: "Female", label: "Female Only" },
],
},
{
name: "familyIncome",
label: "Enter your annual family income in lakhs",
helperText: [
"Scholarships might have specific eligibility within the range check requirements",
],
options: [
{ value: "2", label: "Up to 2 Lakh" },
{ value: "4", label: "Up to 4 Lakh" },
{ value: "6", label: "Up to 6 Lakh" },
{ value: "8", label: "Up to 8 Lakh" },
{ value: "10", label: "Up to 10 Lakh" },
{ value: "above", label: "Above 10 Lakh" },
],
},
// {
// name: "category",
// label: "Select Category",
// options: [
// { value: "OPEN", label: "OPEN" },
// { value: "SC", label: "SC" },
// { value: "ST", label: "ST" },
// { value: "Minority", label: "Minority" },
// { value: "General", label: "General" },
// ],
// },
{
name: "state",
label: "Select Your Home State",
options: statesList,
},
],
};