cpd_job_app/lib/jobs/jobs_screen.dart

220 lines
8.0 KiB
Dart
Raw Normal View History

import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:cpd_ss23/Search/search_job.dart';
import 'package:cpd_ss23/Widgets/bottom_nav_bar.dart';
import 'package:cpd_ss23/Widgets/job_widget.dart';
2023-06-06 21:29:18 +02:00
import 'package:firebase_auth/firebase_auth.dart';
import 'package:flutter/material.dart';
import '../Persistent/persistent.dart';
2023-06-06 21:29:18 +02:00
import '../services/global_variables.dart';
import '../user_state.dart';
class JobScreen extends StatefulWidget {
@override
State<JobScreen> createState() => _JobScreenState();
}
class _JobScreenState extends State<JobScreen> {
String? jobCategoryFilter;
final FirebaseAuth _auth = FirebaseAuth.instance;
_showTaskCategoriesDialog({required Size size}) {
showDialog(
2023-06-18 13:41:52 +02:00
context: context,
builder: (ctx) {
return AlertDialog(
backgroundColor: Colors.black54,
title: const Text(
"Job Category",
textAlign: TextAlign.center,
style: TextStyle(fontSize: 20, color: Colors.white),
),
content: Container(
width: size.width * 0.9,
child: ListView.builder(
shrinkWrap: true,
itemCount: Persistent.jobCategoryList.length,
itemBuilder: (ctx, index) {
return InkWell(
onTap: () {
setState(() {
jobCategoryFilter = Persistent.jobCategoryList[index];
});
Navigator.canPop(context) ? Navigator.pop(context) : null;
print(
"jobCategoryList[index], ${Persistent.jobCategoryList[index]}");
2023-06-18 13:41:52 +02:00
},
child: Row(
children: [
const Icon(
Icons.arrow_right_alt_outlined,
color: Colors.grey,
),
Padding(
padding: const EdgeInsets.all(8.0),
child: Text(
Persistent.jobCategoryList[index],
style: const TextStyle(
color: Colors.grey,
fontSize: 16,
),
2023-06-18 13:41:52 +02:00
),
)
],
),
2023-06-18 13:41:52 +02:00
);
},
),
),
actions: [
TextButton(
onPressed: () {
Navigator.canPop(context) ? Navigator.pop(context) : null;
},
child: const Text(
"Close",
style: TextStyle(
color: Colors.white,
fontSize: 16,
),
),
2023-06-18 13:41:52 +02:00
),
TextButton(
onPressed: () {
setState(() {
jobCategoryFilter = null;
});
Navigator.canPop(context) ? Navigator.pop(context) : null;
},
child: const Text("Cancel Filter",
style: TextStyle(color: Colors.white)),
),
],
);
},
);
}
@override
void initState() {
super.initState();
Persistent persistentObject = Persistent();
persistentObject.getMyData();
}
2023-06-06 21:29:18 +02:00
@override
Widget build(BuildContext context) {
Size size = MediaQuery.of(context).size;
return Scaffold(
2023-06-18 13:41:52 +02:00
bottomNavigationBar: BottomNavigationBarForApp(indexNum: 0),
body: Stack(
children: [
Image.network(
signupUrlImage,
fit: BoxFit.cover,
width: double.infinity,
height: double.infinity,
),
SingleChildScrollView(
child: SizedBox(
height: size.height - 18, // Adjust for bottom overflow
child: Column(
children: [
AppBar(
backgroundColor: Colors.transparent,
actions: [
IconButton(
icon: const Icon(
2023-06-18 13:41:52 +02:00
Icons.search_outlined,
color: Colors.white,
),
2023-06-06 21:29:18 +02:00
onPressed: () {
2023-06-18 13:41:52 +02:00
Navigator.pushReplacement(
context,
MaterialPageRoute(builder: (c) => SearchScreen()),
);
2023-06-06 21:29:18 +02:00
},
),
2023-06-18 13:41:52 +02:00
],
automaticallyImplyLeading: false,
leading: IconButton(
icon: const Icon(
Icons.filter_list_rounded,
color: Colors.white,
),
onPressed: () {
_showTaskCategoriesDialog(size: size);
},
),
2023-06-18 13:41:52 +02:00
),
Expanded(
child: StreamBuilder<QuerySnapshot<Map<String, dynamic>>>(
stream: FirebaseFirestore.instance
.collection("jobs")
.where("jobCategory", isEqualTo: jobCategoryFilter)
.where("recruitment", isEqualTo: true)
.orderBy("createdAt", descending: false)
.snapshots(),
builder: (context, AsyncSnapshot snapshot) {
if (snapshot.connectionState ==
ConnectionState.waiting) {
2023-06-11 20:09:04 +02:00
return const Center(
2023-06-18 13:41:52 +02:00
child: CircularProgressIndicator(),
2023-06-11 20:09:04 +02:00
);
2023-06-18 13:41:52 +02:00
} else if (snapshot.connectionState ==
ConnectionState.active) {
if (snapshot.data?.docs.isNotEmpty == true) {
return ListView.builder(
shrinkWrap: true,
itemCount: snapshot.data?.docs.length,
itemBuilder: (BuildContext context, int index) {
return JobWidget(
jobTitle: snapshot.data?.docs[index]
["jobTitle"],
jobDescription: snapshot.data!.docs[index]
["jobDescription"],
2023-06-18 13:41:52 +02:00
jobId: snapshot.data?.docs[index]["jobId"],
uploadedBy: snapshot.data?.docs[index]
["uploadedBy"],
userImage: snapshot.data?.docs[index]
["userImage"],
2023-06-18 13:41:52 +02:00
name: snapshot.data?.docs[index]["name"],
recruitment: snapshot.data?.docs[index]
["recruitment"],
2023-06-18 13:41:52 +02:00
email: snapshot.data?.docs[index]["email"],
location: snapshot.data?.docs[index]
["location"],
2023-06-18 13:41:52 +02:00
);
},
);
} else {
return const Center(
child: Text("There are no jobs"),
);
}
2023-06-11 20:09:04 +02:00
}
2023-06-18 13:41:52 +02:00
return const Center(
child: Text(
"Something went wrong",
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 30,
),
),
);
},
),
2023-06-18 13:41:52 +02:00
),
const SizedBox(height: 10),
],
2023-06-06 21:29:18 +02:00
),
),
2023-06-18 13:41:52 +02:00
),
],
),
);
2023-06-06 21:29:18 +02:00
}
}