242 lines
7.0 KiB
Dart
242 lines
7.0 KiB
Dart
import 'dart:convert';
|
|
|
|
import 'package:Mzansi_Innovation_Hub/mih_components/mih_pop_up_messages/mih_loading_circle.dart';
|
|
import 'package:Mzansi_Innovation_Hub/mih_objects/app_user.dart';
|
|
import 'package:Mzansi_Innovation_Hub/mih_objects/appointment.dart';
|
|
import 'package:flutter/material.dart';
|
|
// import '../mih_components/mih_pop_up_messages/mih_error_message.dart';
|
|
// import '../mih_components/mih_pop_up_messages/mih_success_message.dart';
|
|
// import '../mih_env/env.dart';
|
|
// import '../mih_objects/app_user.dart';
|
|
// import '../mih_objects/arguments.dart';
|
|
// import '../mih_objects/business.dart';
|
|
// import '../mih_objects/business_user.dart';
|
|
// import '../mih_objects/notification.dart';
|
|
// import '../mih_objects/patient_access.dart';
|
|
// import '../mih_objects/patient_queue.dart';
|
|
// import '../mih_objects/patients.dart';
|
|
import 'package:supertokens_flutter/http.dart' as http;
|
|
|
|
import '../mih_components/mih_pop_up_messages/mih_error_message.dart';
|
|
import '../mih_components/mih_pop_up_messages/mih_success_message.dart';
|
|
import '../mih_env/env.dart';
|
|
|
|
class MihMzansiCalendarApis {
|
|
final baseAPI = AppEnviroment.baseApiUrl;
|
|
|
|
/// This function is used to fetch a list of appointment for a personal user.
|
|
///
|
|
/// Patameters:
|
|
/// app_id,
|
|
/// date (yyyy-mm-dd),
|
|
///
|
|
/// Returns Future<List<Appointment>>.
|
|
static Future<List<Appointment>> getPersonalAppointments(
|
|
String app_id,
|
|
String date,
|
|
) async {
|
|
//print("Patien manager page: $endpoint");
|
|
final response = await http.get(Uri.parse(
|
|
"${AppEnviroment.baseApiUrl}/appointments/personal/$app_id?date=$date"));
|
|
// print("Here");
|
|
// print("Body: ${response.body}");
|
|
// print("Code: ${response.statusCode}");
|
|
// errorCode = response.statusCode.toString();
|
|
// errorBody = response.body;
|
|
|
|
if (response.statusCode == 200) {
|
|
//print("Here1");
|
|
Iterable l = jsonDecode(response.body);
|
|
//print("Here2");
|
|
List<Appointment> personalAppointments =
|
|
List<Appointment>.from(l.map((model) => Appointment.fromJson(model)));
|
|
//print("Here3");
|
|
//print(patientQueue);
|
|
return personalAppointments;
|
|
} else {
|
|
throw Exception('failed to fatch loyalty cards');
|
|
}
|
|
}
|
|
|
|
/// This function is used to Delete loyalty card from users mzansi Calendar.
|
|
///
|
|
/// Patameters:-
|
|
/// AppUser signedInUser,
|
|
/// int idloyalty_cards,
|
|
/// BuildContext context,
|
|
///
|
|
/// Returns VOID (TRIGGERS NOTIGICATIOPN ON SUCCESS)
|
|
static Future<void> deleteLoyaltyCardAPICall(
|
|
AppUser signedInUser,
|
|
int idappointments,
|
|
BuildContext context,
|
|
) async {
|
|
var response = await http.delete(
|
|
Uri.parse("${AppEnviroment.baseApiUrl}/appointment/delete/"),
|
|
headers: <String, String>{
|
|
"Content-Type": "application/json; charset=UTF-8"
|
|
},
|
|
body: jsonEncode(<String, dynamic>{"idappointments": idappointments}),
|
|
);
|
|
//print("Here4");
|
|
//print(response.statusCode);
|
|
if (response.statusCode == 200) {
|
|
Navigator.of(context).pop();
|
|
Navigator.of(context).pop();
|
|
Navigator.of(context).pushNamed(
|
|
'/calendar',
|
|
arguments: signedInUser,
|
|
);
|
|
String message =
|
|
"The appointment has been deleted successfully. This means it will no longer be visible in your Calendar.";
|
|
successPopUp(message, context);
|
|
} else {
|
|
internetConnectionPopUp(context);
|
|
}
|
|
}
|
|
|
|
/// This function is used to add an appointment to users mzansi Calendar.
|
|
///
|
|
/// Patameters:-
|
|
/// AppUser signedInUser,
|
|
/// String app_id,
|
|
/// String title,
|
|
/// String description,
|
|
/// String date,
|
|
/// String time,
|
|
/// BuildContext context,
|
|
///
|
|
/// Returns VOID (TRIGGERS SUCCESS pop up)
|
|
static Future<void> addPersonalAppointment(
|
|
AppUser signedInUser,
|
|
String app_id,
|
|
String title,
|
|
String description,
|
|
String date,
|
|
String time,
|
|
BuildContext context,
|
|
) async {
|
|
loadingPopUp(context);
|
|
var response = await http.post(
|
|
Uri.parse("${AppEnviroment.baseApiUrl}/appointment/insert/"),
|
|
headers: <String, String>{
|
|
"Content-Type": "application/json; charset=UTF-8"
|
|
},
|
|
body: jsonEncode(<String, dynamic>{
|
|
"app_id": app_id,
|
|
"business_id": "",
|
|
"title": title,
|
|
"description": description,
|
|
"date": date,
|
|
"time": time,
|
|
}),
|
|
);
|
|
if (response.statusCode == 201) {
|
|
Navigator.pop(context);
|
|
Navigator.pop(context);
|
|
Navigator.pop(context);
|
|
String message =
|
|
"Your appointment \"$title\" for the $date $title has been deleted.";
|
|
|
|
// Navigator.pop(context);
|
|
Navigator.of(context).pushNamed(
|
|
'/calendar',
|
|
arguments: signedInUser,
|
|
);
|
|
successPopUp(message, context);
|
|
} else {
|
|
Navigator.pop(context);
|
|
internetConnectionPopUp(context);
|
|
}
|
|
}
|
|
|
|
/// This function is used to update an appointment to users mzansi Calendar.
|
|
///
|
|
/// Patameters:-
|
|
/// AppUser signedInUser,
|
|
/// String app_id,
|
|
/// int idappointments,
|
|
/// String title,
|
|
/// String description,
|
|
/// String date,
|
|
/// String time,
|
|
/// BuildContext context,
|
|
///
|
|
/// Returns VOID (TRIGGERS SUCCESS pop up)
|
|
static Future<void> updatePersonalAppointment(
|
|
AppUser signedInUser,
|
|
int idappointments,
|
|
String title,
|
|
String description,
|
|
String date,
|
|
String time,
|
|
BuildContext context,
|
|
) async {
|
|
loadingPopUp(context);
|
|
var response = await http.put(
|
|
Uri.parse("${AppEnviroment.baseApiUrl}/appointment/update/"),
|
|
headers: <String, String>{
|
|
"Content-Type": "application/json; charset=UTF-8"
|
|
},
|
|
body: jsonEncode(<String, dynamic>{
|
|
"idappointments": idappointments,
|
|
"title": title,
|
|
"description": description,
|
|
"date": date,
|
|
"time": time,
|
|
}),
|
|
);
|
|
if (response.statusCode == 200) {
|
|
Navigator.pop(context);
|
|
Navigator.pop(context);
|
|
Navigator.pop(context);
|
|
String message =
|
|
"Your appointment \"$title\" has been updates to the $date $title.";
|
|
|
|
Navigator.pop(context);
|
|
Navigator.of(context).pushNamed(
|
|
'/calendar',
|
|
arguments: signedInUser,
|
|
);
|
|
successPopUp(message, context);
|
|
} else {
|
|
Navigator.pop(context);
|
|
internetConnectionPopUp(context);
|
|
}
|
|
}
|
|
|
|
//================== POP UPS ==========================================================================
|
|
|
|
static void internetConnectionPopUp(BuildContext context) {
|
|
showDialog(
|
|
context: context,
|
|
builder: (context) {
|
|
return const MIHErrorMessage(
|
|
errorType: "Internet Connection",
|
|
);
|
|
},
|
|
);
|
|
}
|
|
|
|
static void successPopUp(String message, BuildContext context) {
|
|
showDialog(
|
|
context: context,
|
|
builder: (context) {
|
|
return MIHSuccessMessage(
|
|
successType: "Success",
|
|
successMessage: message,
|
|
);
|
|
},
|
|
);
|
|
}
|
|
|
|
static void loadingPopUp(BuildContext context) {
|
|
showDialog(
|
|
context: context,
|
|
builder: (context) {
|
|
return const Mihloadingcircle();
|
|
},
|
|
);
|
|
}
|
|
}
|