passo_mobile_app/lib/screens/profile/components/education_screen.dart

393 lines
22 KiB
Dart
Raw Normal View History

2023-04-25 07:50:36 +00:00
import 'package:app_popup_menu/app_popup_menu.dart';
2023-02-07 01:29:38 +00:00
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:flutter_progress_hud/flutter_progress_hud.dart';
import 'package:flutter_spinkit/flutter_spinkit.dart';
2023-04-25 07:50:36 +00:00
import 'package:fluttericon/font_awesome_icons.dart';
import 'package:unit2/bloc/profile/profile_bloc.dart';
import 'package:unit2/bloc/user/user_bloc.dart';
2023-02-07 01:29:38 +00:00
import 'package:unit2/model/profile/educational_background.dart';
2023-04-25 07:50:36 +00:00
import 'package:unit2/screens/profile/components/education/add_modal.dart';
2023-02-09 08:48:19 +00:00
import 'package:unit2/theme-data.dart/box_shadow.dart';
2023-02-07 01:29:38 +00:00
import 'package:unit2/theme-data.dart/colors.dart';
2023-02-09 08:48:19 +00:00
import 'package:unit2/utils/text_container.dart';
import 'package:unit2/widgets/Leadings/add_leading.dart';
import 'package:unit2/widgets/empty_data.dart';
import 'package:unit2/widgets/error_state.dart';
import '../../../bloc/profile/education/education_bloc.dart';
2023-04-25 07:50:36 +00:00
import '../../../utils/alerts.dart';
import '../../../widgets/Leadings/close_leading.dart';
2023-04-25 07:50:36 +00:00
import 'education/edit_modal.dart';
class EducationScreen extends StatelessWidget {
const EducationScreen({super.key});
2023-02-07 01:29:38 +00:00
@override
Widget build(BuildContext context) {
2023-04-25 07:50:36 +00:00
int profileId;
String? token;
2023-02-07 01:29:38 +00:00
return Scaffold(
appBar: AppBar(
2023-06-06 06:54:51 +00:00
title:context.watch<EducationBloc>().state is AddEducationState? const FittedBox(child: Text("Add Educational Background")): context.watch<EducationBloc>().state is EditEducationState?const FittedBox(child: Text("Edit Educational Background")):const Text("Education Background"),
centerTitle: true,
backgroundColor: primary,
actions: context.watch<EducationBloc>().state is EducationalBackgroundLoadedState?[
2023-04-25 07:50:36 +00:00
AddLeading(onPressed: () {
context.read<EducationBloc>().add(ShowAddEducationForm());
})
]:(context.watch<EducationBloc>().state is AddEducationState || context.watch<EducationBloc>().state is EditEducationState)?[
CloseLeading(onPressed: () {
context.read<EducationBloc>().add( LoadEducations());
})
]:[],
),
//userbloc
body: ProgressHUD(
padding: const EdgeInsets.all(24),
backgroundColor: Colors.black87,
indicatorWidget: const SpinKitFadingCircle(color: Colors.white),
child: BlocBuilder<UserBloc, UserState>(
builder: (context, state) {
if (state is UserLoggedIn) {
2023-04-25 07:50:36 +00:00
token = state.userData!.user!.login!.token;
profileId = state.userData!.user!.login!.user!.profileId!;
//profilebloc
return BlocBuilder<ProfileBloc, ProfileState>(
builder: (context, state) {
if (state is ProfileLoaded) {
//education bloc
return BlocConsumer<EducationBloc, EducationState>(
listener: (context, state) {
if (state is EducationalBackgroundLoadingState) {
final progress = ProgressHUD.of(context);
progress!.showWithText("Please wait...");
}
if (state is EducationalBackgroundLoadedState ||
2023-04-25 07:50:36 +00:00
state is EducationalBackgroundErrorState ||
state is AddEducationState ||
state is EditEducationState ||
state is EducationDeletedState || state is EditedEducationState) {
final progress = ProgressHUD.of(context);
progress!.dismiss();
}
2023-04-25 07:50:36 +00:00
////ADDED STATE
if (state is EducationAddedState) {
if (state.response['success']) {
successAlert(context, "Adding Successfull!",
state.response['message'], () {
Navigator.of(context).pop();
context
.read<EducationBloc>()
.add(LoadEducations());
});
} else {
errorAlert(context, "Adding Failed",
"Something went wrong. Please try again.",
() {
Navigator.of(context).pop();
context
.read<EducationBloc>()
.add(LoadEducations());
});
}
}
////EDITED STATE
if (state is EditedEducationState) {
if (state.response['success']) {
successAlert(context, "Update Successfull!",
state.response['message'], () {
Navigator.of(context).pop();
context
.read<EducationBloc>()
.add(LoadEducations());
});
} else {
errorAlert(context, "Updated Failed",
"Something went wrong. Please try again.",
() {
Navigator.of(context).pop();
context
.read<EducationBloc>()
.add(LoadEducations());
});
}
}
////DELETED STATE
if (state is EducationDeletedState) {
if (state.success) {
successAlert(context, "Deletion Successfull",
"Educational Background has been deleted successfully",
() {
Navigator.of(context).pop();
context
.read<EducationBloc>()
.add(LoadEducations());
});
} else {
errorAlert(context, "Deletion Failed",
"Error deleting Education Background", () {
Navigator.of(context).pop();
context
.read<EducationBloc>()
.add(LoadEducations());
});
}
}
},
builder: (context, state) {
if (state is EducationalBackgroundLoadedState) {
if (state.educationalBackground.isNotEmpty) {
return ListView.builder(
padding: const EdgeInsets.symmetric(
vertical: 8, horizontal: 10),
itemCount: state.educationalBackground.length,
itemBuilder:
(BuildContext context, int index) {
String level = state
.educationalBackground[index]
.education!
.level!;
String periodFrom = state
.educationalBackground[index]
.periodFrom!;
String periodTo = state
.educationalBackground[index].periodTo!;
String? program = state
.educationalBackground[index]
.education!
.course ==
null
? null
: state.educationalBackground[index]
.education!.course!.program!;
List<Honor>? honors = state
.educationalBackground[index].honors!
.toList();
String school = state
.educationalBackground[index]
.education!
.school!
.name!;
return Column(
2023-02-09 08:48:19 +00:00
children: [
Container(
decoration: box1(),
padding: const EdgeInsets.symmetric(
horizontal: 12, vertical: 8),
child: Row(
children: [
Expanded(
child: Column(
mainAxisAlignment:
MainAxisAlignment.start,
crossAxisAlignment:
CrossAxisAlignment
.start,
children: [
Row(
children: [
Expanded(
child: Text(
level,
style: Theme.of(
context)
.textTheme
2023-06-06 06:54:51 +00:00
.titleSmall!
)),
Text(
2023-06-06 06:54:51 +00:00
"$periodFrom - $periodTo",
style: Theme.of(
context)
.textTheme
.bodyMedium,
),
],
),
const SizedBox(
height: 5,
),
Text(
school,
style: Theme.of(context)
.textTheme
2023-06-06 06:54:51 +00:00
.titleMedium!.copyWith(color: primary,fontWeight: FontWeight.w500),
),
Container(
padding:
const EdgeInsets
.only(top: 8),
child: honors
.isNotEmpty
? Column(
mainAxisAlignment:
MainAxisAlignment
.start,
crossAxisAlignment:
CrossAxisAlignment
.start,
children: [
2023-06-06 06:54:51 +00:00
const SizedBox(height: 8,),
const Text(
2023-06-06 06:54:51 +00:00
" honors: ",
style: TextStyle(
fontWeight:
FontWeight.w600),
),
Column(
children: honors
.map((Honor honor) =>
2023-06-06 06:54:51 +00:00
Text("-${honor.name!.trim()}",style: Theme.of(context).textTheme.labelMedium,))
.toList(),
),
],
)
: const SizedBox()),
program == null
? const SizedBox()
: Column(
mainAxisAlignment:
MainAxisAlignment
.start,
crossAxisAlignment:
CrossAxisAlignment
.start,
children: [
const SizedBox(
height: 5,
),
Text(program),
],
),
]),
),
2023-04-25 07:50:36 +00:00
AppPopupMenu<int>(
offset: const Offset(-10, -10),
elevation: 3,
onSelected: (value) {
////delete -= = = = = = = = =>>
if (value == 2) {
confirmAlert(context, () {
final progress =
ProgressHUD.of(
context);
progress!.showWithText(
"Loading...");
context
.read<EducationBloc>()
.add(DeleteEducation(
educationalBackground:
state.educationalBackground[
index],
profileId:
profileId,
token: token!));
}, "Delete?",
"Confirm Delete?");
}
if (value == 1) {
////edit -= = = = = = = = =>>
final progress =
ProgressHUD.of(context);
progress!.showWithText(
"Loading...");
context
.read<EducationBloc>()
.add(ShowEditEducationForm(
profileId:
profileId,
token: token!,
educationalBackground:
state.educationalBackground[
index]));
}
},
menuItems: [
popMenuItem(
2023-06-06 06:54:51 +00:00
text: "Update",
2023-04-25 07:50:36 +00:00
value: 1,
icon: Icons.edit),
popMenuItem(
2023-06-06 06:54:51 +00:00
text: "Remove",
2023-04-25 07:50:36 +00:00
value: 2,
icon: Icons.delete),
2023-06-06 06:54:51 +00:00
popMenuItem(
text: "Attach",
value: 2,
icon: Icons.attach_file),
2023-04-25 07:50:36 +00:00
],
icon: const Icon(
Icons.more_vert,
color: Colors.grey,
),
tooltip: "Options",
)
],
),
),
2023-02-09 08:48:19 +00:00
const SizedBox(
height: 5,
),
],
);
});
} else {
2023-06-06 06:54:51 +00:00
return const EmptyData(
message:
"You don't have any Educational Background added. Please click + to add.");
}
}
if (state is EducationalBackgroundErrorState) {
return SomethingWentWrong(
2023-06-06 06:54:51 +00:00
message: state.message, onpressed: () {
context.read<EducationBloc>().add(GetEducationalBackground(profileId: profileId, token: token!));
});
}
2023-04-25 07:50:36 +00:00
if (state is AddEducationState) {
return AddEducationScreen(
token: token!,
profileId: profileId,
);
}
if (state is EditEducationState) {
return EditEducationScreen(
token: token!,
profileId: profileId,
);
}
return Container();
},
);
}
return Container();
},
);
}
return Container();
},
),
));
2023-02-07 01:29:38 +00:00
}
2023-04-25 07:50:36 +00:00
PopupMenuItem<int> popMenuItem({String? text, int? value, IconData? icon}) {
return PopupMenuItem(
value: value,
child: Row(
children: [
Icon(
icon,
),
const SizedBox(
width: 10,
),
Text(
text!,
),
],
),
);
}
2023-02-07 01:29:38 +00:00
}