add and remove bookmarked business action added
This commit is contained in:
@@ -0,0 +1,127 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:mzansi_innovation_hub/main.dart';
|
||||||
|
import 'package:mzansi_innovation_hub/mih_components/mih_objects/arguments.dart';
|
||||||
|
import 'package:mzansi_innovation_hub/mih_components/mih_objects/business.dart';
|
||||||
|
import 'package:mzansi_innovation_hub/mih_components/mih_package_components/mih_button.dart';
|
||||||
|
import 'package:mzansi_innovation_hub/mih_components/mih_package_components/mih_package_alert.dart';
|
||||||
|
import 'package:mzansi_innovation_hub/mih_components/mih_pop_up_messages/mih_loading_circle.dart';
|
||||||
|
import 'package:mzansi_innovation_hub/mih_config/mih_colors.dart';
|
||||||
|
import 'package:mzansi_innovation_hub/mih_services/mih_alert_services.dart';
|
||||||
|
import 'package:mzansi_innovation_hub/mih_services/mih_mzansi_directory_services.dart';
|
||||||
|
import 'package:supertokens_flutter/supertokens.dart';
|
||||||
|
|
||||||
|
class MihAddBookmarkAlert extends StatefulWidget {
|
||||||
|
final Business business;
|
||||||
|
final String? startUpSearch;
|
||||||
|
const MihAddBookmarkAlert({
|
||||||
|
super.key,
|
||||||
|
required this.business,
|
||||||
|
required this.startUpSearch,
|
||||||
|
});
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<MihAddBookmarkAlert> createState() => _MihAddBookmarkAlertState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _MihAddBookmarkAlertState extends State<MihAddBookmarkAlert> {
|
||||||
|
Future<void> addBookmark(String business_id) async {
|
||||||
|
showDialog(
|
||||||
|
context: context,
|
||||||
|
builder: (context) {
|
||||||
|
return const Mihloadingcircle();
|
||||||
|
},
|
||||||
|
);
|
||||||
|
String user_id = await SuperTokens.getUserId();
|
||||||
|
await MihMzansiDirectoryServices()
|
||||||
|
.addBookmarkedBusiness(user_id, business_id)
|
||||||
|
.then((statusCode) {
|
||||||
|
if (statusCode == 201) {
|
||||||
|
Navigator.of(context).pushNamedAndRemoveUntil(
|
||||||
|
'/mzansi-directory',
|
||||||
|
ModalRoute.withName('/'),
|
||||||
|
arguments: MzansiDirectoryArguments(
|
||||||
|
startUpSearch: widget.startUpSearch, // startUpSearch
|
||||||
|
personalSearch: false, // personalSearch
|
||||||
|
),
|
||||||
|
);
|
||||||
|
MihAlertServices().successAlert(
|
||||||
|
"Successfully Bookmarked Business!",
|
||||||
|
"${widget.business.Name} has successfully been added to favourite businessess in the Mzansi Directory.",
|
||||||
|
context,
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
Navigator.of(context).pop();
|
||||||
|
MihAlertServices().errorAlert(
|
||||||
|
"Error Adding Bookmark",
|
||||||
|
"An error occured while add ${widget.business.Name} to you Mzansi Directory, Please try again later.",
|
||||||
|
context,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return MihPackageAlert(
|
||||||
|
alertColour: MihColors.getSecondaryColor(context),
|
||||||
|
alertIcon: Icon(
|
||||||
|
Icons.warning_rounded,
|
||||||
|
size: 100,
|
||||||
|
color: MihColors.getSecondaryColor(context),
|
||||||
|
),
|
||||||
|
alertTitle: "Bookmark Business",
|
||||||
|
alertBody: Column(
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
"Are you sure you want to save ${widget.business.Name} to your Mzansi Directory?",
|
||||||
|
style: TextStyle(
|
||||||
|
color: MzansiInnovationHub.of(context)!.theme.secondaryColor(),
|
||||||
|
fontSize: 15,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 25),
|
||||||
|
Wrap(
|
||||||
|
spacing: 10,
|
||||||
|
runSpacing: 10,
|
||||||
|
children: [
|
||||||
|
MihButton(
|
||||||
|
width: 300,
|
||||||
|
onPressed: () async {
|
||||||
|
Navigator.of(context).pop();
|
||||||
|
},
|
||||||
|
buttonColor:
|
||||||
|
MzansiInnovationHub.of(context)!.theme.errorColor(),
|
||||||
|
child: Text(
|
||||||
|
"Cancel",
|
||||||
|
style: TextStyle(
|
||||||
|
color:
|
||||||
|
MzansiInnovationHub.of(context)!.theme.primaryColor(),
|
||||||
|
fontSize: 20,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
MihButton(
|
||||||
|
width: 300,
|
||||||
|
onPressed: () {
|
||||||
|
addBookmark(widget.business.business_id);
|
||||||
|
},
|
||||||
|
buttonColor:
|
||||||
|
MzansiInnovationHub.of(context)!.theme.successColor(),
|
||||||
|
child: Text(
|
||||||
|
"Bookmark Business",
|
||||||
|
style: TextStyle(
|
||||||
|
color:
|
||||||
|
MzansiInnovationHub.of(context)!.theme.primaryColor(),
|
||||||
|
fontSize: 20,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,11 +1,13 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:mzansi_innovation_hub/main.dart';
|
import 'package:mzansi_innovation_hub/main.dart';
|
||||||
|
import 'package:mzansi_innovation_hub/mih_components/mih_objects/bookmarked_business.dart';
|
||||||
import 'package:mzansi_innovation_hub/mih_components/mih_objects/business.dart';
|
import 'package:mzansi_innovation_hub/mih_components/mih_objects/business.dart';
|
||||||
import 'package:mzansi_innovation_hub/mih_components/mih_objects/business_review.dart';
|
import 'package:mzansi_innovation_hub/mih_components/mih_objects/business_review.dart';
|
||||||
import 'package:mzansi_innovation_hub/mih_components/mih_package_components/mih_button.dart';
|
|
||||||
import 'package:mzansi_innovation_hub/mih_components/mih_package_components/mih_package_alert.dart';
|
import 'package:mzansi_innovation_hub/mih_components/mih_package_components/mih_package_alert.dart';
|
||||||
import 'package:mzansi_innovation_hub/mih_components/mih_pop_up_messages/mih_loading_circle.dart';
|
import 'package:mzansi_innovation_hub/mih_components/mih_pop_up_messages/mih_loading_circle.dart';
|
||||||
import 'package:mzansi_innovation_hub/mih_config/mih_colors.dart';
|
import 'package:mzansi_innovation_hub/mih_config/mih_colors.dart';
|
||||||
|
import 'package:mzansi_innovation_hub/mih_packages/mzansi_profile/business_profile/components/mih_add_bookmark_alert.dart';
|
||||||
|
import 'package:mzansi_innovation_hub/mih_packages/mzansi_profile/business_profile/components/mih_delete_bookmark_alert.dart';
|
||||||
import 'package:mzansi_innovation_hub/mih_packages/mzansi_profile/business_profile/components/mih_review_business_window.dart';
|
import 'package:mzansi_innovation_hub/mih_packages/mzansi_profile/business_profile/components/mih_review_business_window.dart';
|
||||||
import 'package:mzansi_innovation_hub/mih_services/mih_mzansi_directory_services.dart';
|
import 'package:mzansi_innovation_hub/mih_services/mih_mzansi_directory_services.dart';
|
||||||
import 'package:redacted/redacted.dart';
|
import 'package:redacted/redacted.dart';
|
||||||
@@ -43,6 +45,8 @@ class MihBusinessCard extends StatefulWidget {
|
|||||||
|
|
||||||
class _MihBusinessCardState extends State<MihBusinessCard> {
|
class _MihBusinessCardState extends State<MihBusinessCard> {
|
||||||
Future<BusinessReview?>? _businessReviewFuture;
|
Future<BusinessReview?>? _businessReviewFuture;
|
||||||
|
Future<BookmarkedBusiness?>? _bookmarkedBusinessFuture;
|
||||||
|
|
||||||
Future<void> _makePhoneCall(String phoneNumber) async {
|
Future<void> _makePhoneCall(String phoneNumber) async {
|
||||||
final Uri url = Uri(scheme: 'tel', path: phoneNumber);
|
final Uri url = Uri(scheme: 'tel', path: phoneNumber);
|
||||||
if (await canLaunchUrl(url)) {
|
if (await canLaunchUrl(url)) {
|
||||||
@@ -347,10 +351,19 @@ class _MihBusinessCardState extends State<MihBusinessCard> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Future<BookmarkedBusiness?> getUserBookmark() async {
|
||||||
|
String user_id = await SuperTokens.getUserId();
|
||||||
|
return await MihMzansiDirectoryServices().getUserBookmarkOfBusiness(
|
||||||
|
user_id,
|
||||||
|
widget.business.business_id,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
super.initState();
|
super.initState();
|
||||||
_businessReviewFuture = getUserReview();
|
_businessReviewFuture = getUserReview();
|
||||||
|
_bookmarkedBusinessFuture = getUserBookmark();
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
@@ -439,84 +452,154 @@ class _MihBusinessCardState extends State<MihBusinessCard> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
FutureBuilder(
|
FutureBuilder(
|
||||||
future: _businessReviewFuture,
|
future: _businessReviewFuture,
|
||||||
builder: (context, asyncSnapshot) {
|
builder: (context, asyncSnapshot) {
|
||||||
if (asyncSnapshot.connectionState ==
|
if (asyncSnapshot.connectionState == ConnectionState.waiting) {
|
||||||
ConnectionState.waiting) {
|
// return SizedBox();
|
||||||
// return SizedBox();
|
return Column(
|
||||||
return Column(
|
children: [
|
||||||
children: [
|
Padding(
|
||||||
Padding(
|
padding: const EdgeInsets.symmetric(horizontal: 10.0),
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 10.0),
|
child: Divider(
|
||||||
child: Divider(
|
color: MzansiInnovationHub.of(context)!
|
||||||
color: MzansiInnovationHub.of(context)!
|
.theme
|
||||||
.theme
|
.primaryColor(),
|
||||||
.primaryColor(),
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
Container(
|
),
|
||||||
child: _buildContactInfo(
|
Container(
|
||||||
"Rate Us",
|
child: _buildContactInfo(
|
||||||
"Let us know how we are doing.",
|
"Rate Us",
|
||||||
Icons.star_rate_rounded,
|
|
||||||
MihColors.getYellowColor(context),
|
|
||||||
() {
|
|
||||||
// businessReviewRatingWindow(
|
|
||||||
// businessReview, true, widget.width);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
).redacted(context: context, redact: true),
|
|
||||||
],
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
BusinessReview? businessReview = asyncSnapshot.data;
|
|
||||||
String ratingDisplayTitle = "";
|
|
||||||
if (businessReview == null) {
|
|
||||||
ratingDisplayTitle = "Rate Us";
|
|
||||||
} else {
|
|
||||||
ratingDisplayTitle = "Update Rating";
|
|
||||||
}
|
|
||||||
return Column(
|
|
||||||
children: [
|
|
||||||
Padding(
|
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 10.0),
|
|
||||||
child: Divider(
|
|
||||||
color: MzansiInnovationHub.of(context)!
|
|
||||||
.theme
|
|
||||||
.primaryColor(),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
_buildContactInfo(
|
|
||||||
ratingDisplayTitle,
|
|
||||||
"Let us know how we are doing.",
|
"Let us know how we are doing.",
|
||||||
Icons.star_rate_rounded,
|
Icons.star_rate_rounded,
|
||||||
MihColors.getYellowColor(context),
|
MihColors.getYellowColor(context),
|
||||||
() {
|
() {
|
||||||
businessReviewRatingWindow(
|
// businessReviewRatingWindow(
|
||||||
businessReview, true, widget.width);
|
// businessReview, true, widget.width);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
],
|
).redacted(context: context, redact: true),
|
||||||
);
|
],
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
BusinessReview? businessReview = asyncSnapshot.data;
|
||||||
|
String ratingDisplayTitle = "";
|
||||||
|
if (businessReview == null) {
|
||||||
|
ratingDisplayTitle = "Rate Us";
|
||||||
|
} else {
|
||||||
|
ratingDisplayTitle = "Update Rating";
|
||||||
}
|
}
|
||||||
}),
|
return Column(
|
||||||
Padding(
|
children: [
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 10.0),
|
Padding(
|
||||||
child: Divider(
|
padding: const EdgeInsets.symmetric(horizontal: 10.0),
|
||||||
color: MzansiInnovationHub.of(context)!.theme.primaryColor(),
|
child: Divider(
|
||||||
),
|
color: MzansiInnovationHub.of(context)!
|
||||||
),
|
.theme
|
||||||
_buildContactInfo(
|
.primaryColor(),
|
||||||
"Bookmark",
|
),
|
||||||
"Save us for later.",
|
),
|
||||||
Icons.bookmark_add_rounded,
|
_buildContactInfo(
|
||||||
MihColors.getBluishPurpleColor(context),
|
ratingDisplayTitle,
|
||||||
() {
|
"Let us know how we are doing.",
|
||||||
// _launchWebsite(widget.website);
|
Icons.star_rate_rounded,
|
||||||
print("Saving ${widget.business.Name} to Directory");
|
MihColors.getYellowColor(context),
|
||||||
showBookmarkAlert();
|
() {
|
||||||
|
businessReviewRatingWindow(
|
||||||
|
businessReview, true, widget.width);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
FutureBuilder(
|
||||||
|
future: _bookmarkedBusinessFuture,
|
||||||
|
builder: (context, asyncSnapshot) {
|
||||||
|
if (asyncSnapshot.connectionState == ConnectionState.waiting) {
|
||||||
|
// return SizedBox();
|
||||||
|
return Column(
|
||||||
|
children: [
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 10.0),
|
||||||
|
child: Divider(
|
||||||
|
color: MzansiInnovationHub.of(context)!
|
||||||
|
.theme
|
||||||
|
.primaryColor(),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Container(
|
||||||
|
child: _buildContactInfo(
|
||||||
|
"Bookmark Us",
|
||||||
|
"Save us for later.",
|
||||||
|
Icons.bookmark_add_rounded,
|
||||||
|
MihColors.getBluishPurpleColor(context),
|
||||||
|
() {
|
||||||
|
// _launchWebsite(widget.website);
|
||||||
|
// print(
|
||||||
|
// "Saving ${widget.business.Name} to Directory");
|
||||||
|
// showBookmarkAlert();
|
||||||
|
},
|
||||||
|
),
|
||||||
|
).redacted(context: context, redact: true),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
BookmarkedBusiness? bookmarkBusiness = asyncSnapshot.data;
|
||||||
|
String bookmarkDisplayTitle = "";
|
||||||
|
if (bookmarkBusiness == null) {
|
||||||
|
bookmarkDisplayTitle = "Bookmark Us";
|
||||||
|
} else {
|
||||||
|
bookmarkDisplayTitle = "Remove Bookmark";
|
||||||
|
}
|
||||||
|
return Column(
|
||||||
|
children: [
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 10.0),
|
||||||
|
child: Divider(
|
||||||
|
color: MzansiInnovationHub.of(context)!
|
||||||
|
.theme
|
||||||
|
.primaryColor(),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
_buildContactInfo(
|
||||||
|
bookmarkDisplayTitle,
|
||||||
|
"Save us for later.",
|
||||||
|
bookmarkBusiness == null
|
||||||
|
? Icons.bookmark_add_rounded
|
||||||
|
: Icons.bookmark_remove_rounded,
|
||||||
|
MihColors.getBluishPurpleColor(context),
|
||||||
|
() {
|
||||||
|
// _launchWebsite(widget.website);
|
||||||
|
if (bookmarkBusiness == null) {
|
||||||
|
showAddBookmarkAlert();
|
||||||
|
} else {
|
||||||
|
showDeleteBookmarkAlert(bookmarkBusiness);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
),
|
||||||
|
// Padding(
|
||||||
|
// padding: const EdgeInsets.symmetric(horizontal: 10.0),
|
||||||
|
// child: Divider(
|
||||||
|
// color: MzansiInnovationHub.of(context)!.theme.primaryColor(),
|
||||||
|
// ),
|
||||||
|
// ),
|
||||||
|
// _buildContactInfo(
|
||||||
|
// "Bookmark",
|
||||||
|
// "Save us for later.",
|
||||||
|
// Icons.bookmark_add_rounded,
|
||||||
|
// MihColors.getBluishPurpleColor(context),
|
||||||
|
// () {
|
||||||
|
// // _launchWebsite(widget.website);
|
||||||
|
// print("Saving ${widget.business.Name} to Directory");
|
||||||
|
// showBookmarkAlert();
|
||||||
|
// },
|
||||||
|
// ),
|
||||||
const SizedBox(height: 10),
|
const SizedBox(height: 10),
|
||||||
// Padding(
|
// Padding(
|
||||||
// padding: const EdgeInsets.symmetric(horizontal: 10.0),
|
// padding: const EdgeInsets.symmetric(horizontal: 10.0),
|
||||||
@@ -578,116 +661,23 @@ class _MihBusinessCardState extends State<MihBusinessCard> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Future<void> businessReviewRatingWindow(
|
void showAddBookmarkAlert() {
|
||||||
// bool previouslyRated, double width) async {
|
|
||||||
// showDialog(
|
|
||||||
// context: context,
|
|
||||||
// builder: (context) => FutureBuilder(
|
|
||||||
// future: getUserReview(),
|
|
||||||
// builder: (context, asyncSnapshot) {
|
|
||||||
// if (asyncSnapshot.connectionState == ConnectionState.waiting) {
|
|
||||||
// return const Mihloadingcircle(
|
|
||||||
// message: "Checking for previous reviews...",
|
|
||||||
// );
|
|
||||||
// } else if (asyncSnapshot.connectionState == ConnectionState.done) {
|
|
||||||
// return MihReviewBusinessWindow(
|
|
||||||
// business: widget.business,
|
|
||||||
// businessReview: asyncSnapshot.data,
|
|
||||||
// screenWidth: width,
|
|
||||||
// readOnly: false,
|
|
||||||
// startUpSearch: widget.startUpSearch,
|
|
||||||
// );
|
|
||||||
// } else {
|
|
||||||
// return MihPackageAlert(
|
|
||||||
// alertColour: MzansiInnovationHub.of(context)!.theme.errorColor(),
|
|
||||||
// alertIcon: Icon(
|
|
||||||
// Icons.warning_rounded,
|
|
||||||
// size: 100,
|
|
||||||
// color: MzansiInnovationHub.of(context)!.theme.errorColor(),
|
|
||||||
// ),
|
|
||||||
// alertTitle: "Error Pulling Data",
|
|
||||||
// alertBody: Column(
|
|
||||||
// children: [
|
|
||||||
// Text(
|
|
||||||
// "Please ensure you are connectede top the internet and you are running the latest version of MIH then try again.",
|
|
||||||
// style: TextStyle(
|
|
||||||
// color: MzansiInnovationHub.of(context)!
|
|
||||||
// .theme
|
|
||||||
// .secondaryColor(),
|
|
||||||
// fontSize: 15,
|
|
||||||
// ),
|
|
||||||
// ),
|
|
||||||
// ],
|
|
||||||
// ),
|
|
||||||
// );
|
|
||||||
// }
|
|
||||||
// },
|
|
||||||
// ),
|
|
||||||
// );
|
|
||||||
// }
|
|
||||||
|
|
||||||
void showBookmarkAlert() {
|
|
||||||
showDialog(
|
showDialog(
|
||||||
context: context,
|
context: context,
|
||||||
builder: (context) => MihPackageAlert(
|
builder: (context) => MihAddBookmarkAlert(
|
||||||
alertColour: MihColors.getSecondaryColor(context),
|
business: widget.business,
|
||||||
alertIcon: Icon(
|
startUpSearch: widget.startUpSearch,
|
||||||
Icons.warning_rounded,
|
|
||||||
size: 100,
|
|
||||||
color: MihColors.getSecondaryColor(context),
|
|
||||||
),
|
|
||||||
alertTitle: "Bookmark Business",
|
|
||||||
alertBody: Column(
|
|
||||||
children: [
|
|
||||||
Text(
|
|
||||||
"Are you sure you want to save ${widget.business.Name} to your Mzansi Directory?",
|
|
||||||
style: TextStyle(
|
|
||||||
color: MzansiInnovationHub.of(context)!.theme.secondaryColor(),
|
|
||||||
fontSize: 15,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const SizedBox(height: 25),
|
|
||||||
Wrap(
|
|
||||||
spacing: 10,
|
|
||||||
runSpacing: 10,
|
|
||||||
children: [
|
|
||||||
MihButton(
|
|
||||||
width: 300,
|
|
||||||
onPressed: () async {
|
|
||||||
Navigator.of(context).pop();
|
|
||||||
},
|
|
||||||
buttonColor:
|
|
||||||
MzansiInnovationHub.of(context)!.theme.errorColor(),
|
|
||||||
child: Text(
|
|
||||||
"Cancel",
|
|
||||||
style: TextStyle(
|
|
||||||
color:
|
|
||||||
MzansiInnovationHub.of(context)!.theme.primaryColor(),
|
|
||||||
fontSize: 20,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
MihButton(
|
|
||||||
width: 300,
|
|
||||||
onPressed: () {},
|
|
||||||
buttonColor:
|
|
||||||
MzansiInnovationHub.of(context)!.theme.successColor(),
|
|
||||||
child: Text(
|
|
||||||
"Save Business",
|
|
||||||
style: TextStyle(
|
|
||||||
color:
|
|
||||||
MzansiInnovationHub.of(context)!.theme.primaryColor(),
|
|
||||||
fontSize: 20,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void showDeleteBookmarkAlert(BookmarkedBusiness? bookmarkBusiness) {
|
||||||
|
showDialog(
|
||||||
|
context: context,
|
||||||
|
builder: (context) => MihDeleteBookmarkAlert(
|
||||||
|
business: widget.business,
|
||||||
|
bookmarkBusiness: bookmarkBusiness,
|
||||||
|
startUpSearch: widget.startUpSearch,
|
||||||
|
));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,142 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:mzansi_innovation_hub/main.dart';
|
||||||
|
import 'package:mzansi_innovation_hub/mih_components/mih_objects/arguments.dart';
|
||||||
|
import 'package:mzansi_innovation_hub/mih_components/mih_objects/bookmarked_business.dart';
|
||||||
|
import 'package:mzansi_innovation_hub/mih_components/mih_objects/business.dart';
|
||||||
|
import 'package:mzansi_innovation_hub/mih_components/mih_package_components/mih_button.dart';
|
||||||
|
import 'package:mzansi_innovation_hub/mih_components/mih_package_components/mih_package_alert.dart';
|
||||||
|
import 'package:mzansi_innovation_hub/mih_components/mih_pop_up_messages/mih_loading_circle.dart';
|
||||||
|
import 'package:mzansi_innovation_hub/mih_config/mih_colors.dart';
|
||||||
|
import 'package:mzansi_innovation_hub/mih_services/mih_alert_services.dart';
|
||||||
|
import 'package:mzansi_innovation_hub/mih_services/mih_mzansi_directory_services.dart';
|
||||||
|
|
||||||
|
class MihDeleteBookmarkAlert extends StatefulWidget {
|
||||||
|
final Business business;
|
||||||
|
final BookmarkedBusiness? bookmarkBusiness;
|
||||||
|
final String? startUpSearch;
|
||||||
|
const MihDeleteBookmarkAlert({
|
||||||
|
super.key,
|
||||||
|
required this.business,
|
||||||
|
required this.bookmarkBusiness,
|
||||||
|
required this.startUpSearch,
|
||||||
|
});
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<MihDeleteBookmarkAlert> createState() => _MihDeleteBookmarkAlertState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _MihDeleteBookmarkAlertState extends State<MihDeleteBookmarkAlert> {
|
||||||
|
Future<void> deleteBookmark(int idbookmarked_businesses) async {
|
||||||
|
showDialog(
|
||||||
|
context: context,
|
||||||
|
builder: (context) {
|
||||||
|
return const Mihloadingcircle();
|
||||||
|
},
|
||||||
|
);
|
||||||
|
await MihMzansiDirectoryServices()
|
||||||
|
.deleteBookmarkedBusiness(idbookmarked_businesses)
|
||||||
|
.then((statusCode) {
|
||||||
|
if (statusCode == 200) {
|
||||||
|
// Navigator.of(context).pop(); //Remove loading circle
|
||||||
|
// Navigator.of(context).pop(); //Remove window
|
||||||
|
// Navigator.of(context).pop(); //Remove profile
|
||||||
|
// Navigator.of(context).pop(); //Remove directory
|
||||||
|
// Navigator.of(context).pushNamed(
|
||||||
|
// '/mzansi-directory',
|
||||||
|
// arguments: MzansiDirectoryArguments(
|
||||||
|
// startUpSearch: widget.startUpSearch, // startUpSearch
|
||||||
|
// personalSearch: false, // personalSearch
|
||||||
|
// ),
|
||||||
|
// );
|
||||||
|
Navigator.of(context).pushNamedAndRemoveUntil(
|
||||||
|
'/mzansi-directory',
|
||||||
|
ModalRoute.withName('/'),
|
||||||
|
arguments: MzansiDirectoryArguments(
|
||||||
|
startUpSearch: widget.startUpSearch, // startUpSearch
|
||||||
|
personalSearch: false, // personalSearch
|
||||||
|
),
|
||||||
|
);
|
||||||
|
MihAlertServices().successAlert(
|
||||||
|
"Successfully Removed Bookmark!",
|
||||||
|
"${widget.business.Name} has successfully been removed your favourite businessess in the Mzansi Directory.",
|
||||||
|
context,
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
//error messagek
|
||||||
|
Navigator.of(context).pop();
|
||||||
|
MihAlertServices().errorAlert(
|
||||||
|
"Error Adding Bookmark",
|
||||||
|
"An error occured while add ${widget.business.Name} to you Mzansi Directory, Please try again later.",
|
||||||
|
context,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return MihPackageAlert(
|
||||||
|
alertColour: MihColors.getSecondaryColor(context),
|
||||||
|
alertIcon: Icon(
|
||||||
|
Icons.warning_rounded,
|
||||||
|
size: 100,
|
||||||
|
color: MihColors.getSecondaryColor(context),
|
||||||
|
),
|
||||||
|
alertTitle: "Remove Bookmark",
|
||||||
|
alertBody: Column(
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
"Are you sure you want to remove ${widget.business.Name} from your Mzansi Directory?",
|
||||||
|
style: TextStyle(
|
||||||
|
color: MzansiInnovationHub.of(context)!.theme.secondaryColor(),
|
||||||
|
fontSize: 15,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 25),
|
||||||
|
Wrap(
|
||||||
|
spacing: 10,
|
||||||
|
runSpacing: 10,
|
||||||
|
children: [
|
||||||
|
MihButton(
|
||||||
|
width: 300,
|
||||||
|
onPressed: () async {
|
||||||
|
Navigator.of(context).pop();
|
||||||
|
},
|
||||||
|
buttonColor:
|
||||||
|
MzansiInnovationHub.of(context)!.theme.successColor(),
|
||||||
|
child: Text(
|
||||||
|
"Cancel",
|
||||||
|
style: TextStyle(
|
||||||
|
color:
|
||||||
|
MzansiInnovationHub.of(context)!.theme.primaryColor(),
|
||||||
|
fontSize: 20,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
MihButton(
|
||||||
|
width: 300,
|
||||||
|
onPressed: () {
|
||||||
|
// todo: remove bookmark
|
||||||
|
deleteBookmark(
|
||||||
|
widget.bookmarkBusiness!.idbookmarked_businesses);
|
||||||
|
},
|
||||||
|
buttonColor:
|
||||||
|
MzansiInnovationHub.of(context)!.theme.errorColor(),
|
||||||
|
child: Text(
|
||||||
|
"Remove Business",
|
||||||
|
style: TextStyle(
|
||||||
|
color:
|
||||||
|
MzansiInnovationHub.of(context)!.theme.primaryColor(),
|
||||||
|
fontSize: 20,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user