feat(student): fixed greydout botton in jobs application
This commit is contained in:
@@ -140,3 +140,20 @@ export async function getResumes(studentId: number) {
|
|||||||
return { success: false, error: 'Failed to fetch resumes' };
|
return { success: false, error: 'Failed to fetch resumes' };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function getStudentApplicationJobIds(studentId: number) {
|
||||||
|
try {
|
||||||
|
const studentApplications = await db.query.applications.findMany({
|
||||||
|
where: eq(applications.studentId, studentId),
|
||||||
|
columns: {
|
||||||
|
jobId: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const appliedJobIds = studentApplications.map(app => app.jobId);
|
||||||
|
return { success: true, appliedJobIds };
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error fetching student applied job IDs:', error);
|
||||||
|
return { success: false, error: 'Failed to fetch applied job IDs' };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -46,10 +46,12 @@ export default function JobsPage({
|
|||||||
jobs,
|
jobs,
|
||||||
resumes,
|
resumes,
|
||||||
studentId,
|
studentId,
|
||||||
|
appliedJobIds = [],
|
||||||
}: {
|
}: {
|
||||||
jobs: Job[];
|
jobs: Job[];
|
||||||
resumes: Resume[];
|
resumes: Resume[];
|
||||||
studentId: number;
|
studentId: number;
|
||||||
|
appliedJobIds?: number[];
|
||||||
}) {
|
}) {
|
||||||
const [filteredJobs, setFilteredJobs] = useState<Job[]>([]);
|
const [filteredJobs, setFilteredJobs] = useState<Job[]>([]);
|
||||||
const [searchTerm, setSearchTerm] = useState('');
|
const [searchTerm, setSearchTerm] = useState('');
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ import JobsClient from './JobClient';
|
|||||||
import { auth } from '@/auth';
|
import { auth } from '@/auth';
|
||||||
import { db, resumes } from '@workspace/db';
|
import { db, resumes } from '@workspace/db';
|
||||||
import { eq } from '@workspace/db/drizzle';
|
import { eq } from '@workspace/db/drizzle';
|
||||||
|
import { getStudentApplicationJobIds } from '../actions';
|
||||||
|
|
||||||
export default async function JobsPage() {
|
export default async function JobsPage() {
|
||||||
const session = await auth();
|
const session = await auth();
|
||||||
@@ -13,5 +14,9 @@ export default async function JobsPage() {
|
|||||||
});
|
});
|
||||||
let reusmes = await db.select().from(resumes).where(eq(resumes.studentId, studentId));
|
let reusmes = await db.select().from(resumes).where(eq(resumes.studentId, studentId));
|
||||||
|
|
||||||
return <JobsClient jobs={jobs} resumes={reusmes} studentId={studentId} />;
|
// Get student's applied job IDs
|
||||||
|
const { success, appliedJobIds } = await getStudentApplicationJobIds(studentId);
|
||||||
|
const studentAppliedJobIds = success ? appliedJobIds : [];
|
||||||
|
|
||||||
|
return <JobsClient jobs={jobs} resumes={reusmes} studentId={studentId} appliedJobIds={studentAppliedJobIds} />;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,30 +18,40 @@ import {
|
|||||||
AlertCircle
|
AlertCircle
|
||||||
} from "lucide-react"
|
} from "lucide-react"
|
||||||
import { applyForJob } from "../app/(main)/actions"
|
import { applyForJob } from "../app/(main)/actions"
|
||||||
|
import { type InferSelectModel } from '@workspace/db/drizzle';
|
||||||
|
import { jobs, companies, resumes } from '@workspace/db/schema';
|
||||||
|
|
||||||
|
export type Job = InferSelectModel<typeof jobs> & {
|
||||||
|
company: typeof companies.$inferSelect;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type Resume = typeof resumes.$inferSelect;t { useState } from 'react';
|
||||||
|
import { Card, CardContent, CardHeader, CardTitle } from "@workspace/ui/components/card"
|
||||||
|
import { Button } from "@workspace/ui/components/button"
|
||||||
|
import { Badge } from "@workspace/ui/components/badge"
|
||||||
|
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogTrigger } from "@workspace/ui/components/dialog"
|
||||||
|
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@workspace/ui/components/select"
|
||||||
|
import {
|
||||||
|
Building2,
|
||||||
|
MapPin,
|
||||||
|
DollarSign,
|
||||||
|
Calendar,
|
||||||
|
Star,
|
||||||
|
CheckCircle,
|
||||||
|
FileText,
|
||||||
|
Upload,
|
||||||
|
AlertCircle
|
||||||
|
} from "lucide-react"
|
||||||
|
import { applyForJob } from "../app/(main)/actions"
|
||||||
|
|
||||||
interface JobApplicationModalProps {
|
interface JobApplicationModalProps {
|
||||||
job: {
|
job: Job & { minCGPA: number };
|
||||||
id: number;
|
|
||||||
title: string;
|
|
||||||
company: {
|
|
||||||
name: string;
|
|
||||||
};
|
|
||||||
location: string;
|
|
||||||
salary: string;
|
|
||||||
description: string;
|
|
||||||
applicationDeadline: Date;
|
|
||||||
minCGPA: number;
|
|
||||||
link?: string;
|
|
||||||
};
|
|
||||||
studentId: number;
|
studentId: number;
|
||||||
resumes: Array<{
|
resumes: Resume[];
|
||||||
id: number;
|
isApplied?: boolean;
|
||||||
title: string;
|
|
||||||
link: string;
|
|
||||||
}>;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function JobApplicationModal({ job, studentId, resumes }: JobApplicationModalProps) {
|
export default function JobApplicationModal({ job, studentId, resumes, isApplied = false }: JobApplicationModalProps) {
|
||||||
const [isOpen, setIsOpen] = useState(false);
|
const [isOpen, setIsOpen] = useState(false);
|
||||||
const [selectedResume, setSelectedResume] = useState<string>('');
|
const [selectedResume, setSelectedResume] = useState<string>('');
|
||||||
const [isApplying, setIsApplying] = useState(false);
|
const [isApplying, setIsApplying] = useState(false);
|
||||||
|
|||||||
Reference in New Issue
Block a user