Patient Manager search function fixed to display only matches

This commit is contained in:
2024-07-05 15:25:27 +02:00
parent 712a7db2e8
commit 3a509dd721
2 changed files with 74 additions and 41 deletions

View File

@@ -15,18 +15,17 @@ class BuildPatientsList extends StatefulWidget {
State<BuildPatientsList> createState() => _BuildPatientsListState();
}
int indexOn = 0;
class _BuildPatientsListState extends State<BuildPatientsList> {
@override
Widget build(BuildContext context) {
return ListView.separated(
separatorBuilder: (BuildContext context, int index) {
separatorBuilder: (BuildContext context, index) {
return const Divider();
},
itemCount: widget.patients.length,
itemBuilder: (context, index) {
//final patient = widget.patients[index].id_no.contains(widget.searchString);
//print(index);
return widget.patients[index].id_no.contains(widget.searchString)
? ListTile(
title: Text(
@@ -40,7 +39,7 @@ class _BuildPatientsListState extends State<BuildPatientsList> {
},
trailing: const Icon(Icons.arrow_forward),
)
: Container();
: null;
},
);
}

View File

@@ -25,6 +25,8 @@ class _PatientManagerState extends State<PatientManager> {
TextEditingController searchController = TextEditingController();
String endpoint = "http://localhost:80/patients/user/";
late Future<List<Patient>> futurePatients;
// late Widget displayWidget;
//List<Patient> tempList;
String searchString = "";
Future<List<Patient>> fetchPatients(String endpoint) async {
@@ -41,9 +43,32 @@ class _PatientManagerState extends State<PatientManager> {
}
}
List<Patient> filterSearchResults(List<Patient> mainList, String query) {
return mainList
.where((tempList) => tempList.id_no.contains(query.toLowerCase()))
.toList();
}
// Widget displayList(List<Patient> patientsList, String searchString) {
// if (searchString.isNotEmpty && searchString != "") {
// return BuildPatientsList(
// patients: patientsList,
// searchString: searchString,
// );
// }
// return const Center(
// child: Text(
// "Please search for a Patient.",
// style: TextStyle(fontSize: 25, color: Colors.grey),
// textAlign: TextAlign.center,
// ),
// );
// }
@override
void initState() {
futurePatients = fetchPatients(endpoint + widget.userEmail);
//displayWidget = displayList(tempList, searchString);
super.initState();
}
@@ -71,48 +96,57 @@ class _PatientManagerState extends State<PatientManager> {
color: Colors.white,
),
),
body: FutureBuilder(
future: futurePatients,
builder: (context, snapshot) {
if (snapshot.connectionState == ConnectionState.waiting) {
return const Center(child: CircularProgressIndicator());
} else if (snapshot.hasData) {
final patientsList = snapshot.data!;
body: Row(
children: [
Expanded(
child: Column(children: [
//spacer
const SizedBox(height: 10),
MySearchField(
controller: searchController,
hintText: "ID Search",
required: false,
editable: true,
onTap: () {},
onChanged: (value) {
setState(() {
searchString = value;
});
},
),
//spacer
const SizedBox(height: 10),
//Expanded(child: displayWidget),
FutureBuilder(
future: futurePatients,
builder: (context, snapshot) {
if (snapshot.connectionState == ConnectionState.waiting) {
return const Center(child: CircularProgressIndicator());
} else if (snapshot.hasData) {
List<Patient> patientsList;
//print(patientsList);
if (searchString == "") {
patientsList = snapshot.data!;
} else {
patientsList =
filterSearchResults(snapshot.data!, searchString);
}
return Row(
children: [
Expanded(
child: Column(children: [
//spacer
const SizedBox(height: 10),
MySearchField(
controller: searchController,
hintText: "ID Search",
required: false,
editable: true,
onTap: () {},
onChanged: (value) {
setState(() {
searchString = value;
});
},
),
//spacer
const SizedBox(height: 10),
Expanded(
return Expanded(
child: BuildPatientsList(
patients: patientsList,
searchString: searchString,
),
),
]),
),
],
);
} else {
return const PatManAppDrawer(userEmail: "Error pulling email");
}
},
);
} else {
return const PatManAppDrawer(
userEmail: "Error pulling email");
}
},
),
]),
),
],
),
);
}