2024-08-30 12:24:54 +00:00
|
|
|
import 'package:discover_module/hive_fun.dart';
|
2024-06-27 08:38:43 +00:00
|
|
|
import 'package:discover_module/service.dart/service.dart';
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
|
|
|
|
class hcpProvider extends ChangeNotifier {
|
|
|
|
final apicall = Callapi();
|
|
|
|
|
|
|
|
List _list = [];
|
|
|
|
|
|
|
|
List get list => _list;
|
|
|
|
|
|
|
|
getHCPProvider() async {
|
|
|
|
final jsondata = await apicall.getallhcpdata();
|
|
|
|
|
|
|
|
_list = jsondata;
|
|
|
|
|
|
|
|
notifyListeners();
|
|
|
|
}
|
2024-07-19 08:45:14 +00:00
|
|
|
|
2024-08-30 12:24:54 +00:00
|
|
|
// getHCPHive() async {
|
|
|
|
// final jsondata = await apicall.getallhcpdata();
|
|
|
|
|
|
|
|
// _list = jsondata;
|
|
|
|
|
|
|
|
// notifyListeners();
|
|
|
|
// }
|
|
|
|
|
2024-08-19 08:44:44 +00:00
|
|
|
List searchHCP(String query) {
|
2024-07-19 08:45:14 +00:00
|
|
|
if (query.isEmpty) {
|
|
|
|
return List.from(_list); // Return full list if query is empty
|
|
|
|
} else {
|
|
|
|
// return _list
|
|
|
|
// .where(
|
|
|
|
// (hcp) => hcp['name'].toLowerCase().contains(query.toLowerCase()))
|
|
|
|
// .toList();
|
2024-08-30 12:24:54 +00:00
|
|
|
print("JsonIssList: $_list");
|
|
|
|
print("queryIssList: $query");
|
2024-07-19 08:45:14 +00:00
|
|
|
|
|
|
|
return _list
|
|
|
|
.where((hcp) =>
|
|
|
|
hcp['name'].toLowerCase().contains(query.toLowerCase()) ||
|
2024-08-30 12:24:54 +00:00
|
|
|
// (hcp['speciality'].toLowerCase().contains(query.toLowerCase()) ??
|
|
|
|
// hcp['spl'].toLowerCase().contains(query.toLowerCase())) ||
|
|
|
|
|
2024-07-19 08:45:14 +00:00
|
|
|
hcp['speciality'].toLowerCase().contains(query.toLowerCase()) ||
|
|
|
|
hcp['addr'].toLowerCase().contains(query.toLowerCase()))
|
|
|
|
.toList();
|
|
|
|
|
|
|
|
// return _list.where((hcp) {
|
|
|
|
// // Perform multiple checks using logical AND (&&)
|
|
|
|
// return hcp['name'].toLowerCase().contains(query.toLowerCase()) &&
|
|
|
|
// hcp['speciality'].toLowerCase().contains(query.toLowerCase()) &&
|
|
|
|
// hcp['addr'].toLowerCase().contains(query.toLowerCase());
|
|
|
|
// // Add more conditions as needed
|
|
|
|
// }).toList();
|
|
|
|
}
|
|
|
|
}
|
2024-08-30 12:24:54 +00:00
|
|
|
|
|
|
|
getHCPProviderHive() async {
|
|
|
|
final jsondata = await HiveFunctions.gethcpdata();
|
|
|
|
print("JsonDtaa: ${jsondata}");
|
|
|
|
|
|
|
|
_list = jsondata;
|
|
|
|
print("JsonDtaaList: $_list");
|
|
|
|
|
|
|
|
notifyListeners();
|
|
|
|
//print("Get_hcp_dataaaL ${HiveFunctions.gethcpdata()}");
|
|
|
|
}
|
2024-06-27 08:38:43 +00:00
|
|
|
}
|