2023-06-20 03:23:54 +02:00
|
|
|
import 'package:cloud_firestore/cloud_firestore.dart';
|
|
|
|
import 'package:cpd_ss23/Widgets/job_widget.dart';
|
2023-06-09 20:38:31 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
2023-06-20 03:23:54 +02:00
|
|
|
import '../jobs/jobs_screen.dart';
|
|
|
|
|
2023-06-09 20:38:31 +02:00
|
|
|
class SearchScreen extends StatefulWidget {
|
|
|
|
@override
|
|
|
|
State<SearchScreen> createState() => _SearchScreenState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _SearchScreenState extends State<SearchScreen> {
|
2023-06-20 03:23:54 +02:00
|
|
|
final TextEditingController _searchQueryController = TextEditingController();
|
|
|
|
String searchQuery = 'Search Query';
|
|
|
|
|
|
|
|
Widget _buildSearchField() {
|
|
|
|
return TextField(
|
|
|
|
controller: _searchQueryController,
|
|
|
|
autocorrect: true,
|
|
|
|
decoration: const InputDecoration(
|
|
|
|
hintText: "Search for jobs...",
|
|
|
|
border: InputBorder.none,
|
|
|
|
hintStyle: TextStyle(color: Colors.white),
|
|
|
|
),
|
|
|
|
style: const TextStyle(color: Colors.white, fontSize: 16.0),
|
|
|
|
onChanged: (query) => updateSearchQuery(query),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
List<Widget> _buildActions() {
|
|
|
|
return <Widget>[
|
|
|
|
IconButton(
|
|
|
|
icon: const Icon(Icons.clear),
|
|
|
|
onPressed: () {
|
|
|
|
_clearSearchQuery();
|
|
|
|
},
|
|
|
|
)
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
void _clearSearchQuery() {
|
|
|
|
setState(() {
|
|
|
|
_searchQueryController.clear();
|
|
|
|
updateSearchQuery("");
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void updateSearchQuery(String newQuery) {
|
|
|
|
setState(() {
|
|
|
|
searchQuery = newQuery;
|
|
|
|
print(searchQuery);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-06-09 20:38:31 +02:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Container(
|
|
|
|
decoration: const BoxDecoration(
|
|
|
|
gradient: LinearGradient(
|
|
|
|
colors: [Colors.cyan, Colors.white60],
|
|
|
|
begin: Alignment.centerLeft,
|
|
|
|
end: Alignment.centerRight,
|
|
|
|
stops: [0.2, 0.9])),
|
|
|
|
child: Scaffold(
|
|
|
|
backgroundColor: Colors.transparent,
|
|
|
|
appBar: AppBar(
|
2023-06-20 03:23:54 +02:00
|
|
|
title: _buildSearchField(),
|
2023-06-09 20:38:31 +02:00
|
|
|
centerTitle: true,
|
|
|
|
flexibleSpace: Container(
|
|
|
|
decoration: const BoxDecoration(
|
|
|
|
gradient: LinearGradient(
|
|
|
|
colors: [Colors.cyan, Colors.black],
|
|
|
|
begin: Alignment.centerLeft,
|
|
|
|
end: Alignment.centerRight,
|
|
|
|
stops: [0.2, 0.9])),
|
|
|
|
),
|
2023-06-20 03:23:54 +02:00
|
|
|
leading: IconButton(
|
|
|
|
onPressed: () {
|
|
|
|
Navigator.pushReplacement(context,
|
|
|
|
MaterialPageRoute(builder: (context) => JobScreen()));
|
|
|
|
},
|
|
|
|
icon: const Icon(Icons.arrow_back),
|
|
|
|
),
|
|
|
|
actions: _buildActions(),
|
|
|
|
),
|
|
|
|
body: StreamBuilder<QuerySnapshot<Map<String, dynamic>>>(
|
|
|
|
stream: FirebaseFirestore.instance
|
|
|
|
.collection("jobs")
|
|
|
|
.where("jobTitle", isGreaterThanOrEqualTo: searchQuery)
|
|
|
|
.where("recruitment", isEqualTo: true)
|
|
|
|
.snapshots(),
|
|
|
|
builder: (context, AsyncSnapshot snapshot) {
|
|
|
|
if (snapshot.connectionState == ConnectionState.waiting) {
|
|
|
|
return const Center(
|
|
|
|
child: CircularProgressIndicator(),
|
|
|
|
);
|
|
|
|
} else if (snapshot.connectionState == ConnectionState.active) {
|
|
|
|
if (snapshot.data?.docs.isNotEmpty == true) {
|
|
|
|
return ListView.builder(
|
|
|
|
itemCount: snapshot.data?.docs.length,
|
|
|
|
itemBuilder: (BuildContext context, int index) {
|
|
|
|
return JobWidget(
|
|
|
|
jobTitle: snapshot.data?.docs[index]["jobTitle"],
|
|
|
|
jobDescription: snapshot.data?.docs[index]
|
|
|
|
["jobDescription"],
|
|
|
|
jobId: snapshot.data?.docs[index]["jobId"],
|
|
|
|
uploadedBy: snapshot.data?.docs[index]["uploadedBy"],
|
|
|
|
userImage: snapshot.data?.docs[index]["userImage"],
|
|
|
|
name: snapshot.data?.docs[index]["name"],
|
|
|
|
recruitment: snapshot.data?.docs[index]["recruitment"],
|
|
|
|
email: snapshot.data?.docs[index]["email"],
|
|
|
|
location: snapshot.data?.docs[index]["location"]);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return const Center(
|
|
|
|
child: Text("There is no Job"),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return const Center(
|
|
|
|
child: Text(
|
|
|
|
"Something went wrong",
|
|
|
|
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 30.0),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
2023-06-09 20:38:31 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|