File size: 2,341 Bytes
e6f1924 | 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 | import { ComboboxOption } from "@/components/ui/combobox"
// Column definitions
export const allColumns = [
{ id: "fullName", label: "Full Name", category: "basic", visible: true },
{ id: "university1", label: "University 1", category: "education", visible: true },
{ id: "major1", label: "Major 1", category: "education", visible: true },
{ id: "gpa1", label: "GPA 1", category: "education", visible: true },
{ id: "domicile", label: "Domicile", category: "others", visible: true },
{ id: "yoe", label: "YoE", category: "others", visible: true },
{ id: "hardskills", label: "Hardskills", category: "others", visible: true },
{ id: "score", label: "Score", category: "basic", visible: true },
]
// Filter options for searchable dropdowns
export const universityOptions: ComboboxOption[] = [
{ value: "Institut Teknologi Bandung", label: "Institut Teknologi Bandung" },
{ value: "Universitas Indonesia", label: "Universitas Indonesia" },
{ value: "Universitas Gadjah Mada", label: "Universitas Gadjah Mada" },
]
export const majorOptions: ComboboxOption[] = [
{ value: "Teknik Elektro", label: "Teknik Elektro" },
{ value: "Teknik Informatika", label: "Teknik Informatika" },
{ value: "Sistem Informasi", label: "Sistem Informasi" },
]
export const gpaOptions: ComboboxOption[] = [
{ value: "3.0-3.5", label: "3.0 - 3.5" },
{ value: "3.5-4.0", label: "3.5 - 4.0" },
]
export const domicileOptions: ComboboxOption[] = [
{ value: "Jakarta", label: "Jakarta" },
{ value: "Bandung", label: "Bandung" },
{ value: "Surabaya", label: "Surabaya" },
{ value: "Yogyakarta", label: "Yogyakarta" },
]
export const yoeOptions: ComboboxOption[] = [
{ value: "0-2", label: "0-2 years" },
{ value: "3-5", label: "3-5 years" },
]
export const softskillsOptions: ComboboxOption[] = [
{ value: "communication", label: "Communication" },
{ value: "teamwork", label: "Teamwork" },
{ value: "leadership", label: "Leadership" },
]
export const certificationOptions: ComboboxOption[] = [
{ value: "aws", label: "AWS Certified" },
{ value: "google", label: "Google Cloud" },
{ value: "azure", label: "Azure" },
]
export const businessDomainOptions: ComboboxOption[] = [
{ value: "finance", label: "Finance" },
{ value: "healthcare", label: "Healthcare" },
{ value: "retail", label: "Retail" },
]
|