agency areaType selection
parent
749bd30fab
commit
8fea765258
|
@ -59,9 +59,18 @@ class ProfileBloc extends Bloc<ProfileEvent, ProfileState> {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
on<GetPrimaryBasicInfo>((event, emit) {
|
on<GetPrimaryBasicInfo>((event, emit) {
|
||||||
currentProfileInformation = event.primaryBasicInformation;
|
if(currentProfileInformation != null){
|
||||||
emit(BasicInformationProfileLoaded(
|
emit(BasicInformationProfileLoaded(
|
||||||
primaryBasicInformation: event.primaryBasicInformation));
|
primaryBasicInformation: currentProfileInformation!));
|
||||||
|
}else{
|
||||||
|
currentProfileInformation = event.primaryBasicInformation;
|
||||||
|
emit(BasicInformationProfileLoaded(
|
||||||
|
primaryBasicInformation: currentProfileInformation!));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
on<LoadBasicPrimaryInfo>((event, emit) {
|
on<LoadBasicPrimaryInfo>((event, emit) {
|
||||||
emit(BasicInformationProfileLoaded(
|
emit(BasicInformationProfileLoaded(
|
||||||
|
@ -132,6 +141,7 @@ class ProfileBloc extends Bloc<ProfileEvent, ProfileState> {
|
||||||
if (status['success']) {
|
if (status['success']) {
|
||||||
Profile profile = Profile.fromJson(status['data']);
|
Profile profile = Profile.fromJson(status['data']);
|
||||||
currentProfileInformation = profile;
|
currentProfileInformation = profile;
|
||||||
|
|
||||||
emit(BasicProfileInfoEditedState(response: status));
|
emit(BasicProfileInfoEditedState(response: status));
|
||||||
}
|
}
|
||||||
emit(BasicProfileInfoEditedState(response: status));
|
emit(BasicProfileInfoEditedState(response: status));
|
||||||
|
|
|
@ -29,8 +29,10 @@ class AssignAreaBloc extends Bloc<AssignAreaEvent, AssignAreaState> {
|
||||||
fullname = profile!.lastName;
|
fullname = profile!.lastName;
|
||||||
fullname = "${fname!} ${lname!}";
|
fullname = "${fname!} ${lname!}";
|
||||||
id = profile!.webuserId!;
|
id = profile!.webuserId!;
|
||||||
userAssignedAreas = await RbacAssignedAreaServices.instance.getAssignedArea(id: profile!.webuserId!);
|
userAssignedAreas = await RbacAssignedAreaServices.instance
|
||||||
emit(AssignedAreaLoadedState(userAssignedAreas: userAssignedAreas, fullname: fullname!));
|
.getAssignedArea(id: profile!.webuserId!);
|
||||||
|
emit(AssignedAreaLoadedState(
|
||||||
|
userAssignedAreas: userAssignedAreas, fullname: fullname!));
|
||||||
} else {
|
} else {
|
||||||
emit(UserNotExistError());
|
emit(UserNotExistError());
|
||||||
}
|
}
|
||||||
|
@ -38,5 +40,26 @@ class AssignAreaBloc extends Bloc<AssignAreaEvent, AssignAreaState> {
|
||||||
emit(AssignAreaErorState(message: e.toString()));
|
emit(AssignAreaErorState(message: e.toString()));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
on<LoadAssignedAreas>((event, emit) async {
|
||||||
|
emit(AssignedAreaLoadedState(
|
||||||
|
userAssignedAreas: userAssignedAreas, fullname: fullname!));
|
||||||
|
});
|
||||||
|
on<DeleteAssignedArea>((event, emit) async {
|
||||||
|
emit(AssignAreaLoadingState());
|
||||||
|
try {
|
||||||
|
bool success = await RbacRoleAssignmentServices.instance
|
||||||
|
.deleteAssignedRole(roleId: event.areaId);
|
||||||
|
if (success) {
|
||||||
|
emit(AssignedAreaDeletedState(success: success));
|
||||||
|
} else {
|
||||||
|
emit(AssignedAreaDeletedState(success: success));
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
emit(AssignAreaErorState(message: e.toString()));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
on<CallErrorState>((event, emit) {
|
||||||
|
emit(AssignAreaErorState(message: event.message));
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,5 +10,22 @@ class GetAssignArea extends AssignAreaEvent{
|
||||||
final String firstname;
|
final String firstname;
|
||||||
final String lastname;
|
final String lastname;
|
||||||
const GetAssignArea({required this.firstname, required this.lastname});
|
const GetAssignArea({required this.firstname, required this.lastname});
|
||||||
|
@override
|
||||||
|
List<Object> get props => [firstname,lastname];
|
||||||
|
}
|
||||||
|
class DeleteAssignedArea extends AssignAreaEvent{
|
||||||
|
final int areaId;
|
||||||
|
const DeleteAssignedArea({required this.areaId});
|
||||||
|
@override
|
||||||
|
List<Object> get props => [areaId];
|
||||||
|
}
|
||||||
|
|
||||||
|
class LoadAssignedAreas extends AssignAreaEvent{
|
||||||
|
|
||||||
|
}
|
||||||
|
class CallErrorState extends AssignAreaEvent{
|
||||||
|
final String message;
|
||||||
|
const CallErrorState({required this.message});
|
||||||
|
@override
|
||||||
|
List<Object> get props => [message];
|
||||||
}
|
}
|
|
@ -17,6 +17,8 @@ class AssignedAreaLoadedState extends AssignAreaState{
|
||||||
class AssignAreaErorState extends AssignAreaState {
|
class AssignAreaErorState extends AssignAreaState {
|
||||||
final String message;
|
final String message;
|
||||||
const AssignAreaErorState({required this.message});
|
const AssignAreaErorState({required this.message});
|
||||||
|
@override
|
||||||
|
List<Object> get props => [message];
|
||||||
}
|
}
|
||||||
class AssignAreaLoadingState extends AssignAreaState{
|
class AssignAreaLoadingState extends AssignAreaState{
|
||||||
|
|
||||||
|
@ -26,3 +28,9 @@ class UserNotExistError extends AssignAreaState{
|
||||||
|
|
||||||
}
|
}
|
||||||
class AssignAreaInitial extends AssignAreaState {}
|
class AssignAreaInitial extends AssignAreaState {}
|
||||||
|
class AssignedAreaDeletedState extends AssignAreaState{
|
||||||
|
final bool success;
|
||||||
|
const AssignedAreaDeletedState({required this.success});
|
||||||
|
@override
|
||||||
|
List<Object> get props => [success];
|
||||||
|
}
|
|
@ -30,7 +30,7 @@ class RoleAssignmentBloc
|
||||||
lname = profile!.lastName;
|
lname = profile!.lastName;
|
||||||
fullname = "${fname!} ${lname!}";
|
fullname = "${fname!} ${lname!}";
|
||||||
assignedRoles = await RbacRoleAssignmentServices.instance
|
assignedRoles = await RbacRoleAssignmentServices.instance
|
||||||
.getAssignedRoles(firstname: fname!, lastname: lname!);
|
.getAssignedRoles(firstname: event.firstname, lastname: event.lastname);
|
||||||
|
|
||||||
if (roles.isEmpty) {
|
if (roles.isEmpty) {
|
||||||
roles = await RbacRoleServices.instance.getRbacRoles();
|
roles = await RbacRoleServices.instance.getRbacRoles();
|
||||||
|
|
|
@ -40,6 +40,8 @@ class UserBloc extends Bloc<UserEvent, UserState> {
|
||||||
final String? saved = CREDENTIALS?.get('saved');
|
final String? saved = CREDENTIALS?.get('saved');
|
||||||
username = CREDENTIALS?.get('username');
|
username = CREDENTIALS?.get('username');
|
||||||
password = CREDENTIALS?.get('password');
|
password = CREDENTIALS?.get('password');
|
||||||
|
print(username);
|
||||||
|
print(password);
|
||||||
if (saved != null) {
|
if (saved != null) {
|
||||||
save = true;
|
save = true;
|
||||||
add(UserLogin(username: username, password: password));
|
add(UserLogin(username: username, password: password));
|
||||||
|
|
|
@ -36,7 +36,7 @@ class MyApp extends StatelessWidget {
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
_appRouter = AppRouter();
|
_appRouter = AppRouter();
|
||||||
final mediaQueryData =
|
final mediaQueryData =
|
||||||
MediaQueryData.fromWindow(WidgetsBinding.instance.window);
|
MediaQueryData.fromView(WidgetsBinding.instance.window);
|
||||||
screenWidth = mediaQueryData.size.width;
|
screenWidth = mediaQueryData.size.width;
|
||||||
screenHeight = mediaQueryData.size.height;
|
screenHeight = mediaQueryData.size.height;
|
||||||
blockSizeHorizontal = screenWidth / 100;
|
blockSizeHorizontal = screenWidth / 100;
|
||||||
|
|
|
@ -3,27 +3,23 @@ import 'package:unit2/model/rbac/rbac.dart';
|
||||||
import '../roles/pass_check/assign_role_area_type.dart';
|
import '../roles/pass_check/assign_role_area_type.dart';
|
||||||
|
|
||||||
class UserAssignedArea {
|
class UserAssignedArea {
|
||||||
final int id;
|
|
||||||
final AssignedRole? assignedRole;
|
final AssignedRole? assignedRole;
|
||||||
final AssignRoleAreaType? assignedRoleAreaType;
|
final AssignRoleAreaType? assignedRoleAreaType;
|
||||||
final dynamic assignedArea;
|
final dynamic assignedArea;
|
||||||
|
|
||||||
UserAssignedArea({
|
UserAssignedArea({
|
||||||
required this.id,
|
|
||||||
required this.assignedRole,
|
required this.assignedRole,
|
||||||
required this.assignedRoleAreaType,
|
required this.assignedRoleAreaType,
|
||||||
required this.assignedArea,
|
required this.assignedArea,
|
||||||
});
|
});
|
||||||
|
|
||||||
factory UserAssignedArea.fromJson(Map<String, dynamic> json) => UserAssignedArea(
|
factory UserAssignedArea.fromJson(Map<String, dynamic> json) => UserAssignedArea(
|
||||||
id: json["id"],
|
|
||||||
assignedRole: json['assigned_role'] == null? null: AssignedRole.fromJson(json["assigned_role"]),
|
assignedRole: json['assigned_role'] == null? null: AssignedRole.fromJson(json["assigned_role"]),
|
||||||
assignedRoleAreaType: json['assigned_role_area_type'] == null? null : AssignRoleAreaType.fromJson(json["assigned_role_area_type"]),
|
assignedRoleAreaType: json['assigned_role_area_type'] == null? null : AssignRoleAreaType.fromJson(json["assigned_role_area_type"]),
|
||||||
assignedArea: json["assigned_area"],
|
assignedArea: json["assigned_area"],
|
||||||
);
|
);
|
||||||
|
|
||||||
Map<String, dynamic> toJson() => {
|
Map<String, dynamic> toJson() => {
|
||||||
"id": id,
|
|
||||||
"assigned_role": assignedRole?.toJson(),
|
"assigned_role": assignedRole?.toJson(),
|
||||||
"assigned_role_area_type": assignedRoleAreaType?.toJson(),
|
"assigned_role_area_type": assignedRoleAreaType?.toJson(),
|
||||||
"assigned_area": assignedArea,
|
"assigned_area": assignedArea,
|
||||||
|
|
|
@ -87,13 +87,13 @@ class CreatedBy {
|
||||||
|
|
||||||
class Role {
|
class Role {
|
||||||
final int id;
|
final int id;
|
||||||
final String name;
|
final String? name;
|
||||||
final String slug;
|
final String? slug;
|
||||||
final String shorthand;
|
final String? shorthand;
|
||||||
final DateTime createdAt;
|
final DateTime? createdAt;
|
||||||
final DateTime updatedAt;
|
final DateTime? updatedAt;
|
||||||
final CreatedBy createdBy;
|
final CreatedBy? createdBy;
|
||||||
final CreatedBy updatedBy;
|
final CreatedBy? updatedBy;
|
||||||
|
|
||||||
Role({
|
Role({
|
||||||
required this.id,
|
required this.id,
|
||||||
|
@ -111,10 +111,10 @@ class Role {
|
||||||
name: json["name"],
|
name: json["name"],
|
||||||
slug: json["slug"],
|
slug: json["slug"],
|
||||||
shorthand: json["shorthand"],
|
shorthand: json["shorthand"],
|
||||||
createdAt: DateTime.parse(json["created_at"]),
|
createdAt:json["created_at"] ==null?null: DateTime.parse(json["created_at"]),
|
||||||
updatedAt: DateTime.parse(json["updated_at"]),
|
updatedAt:json["updated_at"] == null?null: DateTime.parse(json["updated_at"]),
|
||||||
createdBy: CreatedBy.fromJson(json["created_by"]),
|
createdBy:json["created_by"] == null?null: CreatedBy.fromJson(json["created_by"]),
|
||||||
updatedBy: CreatedBy.fromJson(json["updated_by"]),
|
updatedBy:json["updated_by"] == null?null: CreatedBy.fromJson(json["updated_by"]),
|
||||||
);
|
);
|
||||||
|
|
||||||
Map<String, dynamic> toJson() => {
|
Map<String, dynamic> toJson() => {
|
||||||
|
@ -122,9 +122,9 @@ class Role {
|
||||||
"name": name,
|
"name": name,
|
||||||
"slug": slug,
|
"slug": slug,
|
||||||
"shorthand": shorthand,
|
"shorthand": shorthand,
|
||||||
"created_at": createdAt.toIso8601String(),
|
"created_at": createdAt?.toIso8601String(),
|
||||||
"updated_at": updatedAt.toIso8601String(),
|
"updated_at": updatedAt?.toIso8601String(),
|
||||||
"created_by": createdBy.toJson(),
|
"created_by": createdBy?.toJson(),
|
||||||
"updated_by": updatedBy.toJson(),
|
"updated_by": updatedBy?.toJson(),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,6 +24,7 @@ class EditBasicProfileInfoScreen extends StatefulWidget {
|
||||||
State<EditBasicProfileInfoScreen> createState() =>
|
State<EditBasicProfileInfoScreen> createState() =>
|
||||||
_EditBasicProfileInfoScreenState();
|
_EditBasicProfileInfoScreenState();
|
||||||
}
|
}
|
||||||
|
|
||||||
final bdayController = TextEditingController();
|
final bdayController = TextEditingController();
|
||||||
ProfileOtherInfo? selectedIndigency;
|
ProfileOtherInfo? selectedIndigency;
|
||||||
ProfileOtherInfo? selectedEthnicity;
|
ProfileOtherInfo? selectedEthnicity;
|
||||||
|
@ -36,13 +37,13 @@ String? selectedStatus;
|
||||||
String? selectedExtension;
|
String? selectedExtension;
|
||||||
final _formKey = GlobalKey<FormBuilderState>();
|
final _formKey = GlobalKey<FormBuilderState>();
|
||||||
|
|
||||||
|
|
||||||
class _EditBasicProfileInfoScreenState
|
class _EditBasicProfileInfoScreenState
|
||||||
extends State<EditBasicProfileInfoScreen> {
|
extends State<EditBasicProfileInfoScreen> {
|
||||||
@override
|
@override
|
||||||
void dispose() {
|
void dispose() {
|
||||||
super.dispose();
|
super.dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return BlocBuilder<ProfileBloc, ProfileState>(
|
return BlocBuilder<ProfileBloc, ProfileState>(
|
||||||
|
@ -52,7 +53,8 @@ class _EditBasicProfileInfoScreenState
|
||||||
selectedSex = state.sexes.firstWhere((element) =>
|
selectedSex = state.sexes.firstWhere((element) =>
|
||||||
element.toLowerCase() ==
|
element.toLowerCase() ==
|
||||||
state.primaryInformation.sex!.toLowerCase());
|
state.primaryInformation.sex!.toLowerCase());
|
||||||
if (state.primaryInformation.bloodType != null && state.primaryInformation.bloodType != "N/A") {
|
if (state.primaryInformation.bloodType != null &&
|
||||||
|
state.primaryInformation.bloodType != "N/A") {
|
||||||
selectedBloodType = state.bloodTypes.firstWhere((element) =>
|
selectedBloodType = state.bloodTypes.firstWhere((element) =>
|
||||||
element.toLowerCase() ==
|
element.toLowerCase() ==
|
||||||
state.primaryInformation.bloodType?.toLowerCase());
|
state.primaryInformation.bloodType?.toLowerCase());
|
||||||
|
@ -99,9 +101,6 @@ class _EditBasicProfileInfoScreenState
|
||||||
state.primaryInformation.disability!.toLowerCase());
|
state.primaryInformation.disability!.toLowerCase());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return Container(
|
return Container(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 24, vertical: 32),
|
padding: const EdgeInsets.symmetric(horizontal: 24, vertical: 32),
|
||||||
child: FormBuilder(
|
child: FormBuilder(
|
||||||
|
@ -116,9 +115,7 @@ class _EditBasicProfileInfoScreenState
|
||||||
),
|
),
|
||||||
FormBuilderTextField(
|
FormBuilderTextField(
|
||||||
name: "lastname",
|
name: "lastname",
|
||||||
inputFormatters: [
|
inputFormatters: [UpperCaseTextFormatter()],
|
||||||
UpperCaseTextFormatter()
|
|
||||||
],
|
|
||||||
initialValue: state.primaryInformation.lastName,
|
initialValue: state.primaryInformation.lastName,
|
||||||
decoration: normalTextFieldStyle("Last name *", ""),
|
decoration: normalTextFieldStyle("Last name *", ""),
|
||||||
validator: FormBuilderValidators.required(
|
validator: FormBuilderValidators.required(
|
||||||
|
@ -129,9 +126,7 @@ class _EditBasicProfileInfoScreenState
|
||||||
),
|
),
|
||||||
FormBuilderTextField(
|
FormBuilderTextField(
|
||||||
name: "firstname",
|
name: "firstname",
|
||||||
inputFormatters: [
|
inputFormatters: [UpperCaseTextFormatter()],
|
||||||
UpperCaseTextFormatter()
|
|
||||||
],
|
|
||||||
initialValue: state.primaryInformation.firstName,
|
initialValue: state.primaryInformation.firstName,
|
||||||
decoration: normalTextFieldStyle("First name *", ""),
|
decoration: normalTextFieldStyle("First name *", ""),
|
||||||
validator: FormBuilderValidators.required(
|
validator: FormBuilderValidators.required(
|
||||||
|
@ -146,12 +141,12 @@ class _EditBasicProfileInfoScreenState
|
||||||
Flexible(
|
Flexible(
|
||||||
flex: 2,
|
flex: 2,
|
||||||
child: FormBuilderTextField(
|
child: FormBuilderTextField(
|
||||||
inputFormatters: [
|
inputFormatters: [UpperCaseTextFormatter()],
|
||||||
UpperCaseTextFormatter()
|
|
||||||
],
|
|
||||||
name: "middlename",
|
name: "middlename",
|
||||||
initialValue: state.primaryInformation.middleName??'',
|
initialValue:
|
||||||
decoration: normalTextFieldStyle("Middle name", ""),
|
state.primaryInformation.middleName ?? '',
|
||||||
|
decoration:
|
||||||
|
normalTextFieldStyle("Middle name", ""),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
|
@ -164,13 +159,11 @@ class _EditBasicProfileInfoScreenState
|
||||||
value: selectedExtension,
|
value: selectedExtension,
|
||||||
decoration:
|
decoration:
|
||||||
normalTextFieldStyle("Name Extension", ""),
|
normalTextFieldStyle("Name Extension", ""),
|
||||||
|
|
||||||
items: state.extensions
|
items: state.extensions
|
||||||
.map((element) => DropdownMenuItem<String>(
|
.map((element) => DropdownMenuItem<String>(
|
||||||
value: element, child: Text(element)))
|
value: element, child: Text(element)))
|
||||||
.toList(),
|
.toList(),
|
||||||
onChanged: (e) {
|
onChanged: (e) {
|
||||||
|
|
||||||
selectedExtension = e;
|
selectedExtension = e;
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
@ -193,8 +186,9 @@ class _EditBasicProfileInfoScreenState
|
||||||
errorText: "This field is required"),
|
errorText: "This field is required"),
|
||||||
timeHintText: "Birthdate",
|
timeHintText: "Birthdate",
|
||||||
decoration:
|
decoration:
|
||||||
normalTextFieldStyle("Birthdate *", "*").copyWith(
|
normalTextFieldStyle("Birthdate *", "*")
|
||||||
prefixIcon: const Icon(
|
.copyWith(
|
||||||
|
prefixIcon: const Icon(
|
||||||
Icons.date_range,
|
Icons.date_range,
|
||||||
color: Colors.black87,
|
color: Colors.black87,
|
||||||
)),
|
)),
|
||||||
|
@ -206,7 +200,7 @@ class _EditBasicProfileInfoScreenState
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
width: 10,
|
width: 10,
|
||||||
),
|
),
|
||||||
|
|
||||||
////sex
|
////sex
|
||||||
Flexible(
|
Flexible(
|
||||||
flex: 1,
|
flex: 1,
|
||||||
|
@ -221,7 +215,7 @@ class _EditBasicProfileInfoScreenState
|
||||||
value: element, child: Text(element)))
|
value: element, child: Text(element)))
|
||||||
.toList(),
|
.toList(),
|
||||||
onChanged: (e) {
|
onChanged: (e) {
|
||||||
selectedSex= e;
|
selectedSex = e;
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
@ -238,9 +232,10 @@ class _EditBasicProfileInfoScreenState
|
||||||
flex: 1,
|
flex: 1,
|
||||||
child: FormBuilderDropdown<String>(
|
child: FormBuilderDropdown<String>(
|
||||||
initialValue: selectedBloodType,
|
initialValue: selectedBloodType,
|
||||||
validator: FormBuilderValidators.required(
|
validator: FormBuilderValidators.required(
|
||||||
errorText: "This field is required"),
|
errorText: "This field is required"),
|
||||||
decoration: normalTextFieldStyle("Blood type *", ""),
|
decoration:
|
||||||
|
normalTextFieldStyle("Blood type *", ""),
|
||||||
name: "bloodtype",
|
name: "bloodtype",
|
||||||
items: state.bloodTypes
|
items: state.bloodTypes
|
||||||
.map((element) => DropdownMenuItem<String>(
|
.map((element) => DropdownMenuItem<String>(
|
||||||
|
@ -259,8 +254,9 @@ class _EditBasicProfileInfoScreenState
|
||||||
flex: 1,
|
flex: 1,
|
||||||
child: FormBuilderDropdown<String>(
|
child: FormBuilderDropdown<String>(
|
||||||
initialValue: selectedStatus,
|
initialValue: selectedStatus,
|
||||||
decoration: normalTextFieldStyle("Civil status *", ""),
|
decoration:
|
||||||
validator: FormBuilderValidators.required(
|
normalTextFieldStyle("Civil status *", ""),
|
||||||
|
validator: FormBuilderValidators.required(
|
||||||
errorText: "This field is required"),
|
errorText: "This field is required"),
|
||||||
name: "extension",
|
name: "extension",
|
||||||
items: state.civilStatus
|
items: state.civilStatus
|
||||||
|
@ -305,11 +301,12 @@ class _EditBasicProfileInfoScreenState
|
||||||
flex: 1,
|
flex: 1,
|
||||||
child: FormBuilderTextField(
|
child: FormBuilderTextField(
|
||||||
name: "height",
|
name: "height",
|
||||||
validator: numericRequired,
|
validator: numericRequired,
|
||||||
initialValue: state.primaryInformation.heightM
|
initialValue: state.primaryInformation.heightM
|
||||||
.toString()
|
.toString()
|
||||||
.toString(),
|
.toString(),
|
||||||
decoration: normalTextFieldStyle("Height (Meter) *", ""),
|
decoration: normalTextFieldStyle(
|
||||||
|
"Height (Meter) *", ""),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
|
@ -317,13 +314,13 @@ class _EditBasicProfileInfoScreenState
|
||||||
),
|
),
|
||||||
Flexible(
|
Flexible(
|
||||||
flex: 1,
|
flex: 1,
|
||||||
|
|
||||||
child: FormBuilderTextField(
|
child: FormBuilderTextField(
|
||||||
validator: numericRequired,
|
validator: numericRequired,
|
||||||
name: "weigth",
|
name: "weigth",
|
||||||
initialValue:
|
initialValue: state.primaryInformation.weightKg!
|
||||||
state.primaryInformation.weightKg!.toString(),
|
.toString(),
|
||||||
decoration: normalTextFieldStyle("Weight (Kg) *", ""),
|
decoration:
|
||||||
|
normalTextFieldStyle("Weight (Kg) *", ""),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
]),
|
]),
|
||||||
|
@ -338,7 +335,8 @@ class _EditBasicProfileInfoScreenState
|
||||||
flex: 1,
|
flex: 1,
|
||||||
child: FormBuilderTextField(
|
child: FormBuilderTextField(
|
||||||
name: "prefix",
|
name: "prefix",
|
||||||
initialValue: state.primaryInformation.titlePrefix
|
initialValue: state
|
||||||
|
.primaryInformation.titlePrefix
|
||||||
.toString()
|
.toString()
|
||||||
.toString(),
|
.toString(),
|
||||||
decoration: normalTextFieldStyle(
|
decoration: normalTextFieldStyle(
|
||||||
|
@ -352,7 +350,8 @@ class _EditBasicProfileInfoScreenState
|
||||||
flex: 1,
|
flex: 1,
|
||||||
child: FormBuilderTextField(
|
child: FormBuilderTextField(
|
||||||
name: "suffix",
|
name: "suffix",
|
||||||
initialValue: state.primaryInformation.titleSuffix,
|
initialValue:
|
||||||
|
state.primaryInformation.titleSuffix,
|
||||||
decoration: normalTextFieldStyle(
|
decoration: normalTextFieldStyle(
|
||||||
"Title Suffix", "PhD.,MD.,MS.,CE"),
|
"Title Suffix", "PhD.,MD.,MS.,CE"),
|
||||||
),
|
),
|
||||||
|
@ -368,10 +367,11 @@ class _EditBasicProfileInfoScreenState
|
||||||
////Indigency
|
////Indigency
|
||||||
Flexible(
|
Flexible(
|
||||||
flex: 1,
|
flex: 1,
|
||||||
child: DropdownButtonFormField<ProfileOtherInfo>(
|
child: DropdownButtonFormField<ProfileOtherInfo>(
|
||||||
isExpanded: true,
|
isExpanded: true,
|
||||||
value: selectedIndigency,
|
value: selectedIndigency,
|
||||||
decoration: normalTextFieldStyle("Indigency", ""),
|
decoration:
|
||||||
|
normalTextFieldStyle("Indigency", ""),
|
||||||
items: state.indigenous
|
items: state.indigenous
|
||||||
.map((element) =>
|
.map((element) =>
|
||||||
DropdownMenuItem<ProfileOtherInfo>(
|
DropdownMenuItem<ProfileOtherInfo>(
|
||||||
|
@ -392,7 +392,8 @@ class _EditBasicProfileInfoScreenState
|
||||||
child: DropdownButtonFormField<ProfileOtherInfo>(
|
child: DropdownButtonFormField<ProfileOtherInfo>(
|
||||||
isExpanded: true,
|
isExpanded: true,
|
||||||
value: selectedEthnicity,
|
value: selectedEthnicity,
|
||||||
decoration: normalTextFieldStyle("Ethnicity", ""),
|
decoration:
|
||||||
|
normalTextFieldStyle("Ethnicity", ""),
|
||||||
items: state.ethnicity
|
items: state.ethnicity
|
||||||
.map((element) =>
|
.map((element) =>
|
||||||
DropdownMenuItem<ProfileOtherInfo>(
|
DropdownMenuItem<ProfileOtherInfo>(
|
||||||
|
@ -402,8 +403,7 @@ class _EditBasicProfileInfoScreenState
|
||||||
onChanged: (e) {
|
onChanged: (e) {
|
||||||
selectedEthnicity = e;
|
selectedEthnicity = e;
|
||||||
print(selectedEthnicity!.name);
|
print(selectedEthnicity!.name);
|
||||||
print(selectedEthnicity!
|
print(selectedEthnicity!.id);
|
||||||
.id);
|
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -421,7 +421,8 @@ class _EditBasicProfileInfoScreenState
|
||||||
child: DropdownButtonFormField<ProfileOtherInfo>(
|
child: DropdownButtonFormField<ProfileOtherInfo>(
|
||||||
isExpanded: true,
|
isExpanded: true,
|
||||||
value: selectedReligion,
|
value: selectedReligion,
|
||||||
decoration: normalTextFieldStyle("Religion", ""),
|
decoration:
|
||||||
|
normalTextFieldStyle("Religion", ""),
|
||||||
items: state.religion
|
items: state.religion
|
||||||
.map((element) =>
|
.map((element) =>
|
||||||
DropdownMenuItem<ProfileOtherInfo>(
|
DropdownMenuItem<ProfileOtherInfo>(
|
||||||
|
@ -440,10 +441,10 @@ class _EditBasicProfileInfoScreenState
|
||||||
Flexible(
|
Flexible(
|
||||||
flex: 1,
|
flex: 1,
|
||||||
child: DropdownButtonFormField<ProfileOtherInfo>(
|
child: DropdownButtonFormField<ProfileOtherInfo>(
|
||||||
|
|
||||||
isExpanded: true,
|
isExpanded: true,
|
||||||
value: selectedDisability,
|
value: selectedDisability,
|
||||||
decoration: normalTextFieldStyle("Disability", ""),
|
decoration:
|
||||||
|
normalTextFieldStyle("Disability", ""),
|
||||||
items: state.disability
|
items: state.disability
|
||||||
.map((element) =>
|
.map((element) =>
|
||||||
DropdownMenuItem<ProfileOtherInfo>(
|
DropdownMenuItem<ProfileOtherInfo>(
|
||||||
|
@ -464,33 +465,36 @@ class _EditBasicProfileInfoScreenState
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
height: 60,
|
height: 60,
|
||||||
child: ElevatedButton(
|
child: ElevatedButton(
|
||||||
style:
|
style: mainBtnStyle(
|
||||||
mainBtnStyle(primary, Colors.transparent, second),
|
primary, Colors.transparent, second),
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
if (_formKey.currentState!.saveAndValidate()) {
|
if (_formKey.currentState!.saveAndValidate()) {
|
||||||
String lastName =
|
String lastName =
|
||||||
_formKey.currentState!.value['lastname'];
|
_formKey.currentState!.value['lastname'];
|
||||||
String firstName =
|
String firstName =
|
||||||
_formKey.currentState!.value['firstname'];
|
_formKey.currentState!.value['firstname'];
|
||||||
String? middleName =
|
String? middleName = _formKey
|
||||||
_formKey.currentState?.value['middlename'];
|
.currentState?.value['middlename'];
|
||||||
String? pref =
|
String? pref =
|
||||||
_formKey.currentState?.value['prefix'];
|
_formKey.currentState?.value['prefix'];
|
||||||
String suf = _formKey.currentState?.value['suffix'];
|
String suf =
|
||||||
|
_formKey.currentState?.value['suffix'];
|
||||||
DateTime birthdate =
|
DateTime birthdate =
|
||||||
DateTime.parse(bdayController.text);
|
DateTime.parse(bdayController.text);
|
||||||
double? hM =
|
double? hM =
|
||||||
_formKey.currentState!.value['height'] == null
|
_formKey.currentState!.value['height'] ==
|
||||||
|
null
|
||||||
? null
|
? null
|
||||||
: double.tryParse(
|
: double.tryParse(_formKey
|
||||||
_formKey.currentState?.value['height']);
|
.currentState?.value['height']);
|
||||||
double? wKg =
|
double? wKg =
|
||||||
_formKey.currentState!.value['weigth'] == null
|
_formKey.currentState!.value['weigth'] ==
|
||||||
|
null
|
||||||
? null
|
? null
|
||||||
: double.tryParse(
|
: double.tryParse(_formKey
|
||||||
_formKey.currentState?.value['weigth']);
|
.currentState?.value['weigth']);
|
||||||
Profile primaryInformation = Profile(
|
Profile primaryInformation = Profile(
|
||||||
webuserId: null,
|
webuserId: null,
|
||||||
id: state.primaryInformation.id,
|
id: state.primaryInformation.id,
|
||||||
lastName: lastName,
|
lastName: lastName,
|
||||||
firstName: firstName,
|
firstName: firstName,
|
||||||
|
@ -499,14 +503,21 @@ class _EditBasicProfileInfoScreenState
|
||||||
sex: selectedSex,
|
sex: selectedSex,
|
||||||
birthdate: birthdate,
|
birthdate: birthdate,
|
||||||
civilStatus: selectedStatus,
|
civilStatus: selectedStatus,
|
||||||
bloodType: selectedBloodType =="NONE"?null:selectedBloodType,
|
bloodType: selectedBloodType == "NONE"
|
||||||
|
? null
|
||||||
|
: selectedBloodType,
|
||||||
heightM: hM,
|
heightM: hM,
|
||||||
weightKg: wKg,
|
weightKg: wKg,
|
||||||
photoPath: state.primaryInformation.photoPath,
|
photoPath:
|
||||||
esigPath: state.primaryInformation.esigPath,
|
state.primaryInformation.photoPath,
|
||||||
maidenName: state.primaryInformation.maidenName,
|
esigPath:
|
||||||
deceased: state.primaryInformation.deceased,
|
state.primaryInformation.esigPath,
|
||||||
uuidQrcode: state.primaryInformation.uuidQrcode,
|
maidenName:
|
||||||
|
state.primaryInformation.maidenName,
|
||||||
|
deceased:
|
||||||
|
state.primaryInformation.deceased,
|
||||||
|
uuidQrcode:
|
||||||
|
state.primaryInformation.uuidQrcode,
|
||||||
titlePrefix: pref,
|
titlePrefix: pref,
|
||||||
titleSuffix: suf,
|
titleSuffix: suf,
|
||||||
showTitleId:
|
showTitleId:
|
||||||
|
@ -525,7 +536,8 @@ class _EditBasicProfileInfoScreenState
|
||||||
genderId: selectedGender?.id,
|
genderId: selectedGender?.id,
|
||||||
indigencyId: selectedIndigency?.id,
|
indigencyId: selectedIndigency?.id,
|
||||||
profileId: widget.profileId,
|
profileId: widget.profileId,
|
||||||
profileInformation: primaryInformation,
|
profileInformation:
|
||||||
|
primaryInformation,
|
||||||
religionId: selectedReligion?.id,
|
religionId: selectedReligion?.id,
|
||||||
token: widget.token));
|
token: widget.token));
|
||||||
}
|
}
|
||||||
|
@ -540,7 +552,7 @@ class _EditBasicProfileInfoScreenState
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return Container();
|
return Container();
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||||
import 'package:flutter_form_builder/flutter_form_builder.dart';
|
import 'package:flutter_form_builder/flutter_form_builder.dart';
|
||||||
|
@ -6,6 +5,8 @@ import 'package:flutter_progress_hud/flutter_progress_hud.dart';
|
||||||
import 'package:flutter_spinkit/flutter_spinkit.dart';
|
import 'package:flutter_spinkit/flutter_spinkit.dart';
|
||||||
import 'package:intl/intl.dart';
|
import 'package:intl/intl.dart';
|
||||||
import 'package:unit2/bloc/profile/profile_bloc.dart';
|
import 'package:unit2/bloc/profile/profile_bloc.dart';
|
||||||
|
import 'package:unit2/bloc/user/user_bloc.dart';
|
||||||
|
import 'package:unit2/model/profile/basic_information/primary-information.dart';
|
||||||
import 'package:unit2/screens/profile/components/basic_information/edit_basic_info_modal.dart';
|
import 'package:unit2/screens/profile/components/basic_information/edit_basic_info_modal.dart';
|
||||||
import 'package:unit2/theme-data.dart/colors.dart';
|
import 'package:unit2/theme-data.dart/colors.dart';
|
||||||
import 'package:unit2/theme-data.dart/form-style.dart';
|
import 'package:unit2/theme-data.dart/form-style.dart';
|
||||||
|
@ -30,6 +31,7 @@ class _PrimaryInfoState extends State<PrimaryInfo> {
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
bool enabled = false;
|
bool enabled = false;
|
||||||
DateFormat dteFormat2 = DateFormat.yMMMMd('en_US');
|
DateFormat dteFormat2 = DateFormat.yMMMMd('en_US');
|
||||||
|
Profile? profile;
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
appBar: AppBar(
|
appBar: AppBar(
|
||||||
title: context.watch<ProfileBloc>().state
|
title: context.watch<ProfileBloc>().state
|
||||||
|
@ -62,300 +64,421 @@ class _PrimaryInfoState extends State<PrimaryInfo> {
|
||||||
padding: const EdgeInsets.all(24),
|
padding: const EdgeInsets.all(24),
|
||||||
backgroundColor: Colors.black87,
|
backgroundColor: Colors.black87,
|
||||||
indicatorWidget: const SpinKitFadingCircle(color: Colors.white),
|
indicatorWidget: const SpinKitFadingCircle(color: Colors.white),
|
||||||
child: BlocConsumer<ProfileBloc, ProfileState>(
|
child: BlocBuilder<UserBloc, UserState>(
|
||||||
listener: (context, state) {
|
|
||||||
if (state is BasicPrimaryInformationLoadingState) {
|
|
||||||
final progress = ProgressHUD.of(context);
|
|
||||||
progress!.showWithText("Please wait...");
|
|
||||||
}
|
|
||||||
if (state is BasicInformationProfileLoaded ||
|
|
||||||
state is BasicInformationEditingState ||
|
|
||||||
state is BasicPrimaryInformationErrorState ||
|
|
||||||
state is BasicProfileInfoEditedState) {
|
|
||||||
final progress = ProgressHUD.of(context);
|
|
||||||
progress!.dismiss();
|
|
||||||
}
|
|
||||||
if (state is BasicProfileInfoEditedState) {
|
|
||||||
if (state.response['success']) {
|
|
||||||
successAlert(context, "Updated Successfull!",
|
|
||||||
state.response['message'], () {
|
|
||||||
Navigator.of(context).pop();
|
|
||||||
context.read<ProfileBloc>().add(LoadBasicPrimaryInfo());
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
errorAlert(context, "Update Failed",
|
|
||||||
"Something went wrong. Please try again.", () {
|
|
||||||
Navigator.of(context).pop();
|
|
||||||
context.read<ProfileBloc>().add(LoadBasicPrimaryInfo());
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
builder: (context, state) {
|
builder: (context, state) {
|
||||||
if (state is BasicInformationProfileLoaded) {
|
if (state is UserLoggedIn) {
|
||||||
return Container(
|
state.userData?.employeeInfo?.profile = profile;
|
||||||
padding:
|
return BlocConsumer<ProfileBloc, ProfileState>(
|
||||||
const EdgeInsets.symmetric(vertical: 24, horizontal: 24),
|
listener: (context, state) {
|
||||||
child: Column(
|
if (state is BasicPrimaryInformationLoadingState) {
|
||||||
children: [
|
final progress = ProgressHUD.of(context);
|
||||||
const SizedBox(
|
progress!.showWithText("Please wait...");
|
||||||
height: 28,
|
}
|
||||||
),
|
if (state is BasicInformationProfileLoaded ||
|
||||||
FormBuilderTextField(
|
state is BasicInformationEditingState ||
|
||||||
enabled: enabled,
|
state is BasicPrimaryInformationErrorState ||
|
||||||
name: lastname,
|
state is BasicProfileInfoEditedState) {
|
||||||
initialValue: state.primaryBasicInformation.lastName!,
|
final progress = ProgressHUD.of(context);
|
||||||
decoration: normalTextFieldStyle("Last name", ""),
|
progress!.dismiss();
|
||||||
),
|
}
|
||||||
const SizedBox(
|
if (state is BasicProfileInfoEditedState) {
|
||||||
height: 15,
|
profile = Profile.fromJson(state.response['data']);
|
||||||
),
|
if (state.response['success']) {
|
||||||
FormBuilderTextField(
|
successAlert(context, "Updated Successfull!",
|
||||||
enabled: enabled,
|
state.response['message'], () {
|
||||||
name: firstname,
|
Navigator.of(context).pop();
|
||||||
initialValue: state.primaryBasicInformation.firstName!,
|
context
|
||||||
decoration: normalTextFieldStyle("First name", ""),
|
.read<ProfileBloc>()
|
||||||
),
|
.add(LoadBasicPrimaryInfo());
|
||||||
const SizedBox(
|
});
|
||||||
height: 15,
|
} else {
|
||||||
),
|
errorAlert(context, "Update Failed",
|
||||||
SizedBox(
|
"Something went wrong. Please try again.", () {
|
||||||
width: screenWidth,
|
Navigator.of(context).pop();
|
||||||
child: Row(children: [
|
context
|
||||||
Flexible(
|
.read<ProfileBloc>()
|
||||||
flex: 2,
|
.add(LoadBasicPrimaryInfo());
|
||||||
child: FormBuilderTextField(
|
});
|
||||||
enabled: enabled,
|
}
|
||||||
name: middlename,
|
}
|
||||||
initialValue: state.primaryBasicInformation.middleName??''
|
},
|
||||||
,
|
builder: (context, state) {
|
||||||
decoration:
|
if (state is BasicInformationProfileLoaded) {
|
||||||
normalTextFieldStyle("Middle name", ""),
|
profile = state.primaryBasicInformation;
|
||||||
|
return Container(
|
||||||
|
padding: const EdgeInsets.symmetric(
|
||||||
|
vertical: 24, horizontal: 24),
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
const SizedBox(
|
||||||
|
height: 28,
|
||||||
),
|
),
|
||||||
),
|
FormBuilderTextField(
|
||||||
const SizedBox(
|
enabled: false,
|
||||||
width: 10,
|
name: lastname,
|
||||||
),
|
|
||||||
Flexible(
|
|
||||||
flex: 1,
|
|
||||||
child: FormBuilderTextField(
|
|
||||||
enabled: enabled,
|
|
||||||
name: extensionName,
|
|
||||||
initialValue: state.primaryBasicInformation
|
|
||||||
.nameExtension ??= 'N/A',
|
|
||||||
decoration:
|
|
||||||
normalTextFieldStyle("Name extension", ""),
|
|
||||||
),
|
|
||||||
)
|
|
||||||
]),
|
|
||||||
),
|
|
||||||
const SizedBox(
|
|
||||||
height: 15,
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
width: screenWidth,
|
|
||||||
child: Row(children: [
|
|
||||||
Flexible(
|
|
||||||
flex: 1,
|
|
||||||
child: FormBuilderTextField(
|
|
||||||
enabled: enabled,
|
|
||||||
name: extensionName,
|
|
||||||
initialValue: dteFormat2.format(
|
|
||||||
state.primaryBasicInformation.birthdate!),
|
|
||||||
decoration:
|
|
||||||
normalTextFieldStyle("Birth date", ""),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const SizedBox(
|
|
||||||
width: 10,
|
|
||||||
),
|
|
||||||
Flexible(
|
|
||||||
flex: 1,
|
|
||||||
child: FormBuilderTextField(
|
|
||||||
enabled: enabled,
|
|
||||||
name: sex,
|
|
||||||
initialValue: state.primaryBasicInformation.sex!,
|
|
||||||
decoration: normalTextFieldStyle("Sex", ""),
|
|
||||||
),
|
|
||||||
)
|
|
||||||
]),
|
|
||||||
),
|
|
||||||
const SizedBox(
|
|
||||||
height: 15,
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
width: screenWidth,
|
|
||||||
child: Row(children: [
|
|
||||||
Flexible(
|
|
||||||
flex: 1,
|
|
||||||
child: FormBuilderTextField(
|
|
||||||
enabled: enabled,
|
|
||||||
name: "bloodType",
|
|
||||||
initialValue:
|
initialValue:
|
||||||
state.primaryBasicInformation.bloodType!,
|
state.primaryBasicInformation.lastName!,
|
||||||
decoration:
|
style: const TextStyle(color: Colors.black),
|
||||||
normalTextFieldStyle("Blood type", ""),
|
decoration: normalTextFieldStyle("Last name", "")
|
||||||
|
.copyWith(
|
||||||
|
disabledBorder:
|
||||||
|
const OutlineInputBorder(),
|
||||||
|
labelStyle:
|
||||||
|
const TextStyle(color: Colors.black)),
|
||||||
),
|
),
|
||||||
),
|
const SizedBox(
|
||||||
const SizedBox(
|
height: 15,
|
||||||
width: 10,
|
),
|
||||||
),
|
FormBuilderTextField(
|
||||||
Flexible(
|
|
||||||
flex: 1,
|
|
||||||
child: FormBuilderTextField(
|
|
||||||
enabled: enabled,
|
enabled: enabled,
|
||||||
name: "civilStatus",
|
name: firstname,
|
||||||
initialValue:
|
initialValue:
|
||||||
state.primaryBasicInformation.civilStatus!,
|
state.primaryBasicInformation.firstName!,
|
||||||
decoration:
|
style: const TextStyle(color: Colors.black),
|
||||||
normalTextFieldStyle("Civil Status", ""),
|
decoration: normalTextFieldStyle("First name", "")
|
||||||
|
.copyWith(
|
||||||
|
disabledBorder:
|
||||||
|
const OutlineInputBorder(),
|
||||||
|
labelStyle:
|
||||||
|
const TextStyle(color: Colors.black)),
|
||||||
),
|
),
|
||||||
),
|
const SizedBox(
|
||||||
const SizedBox(
|
height: 15,
|
||||||
width: 10,
|
|
||||||
),
|
|
||||||
Flexible(
|
|
||||||
flex: 1,
|
|
||||||
child: FormBuilderTextField(
|
|
||||||
enabled: enabled,
|
|
||||||
name: "gender",
|
|
||||||
initialValue: state
|
|
||||||
.primaryBasicInformation.gender ??= "N/A",
|
|
||||||
decoration: normalTextFieldStyle("Gender", ""),
|
|
||||||
),
|
),
|
||||||
),
|
SizedBox(
|
||||||
]),
|
width: screenWidth,
|
||||||
),
|
child: Row(children: [
|
||||||
const SizedBox(
|
Flexible(
|
||||||
height: 15,
|
flex: 2,
|
||||||
),
|
child: FormBuilderTextField(
|
||||||
SizedBox(
|
enabled: enabled,
|
||||||
width: screenWidth,
|
name: middlename,
|
||||||
child: Row(children: [
|
initialValue: state.primaryBasicInformation
|
||||||
Flexible(
|
.middleName ??
|
||||||
flex: 1,
|
'',
|
||||||
child: FormBuilderTextField(
|
style: const TextStyle(color: Colors.black),
|
||||||
maxLines: 2,
|
decoration:
|
||||||
enabled: enabled,
|
normalTextFieldStyle("Middle name", "")
|
||||||
name: height,
|
.copyWith(
|
||||||
initialValue: state
|
disabledBorder:
|
||||||
.primaryBasicInformation.heightM!
|
const OutlineInputBorder(),
|
||||||
.toString(),
|
labelStyle: const TextStyle(
|
||||||
decoration: normalTextFieldStyle("Height", ""),
|
color: Colors.black)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
width: 10,
|
||||||
|
),
|
||||||
|
Flexible(
|
||||||
|
flex: 1,
|
||||||
|
child: FormBuilderTextField(
|
||||||
|
enabled: enabled,
|
||||||
|
name: extensionName,
|
||||||
|
initialValue: state.primaryBasicInformation
|
||||||
|
.nameExtension ??= 'N/A',
|
||||||
|
style: const TextStyle(color: Colors.black),
|
||||||
|
decoration: normalTextFieldStyle(
|
||||||
|
"Name extension", "")
|
||||||
|
.copyWith(
|
||||||
|
disabledBorder:
|
||||||
|
const OutlineInputBorder(),
|
||||||
|
labelStyle: const TextStyle(
|
||||||
|
color: Colors.black)),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
]),
|
||||||
),
|
),
|
||||||
),
|
const SizedBox(
|
||||||
const SizedBox(
|
height: 15,
|
||||||
width: 10,
|
|
||||||
),
|
|
||||||
Flexible(
|
|
||||||
flex: 1,
|
|
||||||
child: FormBuilderTextField(
|
|
||||||
enabled: enabled,
|
|
||||||
name: width,
|
|
||||||
initialValue: state
|
|
||||||
.primaryBasicInformation.weightKg!
|
|
||||||
.toString(),
|
|
||||||
decoration: normalTextFieldStyle("Weight", ""),
|
|
||||||
),
|
),
|
||||||
),
|
SizedBox(
|
||||||
const SizedBox(
|
width: screenWidth,
|
||||||
width: 10,
|
child: Row(children: [
|
||||||
),
|
Flexible(
|
||||||
Flexible(
|
flex: 1,
|
||||||
flex: 1,
|
child: FormBuilderTextField(
|
||||||
child: FormBuilderTextField(
|
enabled: enabled,
|
||||||
enabled: enabled,
|
name: extensionName,
|
||||||
name: prefixSuffix,
|
initialValue: dteFormat2.format(state
|
||||||
initialValue:
|
.primaryBasicInformation.birthdate!),
|
||||||
"${state.primaryBasicInformation.titlePrefix ??= "NA"} | ${state.primaryBasicInformation.titleSuffix ??= "N/A"}",
|
style: const TextStyle(color: Colors.black),
|
||||||
decoration: normalTextFieldStyle(
|
decoration:
|
||||||
"Title Prefix and Suffix", ""),
|
normalTextFieldStyle("Birth date", "")
|
||||||
|
.copyWith(
|
||||||
|
disabledBorder:
|
||||||
|
const OutlineInputBorder(),
|
||||||
|
labelStyle: const TextStyle(
|
||||||
|
color: Colors.black)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
width: 10,
|
||||||
|
),
|
||||||
|
Flexible(
|
||||||
|
flex: 1,
|
||||||
|
child: FormBuilderTextField(
|
||||||
|
enabled: enabled,
|
||||||
|
name: sex,
|
||||||
|
initialValue:
|
||||||
|
state.primaryBasicInformation.sex!,
|
||||||
|
style: const TextStyle(color: Colors.black),
|
||||||
|
decoration: normalTextFieldStyle("Sex", "")
|
||||||
|
.copyWith(
|
||||||
|
disabledBorder:
|
||||||
|
const OutlineInputBorder(),
|
||||||
|
labelStyle: const TextStyle(
|
||||||
|
color: Colors.black)),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
]),
|
||||||
),
|
),
|
||||||
),
|
const SizedBox(
|
||||||
]),
|
height: 15,
|
||||||
),
|
|
||||||
const SizedBox(
|
|
||||||
height: 12,
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
width: screenWidth,
|
|
||||||
child: Row(children: [
|
|
||||||
Flexible(
|
|
||||||
flex: 1,
|
|
||||||
child: FormBuilderTextField(
|
|
||||||
maxLines: 2,
|
|
||||||
enabled: enabled,
|
|
||||||
name: height,
|
|
||||||
initialValue: state.primaryBasicInformation.ip ??=
|
|
||||||
"N/A",
|
|
||||||
decoration:
|
|
||||||
normalTextFieldStyle("Indigenous", ""),
|
|
||||||
),
|
),
|
||||||
),
|
SizedBox(
|
||||||
const SizedBox(
|
width: screenWidth,
|
||||||
width: 10,
|
child: Row(children: [
|
||||||
),
|
Flexible(
|
||||||
Flexible(
|
flex: 1,
|
||||||
flex: 1,
|
child: FormBuilderTextField(
|
||||||
child: FormBuilderTextField(
|
enabled: enabled,
|
||||||
enabled: enabled,
|
name: "bloodType",
|
||||||
name: width,
|
initialValue: state
|
||||||
initialValue: state
|
.primaryBasicInformation.bloodType!,
|
||||||
.primaryBasicInformation.ethnicity ??= "N/A",
|
style: const TextStyle(color: Colors.black),
|
||||||
decoration: normalTextFieldStyle("Ethnicity", ""),
|
decoration:
|
||||||
|
normalTextFieldStyle("Blood type", "")
|
||||||
|
.copyWith(
|
||||||
|
disabledBorder:
|
||||||
|
const OutlineInputBorder(),
|
||||||
|
labelStyle: const TextStyle(
|
||||||
|
color: Colors.black)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
width: 10,
|
||||||
|
),
|
||||||
|
Flexible(
|
||||||
|
flex: 1,
|
||||||
|
child: FormBuilderTextField(
|
||||||
|
enabled: enabled,
|
||||||
|
name: "civilStatus",
|
||||||
|
initialValue: state
|
||||||
|
.primaryBasicInformation.civilStatus!,
|
||||||
|
style: const TextStyle(color: Colors.black),
|
||||||
|
decoration:
|
||||||
|
normalTextFieldStyle("Civil Status", "")
|
||||||
|
.copyWith(
|
||||||
|
disabledBorder:
|
||||||
|
const OutlineInputBorder(),
|
||||||
|
labelStyle: const TextStyle(
|
||||||
|
color: Colors.black)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
width: 10,
|
||||||
|
),
|
||||||
|
Flexible(
|
||||||
|
flex: 1,
|
||||||
|
child: FormBuilderTextField(
|
||||||
|
enabled: enabled,
|
||||||
|
name: "gender",
|
||||||
|
initialValue: state.primaryBasicInformation
|
||||||
|
.gender ??= "N/A",
|
||||||
|
style: const TextStyle(color: Colors.black),
|
||||||
|
decoration:
|
||||||
|
normalTextFieldStyle("Gender", "")
|
||||||
|
.copyWith(
|
||||||
|
disabledBorder:
|
||||||
|
const OutlineInputBorder(),
|
||||||
|
labelStyle: const TextStyle(
|
||||||
|
color: Colors.black)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
]),
|
||||||
),
|
),
|
||||||
),
|
const SizedBox(
|
||||||
]),
|
height: 15,
|
||||||
),
|
|
||||||
const SizedBox(
|
|
||||||
height: 12,
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
width: screenWidth,
|
|
||||||
child: Row(children: [
|
|
||||||
Flexible(
|
|
||||||
flex: 1,
|
|
||||||
child: FormBuilderTextField(
|
|
||||||
maxLines: 2,
|
|
||||||
enabled: enabled,
|
|
||||||
name: height,
|
|
||||||
initialValue: state
|
|
||||||
.primaryBasicInformation.religion ??= "N/A",
|
|
||||||
decoration: normalTextFieldStyle("Religion", ""),
|
|
||||||
),
|
),
|
||||||
),
|
SizedBox(
|
||||||
const SizedBox(
|
width: screenWidth,
|
||||||
width: 10,
|
child: Row(children: [
|
||||||
),
|
Flexible(
|
||||||
Flexible(
|
flex: 1,
|
||||||
flex: 1,
|
child: FormBuilderTextField(
|
||||||
child: FormBuilderTextField(
|
maxLines: 2,
|
||||||
maxLines: 2,
|
enabled: enabled,
|
||||||
enabled: enabled,
|
name: height,
|
||||||
name: width,
|
initialValue: state
|
||||||
initialValue: state
|
.primaryBasicInformation.heightM!
|
||||||
.primaryBasicInformation.disability ??= "N/A",
|
.toString(),
|
||||||
decoration:
|
style: const TextStyle(color: Colors.black),
|
||||||
normalTextFieldStyle("Disability", ""),
|
decoration:
|
||||||
|
normalTextFieldStyle("Height", "")
|
||||||
|
.copyWith(
|
||||||
|
disabledBorder:
|
||||||
|
const OutlineInputBorder(),
|
||||||
|
labelStyle: const TextStyle(
|
||||||
|
color: Colors.black)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
width: 10,
|
||||||
|
),
|
||||||
|
Flexible(
|
||||||
|
flex: 1,
|
||||||
|
child: FormBuilderTextField(
|
||||||
|
enabled: enabled,
|
||||||
|
name: width,
|
||||||
|
initialValue: state
|
||||||
|
.primaryBasicInformation.weightKg!
|
||||||
|
.toString(),
|
||||||
|
style: const TextStyle(color: Colors.black),
|
||||||
|
decoration:
|
||||||
|
normalTextFieldStyle("Weight", "")
|
||||||
|
.copyWith(
|
||||||
|
disabledBorder:
|
||||||
|
const OutlineInputBorder(),
|
||||||
|
labelStyle: const TextStyle(
|
||||||
|
color: Colors.black)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
width: 10,
|
||||||
|
),
|
||||||
|
Flexible(
|
||||||
|
flex: 1,
|
||||||
|
child: FormBuilderTextField(
|
||||||
|
enabled: enabled,
|
||||||
|
name: prefixSuffix,
|
||||||
|
initialValue:
|
||||||
|
"${state.primaryBasicInformation.titlePrefix ??= "NA"} | ${state.primaryBasicInformation.titleSuffix ??= "N/A"}",
|
||||||
|
style: const TextStyle(color: Colors.black),
|
||||||
|
decoration: normalTextFieldStyle(
|
||||||
|
"Title Prefix and Suffix", "")
|
||||||
|
.copyWith(
|
||||||
|
disabledBorder:
|
||||||
|
const OutlineInputBorder(),
|
||||||
|
labelStyle: const TextStyle(
|
||||||
|
color: Colors.black)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
]),
|
||||||
),
|
),
|
||||||
),
|
const SizedBox(
|
||||||
]),
|
height: 12,
|
||||||
),
|
),
|
||||||
],
|
SizedBox(
|
||||||
),
|
width: screenWidth,
|
||||||
|
child: Row(children: [
|
||||||
|
Flexible(
|
||||||
|
flex: 1,
|
||||||
|
child: FormBuilderTextField(
|
||||||
|
maxLines: 2,
|
||||||
|
enabled: enabled,
|
||||||
|
name: height,
|
||||||
|
initialValue: state
|
||||||
|
.primaryBasicInformation.ip ??= "N/A",
|
||||||
|
style: const TextStyle(color: Colors.black),
|
||||||
|
decoration:
|
||||||
|
normalTextFieldStyle("Indigenous", "")
|
||||||
|
.copyWith(
|
||||||
|
disabledBorder:
|
||||||
|
const OutlineInputBorder(),
|
||||||
|
labelStyle: const TextStyle(
|
||||||
|
color: Colors.black)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
width: 10,
|
||||||
|
),
|
||||||
|
Flexible(
|
||||||
|
flex: 1,
|
||||||
|
child: FormBuilderTextField(
|
||||||
|
enabled: enabled,
|
||||||
|
name: width,
|
||||||
|
initialValue: state.primaryBasicInformation
|
||||||
|
.ethnicity ??= "N/A",
|
||||||
|
style: const TextStyle(color: Colors.black),
|
||||||
|
decoration:
|
||||||
|
normalTextFieldStyle("Ethnicity", "")
|
||||||
|
.copyWith(
|
||||||
|
disabledBorder:
|
||||||
|
const OutlineInputBorder(),
|
||||||
|
labelStyle: const TextStyle(
|
||||||
|
color: Colors.black)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
height: 12,
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
width: screenWidth,
|
||||||
|
child: Row(children: [
|
||||||
|
Flexible(
|
||||||
|
flex: 1,
|
||||||
|
child: FormBuilderTextField(
|
||||||
|
maxLines: 2,
|
||||||
|
enabled: enabled,
|
||||||
|
name: height,
|
||||||
|
initialValue: state.primaryBasicInformation
|
||||||
|
.religion ??= "N/A",
|
||||||
|
style: const TextStyle(color: Colors.black),
|
||||||
|
decoration:
|
||||||
|
normalTextFieldStyle("Religion", "")
|
||||||
|
.copyWith(
|
||||||
|
disabledBorder:
|
||||||
|
const OutlineInputBorder(),
|
||||||
|
labelStyle: const TextStyle(
|
||||||
|
color: Colors.black)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
width: 10,
|
||||||
|
),
|
||||||
|
Flexible(
|
||||||
|
flex: 1,
|
||||||
|
child: FormBuilderTextField(
|
||||||
|
maxLines: 2,
|
||||||
|
enabled: enabled,
|
||||||
|
name: width,
|
||||||
|
initialValue: state.primaryBasicInformation
|
||||||
|
.disability ??= "N/A",
|
||||||
|
style: const TextStyle(color: Colors.black),
|
||||||
|
decoration:
|
||||||
|
normalTextFieldStyle("Disability", "")
|
||||||
|
.copyWith(
|
||||||
|
disabledBorder:
|
||||||
|
const OutlineInputBorder(),
|
||||||
|
labelStyle: const TextStyle(
|
||||||
|
color: Colors.black)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if (state is BasicPrimaryInformationErrorState) {
|
||||||
|
return SomethingWentWrong(
|
||||||
|
message: state.message,
|
||||||
|
onpressed: () {
|
||||||
|
context
|
||||||
|
.read<ProfileBloc>()
|
||||||
|
.add(LoadBasicPrimaryInfo());
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (state is BasicInformationEditingState) {
|
||||||
|
return EditBasicProfileInfoScreen(
|
||||||
|
profileId: widget.profileId, token: widget.token);
|
||||||
|
}
|
||||||
|
return Container();
|
||||||
|
},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
if (state is BasicPrimaryInformationErrorState) {
|
|
||||||
return SomethingWentWrong(
|
|
||||||
message: state.message,
|
|
||||||
onpressed: () {
|
|
||||||
context.read<ProfileBloc>().add(LoadBasicPrimaryInfo());
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if (state is BasicInformationEditingState) {
|
|
||||||
return EditBasicProfileInfoScreen(
|
|
||||||
profileId: widget.profileId, token: widget.token);
|
|
||||||
}
|
|
||||||
return Container();
|
return Container();
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
|
|
@ -70,7 +70,6 @@ class ProfileInfo extends StatelessWidget {
|
||||||
profileId = state.userData!.user!.login!.user!.profileId;
|
profileId = state.userData!.user!.login!.user!.profileId;
|
||||||
token = state.userData!.user!.login!.token!;
|
token = state.userData!.user!.login!.token!;
|
||||||
profile = state.userData!.employeeInfo!.profile!;
|
profile = state.userData!.employeeInfo!.profile!;
|
||||||
|
|
||||||
return BlocConsumer<ProfileBloc, ProfileState>(
|
return BlocConsumer<ProfileBloc, ProfileState>(
|
||||||
listener: (
|
listener: (
|
||||||
context,
|
context,
|
||||||
|
|
|
@ -1,12 +1,422 @@
|
||||||
|
import 'package:auto_size_text/auto_size_text.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter/src/widgets/framework.dart';
|
import 'package:flutter/src/widgets/framework.dart';
|
||||||
import 'package:flutter/src/widgets/placeholder.dart';
|
import 'package:flutter/src/widgets/placeholder.dart';
|
||||||
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||||
|
import 'package:flutter_form_builder/flutter_form_builder.dart';
|
||||||
|
import 'package:flutter_progress_hud/flutter_progress_hud.dart';
|
||||||
|
import 'package:flutter_spinkit/flutter_spinkit.dart';
|
||||||
|
import 'package:fluttericon/font_awesome5_icons.dart';
|
||||||
|
import 'package:form_builder_validators/form_builder_validators.dart';
|
||||||
|
import 'package:group_list_view/group_list_view.dart';
|
||||||
|
import 'package:modal_progress_hud_nsn/modal_progress_hud_nsn.dart';
|
||||||
|
import 'package:searchfield/searchfield.dart';
|
||||||
|
import 'package:unit2/bloc/rbac/rbac_operations/assign_area/assign_area_bloc.dart';
|
||||||
|
import 'package:unit2/bloc/user/user_bloc.dart';
|
||||||
|
import 'package:unit2/model/login_data/user_info/assigned_area.dart';
|
||||||
|
import 'package:unit2/model/profile/assigned_area.dart';
|
||||||
|
import 'package:unit2/model/rbac/rbac.dart';
|
||||||
|
import 'package:unit2/model/utils/agency.dart';
|
||||||
|
import 'package:unit2/theme-data.dart/btn-style.dart';
|
||||||
|
import 'package:unit2/theme-data.dart/colors.dart';
|
||||||
|
import 'package:unit2/theme-data.dart/form-style.dart';
|
||||||
|
import 'package:unit2/utils/alerts.dart';
|
||||||
|
import 'package:unit2/utils/formatters.dart';
|
||||||
|
import 'package:unit2/utils/global_context.dart';
|
||||||
|
import 'package:unit2/utils/profile_utilities.dart';
|
||||||
|
import 'package:unit2/widgets/Leadings/add_leading.dart';
|
||||||
|
import 'package:unit2/widgets/empty_data.dart';
|
||||||
|
|
||||||
class RbacAssignedAreaScreen extends StatelessWidget {
|
class RbacAssignedAreaScreen extends StatelessWidget {
|
||||||
const RbacAssignedAreaScreen({super.key});
|
const RbacAssignedAreaScreen({super.key});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Center(child: Text("dsadasdas"),);
|
Map<String, List<Content>> assignedAreas = {};
|
||||||
|
final formKey = GlobalKey<FormBuilderState>();
|
||||||
|
List<RBAC> roles = [];
|
||||||
|
bool async = false;
|
||||||
|
List<UserAssignedArea> userAssignedAreas = [];
|
||||||
|
final bloc = BlocProvider.of<AssignAreaBloc>(context);
|
||||||
|
RBAC? selectedRole;
|
||||||
|
String? areaType;
|
||||||
|
List<Agency> agencies = [];
|
||||||
|
FocusNode agencyFocusNode = FocusNode();
|
||||||
|
return Scaffold(
|
||||||
|
appBar: AppBar(
|
||||||
|
backgroundColor: primary,
|
||||||
|
centerTitle: true,
|
||||||
|
title: const Text("Assigned Area"),
|
||||||
|
actions: [
|
||||||
|
AddLeading(onPressed: () {
|
||||||
|
roles.clear();
|
||||||
|
for (var area in userAssignedAreas) {
|
||||||
|
roles.add(area.assignedRole!.role!);
|
||||||
|
}
|
||||||
|
showDialog(
|
||||||
|
context: context,
|
||||||
|
builder: (BuildContext context) {
|
||||||
|
return AlertDialog(
|
||||||
|
title: const Text("Add New Role"),
|
||||||
|
content: FormBuilder(
|
||||||
|
key: formKey,
|
||||||
|
child: StatefulBuilder(builder: (context, setState) {
|
||||||
|
return Column(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
children: [
|
||||||
|
FormBuilderDropdown<RBAC>(
|
||||||
|
decoration: normalTextFieldStyle(
|
||||||
|
"Select Role", "Select Role"),
|
||||||
|
name: 'role',
|
||||||
|
items: roles.map<DropdownMenuItem<RBAC>>((e) {
|
||||||
|
return DropdownMenuItem(
|
||||||
|
value: e,
|
||||||
|
child: Text(e.name!),
|
||||||
|
onTap: () async {
|
||||||
|
setState(() {
|
||||||
|
async = true;
|
||||||
|
});
|
||||||
|
//// barangay
|
||||||
|
if (e.name!.toLowerCase() == "barangay chairperson" ||
|
||||||
|
e.name!.toLowerCase() ==
|
||||||
|
"barangay councilor" ||
|
||||||
|
e.name!.toLowerCase() ==
|
||||||
|
"barangay nurse" ||
|
||||||
|
e.name!.toLowerCase() ==
|
||||||
|
"health officer in-charge" ||
|
||||||
|
e.name!.toLowerCase() ==
|
||||||
|
"health monitoring in-charge" ||
|
||||||
|
e.name!.toLowerCase() ==
|
||||||
|
"health nurse") {
|
||||||
|
////===========
|
||||||
|
//// purok
|
||||||
|
} else if (e.name!.toLowerCase() ==
|
||||||
|
"purok president") {
|
||||||
|
////===============
|
||||||
|
//// station
|
||||||
|
} else if (e.name!.toLowerCase() == "qr code scanner" ||
|
||||||
|
e.name!.toLowerCase() ==
|
||||||
|
"security guard" ||
|
||||||
|
e.name!.toLowerCase() ==
|
||||||
|
"checkpoint in-charge" ||
|
||||||
|
e.name!.toLowerCase() ==
|
||||||
|
'office/branch chief' ||
|
||||||
|
e.name!.toLowerCase() ==
|
||||||
|
"process server") {
|
||||||
|
//// agency
|
||||||
|
} else if (e.name!.toLowerCase() ==
|
||||||
|
"establishment point-person" ||
|
||||||
|
e.name!.toLowerCase() ==
|
||||||
|
'registration in-charge' ||
|
||||||
|
e.name!.toLowerCase() ==
|
||||||
|
"provincial/city drrm officer in-charge") {
|
||||||
|
try {
|
||||||
|
areaType = "agency";
|
||||||
|
agencies = await ProfileUtilities
|
||||||
|
.instance
|
||||||
|
.getAgecies();
|
||||||
|
} catch (e) {
|
||||||
|
bloc.add(CallErrorState(
|
||||||
|
message: e.toString()));
|
||||||
|
}
|
||||||
|
setState(() {
|
||||||
|
async = false;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}).toList(),
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
height: 12,
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 75,
|
||||||
|
width: double.maxFinite,
|
||||||
|
child: ModalProgressHUD(
|
||||||
|
inAsyncCall: async,
|
||||||
|
child: SizedBox(
|
||||||
|
child: areaType == "agency"
|
||||||
|
? SearchField(
|
||||||
|
inputFormatters: [
|
||||||
|
UpperCaseTextFormatter()
|
||||||
|
],
|
||||||
|
focusNode: agencyFocusNode,
|
||||||
|
itemHeight: 100,
|
||||||
|
suggestions: agencies
|
||||||
|
.map((Agency agency) =>
|
||||||
|
SearchFieldListItem(
|
||||||
|
agency.name!,
|
||||||
|
item: agency,
|
||||||
|
child: ListTile(
|
||||||
|
title:
|
||||||
|
AutoSizeText(
|
||||||
|
agency.name!
|
||||||
|
.toUpperCase(),
|
||||||
|
minFontSize:
|
||||||
|
12,
|
||||||
|
),
|
||||||
|
subtitle: Text(agency
|
||||||
|
.privateEntity ==
|
||||||
|
true
|
||||||
|
? "Private"
|
||||||
|
: agency.privateEntity ==
|
||||||
|
false
|
||||||
|
? "Government"
|
||||||
|
: ""),
|
||||||
|
)))
|
||||||
|
.toList(),
|
||||||
|
validator: FormBuilderValidators
|
||||||
|
.required(
|
||||||
|
errorText:
|
||||||
|
"This field is required"),
|
||||||
|
searchInputDecoration:
|
||||||
|
normalTextFieldStyle(
|
||||||
|
"Agency *", "")
|
||||||
|
.copyWith(
|
||||||
|
suffixIcon:
|
||||||
|
GestureDetector(
|
||||||
|
onTap: () => agencyFocusNode
|
||||||
|
.unfocus(),
|
||||||
|
child: const Icon(
|
||||||
|
Icons.arrow_drop_down,
|
||||||
|
),
|
||||||
|
)),
|
||||||
|
////agency suggestion tap
|
||||||
|
onSuggestionTap: (agency) {
|
||||||
|
setState(() {
|
||||||
|
agencyFocusNode.unfocus();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
emptyWidget: const Text(
|
||||||
|
"No Result Found.."))
|
||||||
|
: areaType == "station"?Container():Container()))),
|
||||||
|
SizedBox(
|
||||||
|
width: double.infinity,
|
||||||
|
height: 50,
|
||||||
|
child: ElevatedButton(
|
||||||
|
style: mainBtnStyle(
|
||||||
|
primary, Colors.transparent, second),
|
||||||
|
onPressed: () {
|
||||||
|
if (formKey.currentState!
|
||||||
|
.saveAndValidate()) {
|
||||||
|
Navigator.pop(context);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
child: const Text("Add"))),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}),
|
||||||
|
));
|
||||||
|
});
|
||||||
|
})
|
||||||
|
],
|
||||||
|
),
|
||||||
|
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) {
|
||||||
|
return BlocConsumer<AssignAreaBloc, AssignAreaState>(
|
||||||
|
listener: (context, state) {
|
||||||
|
if (state is AssignAreaLoadingState) {
|
||||||
|
final progress = ProgressHUD.of(context);
|
||||||
|
progress!.showWithText("Please wait...");
|
||||||
|
}
|
||||||
|
if (state is AssignAreaErorState ||
|
||||||
|
state is AssignedAreaLoadedState ||
|
||||||
|
state is UserNotExistError ||
|
||||||
|
state is AssignedAreaDeletedState) {
|
||||||
|
final progress = ProgressHUD.of(context);
|
||||||
|
progress!.dismiss();
|
||||||
|
}
|
||||||
|
|
||||||
|
////Deleted State
|
||||||
|
if (state is AssignedAreaDeletedState) {
|
||||||
|
if (state.success) {
|
||||||
|
successAlert(context, "Delete Successfull!",
|
||||||
|
"Role Module Deleted Successfully", () {
|
||||||
|
Navigator.of(context).pop();
|
||||||
|
context.read<AssignAreaBloc>().add(LoadAssignedAreas());
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
errorAlert(
|
||||||
|
context, "Delete Failed", "Role Module Delete Failed",
|
||||||
|
() {
|
||||||
|
Navigator.of(context).pop();
|
||||||
|
context.read<AssignAreaBloc>().add(LoadAssignedAreas());
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
builder: (context, state) {
|
||||||
|
if (state is AssignedAreaLoadedState) {
|
||||||
|
assignedAreas = {};
|
||||||
|
userAssignedAreas = state.userAssignedAreas;
|
||||||
|
if (state.userAssignedAreas.isNotEmpty) {
|
||||||
|
for (var roleMod in state.userAssignedAreas) {
|
||||||
|
assignedAreas.addAll({
|
||||||
|
roleMod.assignedRole!.role!.name!.toLowerCase(): []
|
||||||
|
});
|
||||||
|
String areaType = roleMod
|
||||||
|
.assignedRoleAreaType!.areaTypeName
|
||||||
|
.toLowerCase();
|
||||||
|
for (var area in roleMod.assignedArea) {
|
||||||
|
if (areaType == 'baranggay') {
|
||||||
|
assignedAreas[roleMod.assignedRole!.role!.name!
|
||||||
|
.toLowerCase()]!
|
||||||
|
.add(Content(
|
||||||
|
id: area['id'],
|
||||||
|
name: area['area']['brgydesc']));
|
||||||
|
} else if (areaType == 'purok') {
|
||||||
|
assignedAreas[roleMod.assignedRole!.role!.name!
|
||||||
|
.toLowerCase()]!
|
||||||
|
.add(Content(
|
||||||
|
id: area['id'],
|
||||||
|
name: area['area']['purokdesc']));
|
||||||
|
} else if (areaType == 'station') {
|
||||||
|
assignedAreas[roleMod.assignedRole!.role!.name!
|
||||||
|
.toLowerCase()]!
|
||||||
|
.add(Content(
|
||||||
|
id: area['id'],
|
||||||
|
name: area['area']["station_name"]));
|
||||||
|
} else if (areaType == 'agency') {
|
||||||
|
assignedAreas[roleMod.assignedRole!.role!.name!
|
||||||
|
.toLowerCase()]!
|
||||||
|
.add(Content(
|
||||||
|
id: area['id'],
|
||||||
|
name: area['area']['name']));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (state.userAssignedAreas.isNotEmpty) {
|
||||||
|
return Column(
|
||||||
|
children: [
|
||||||
|
ListTile(
|
||||||
|
tileColor: second,
|
||||||
|
leading: const Icon(
|
||||||
|
FontAwesome5.user_alt,
|
||||||
|
color: Colors.white,
|
||||||
|
),
|
||||||
|
title: Text(state.fullname.toUpperCase(),
|
||||||
|
style: Theme.of(context)
|
||||||
|
.textTheme
|
||||||
|
.titleLarge!
|
||||||
|
.copyWith(color: Colors.white)),
|
||||||
|
subtitle: Text("Person full name",
|
||||||
|
style: Theme.of(context)
|
||||||
|
.textTheme
|
||||||
|
.labelLarge!
|
||||||
|
.copyWith(color: Colors.white)),
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: GroupListView(
|
||||||
|
sectionsCount: assignedAreas.keys.toList().length,
|
||||||
|
countOfItemInSection: (int section) {
|
||||||
|
return assignedAreas.values
|
||||||
|
.toList()[section]
|
||||||
|
.length;
|
||||||
|
},
|
||||||
|
itemBuilder:
|
||||||
|
(BuildContext context, IndexPath index) {
|
||||||
|
return ListTile(
|
||||||
|
dense: true,
|
||||||
|
trailing: IconButton(
|
||||||
|
color: Colors.grey.shade600,
|
||||||
|
icon: const Icon(Icons.delete),
|
||||||
|
onPressed: () {
|
||||||
|
confirmAlert(context, () {
|
||||||
|
context.read<AssignAreaBloc>().add(
|
||||||
|
DeleteAssignedArea(
|
||||||
|
areaId: assignedAreas.values
|
||||||
|
.toList()[index.section]
|
||||||
|
[index.index]
|
||||||
|
.id));
|
||||||
|
}, "Delete?", "Confirm Delete?");
|
||||||
|
},
|
||||||
|
),
|
||||||
|
title: Row(
|
||||||
|
children: [
|
||||||
|
Text("${index.index + 1}",
|
||||||
|
style: Theme.of(context)
|
||||||
|
.textTheme
|
||||||
|
.labelLarge!
|
||||||
|
.copyWith(color: Colors.white)),
|
||||||
|
const SizedBox(
|
||||||
|
width: 20,
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: Text(
|
||||||
|
assignedAreas.values
|
||||||
|
.toList()[index.section]
|
||||||
|
[index.index]
|
||||||
|
.name
|
||||||
|
.toUpperCase(),
|
||||||
|
style: Theme.of(context)
|
||||||
|
.textTheme
|
||||||
|
.labelLarge!
|
||||||
|
.copyWith(color: primary),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
separatorBuilder: (context, index) {
|
||||||
|
return const Divider();
|
||||||
|
},
|
||||||
|
groupHeaderBuilder:
|
||||||
|
(BuildContext context, int section) {
|
||||||
|
return ListTile(
|
||||||
|
tileColor: Colors.white,
|
||||||
|
title: Text(
|
||||||
|
assignedAreas.keys
|
||||||
|
.toList()[section]
|
||||||
|
.toUpperCase(),
|
||||||
|
style: Theme.of(context)
|
||||||
|
.textTheme
|
||||||
|
.titleMedium!
|
||||||
|
.copyWith(
|
||||||
|
color: primary,
|
||||||
|
fontWeight: FontWeight.bold),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
return EmptyData(
|
||||||
|
message:
|
||||||
|
"No Assigned Area available for ${state.fullname}. Please click + to add.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (state is AssignAreaErorState) {
|
||||||
|
print("error state");
|
||||||
|
}
|
||||||
|
if (state is UserNotExistError) {
|
||||||
|
return const Center(
|
||||||
|
child: Text("User Not Exsit"),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return Container();
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return Container();
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class Content {
|
||||||
|
final int id;
|
||||||
|
final String name;
|
||||||
|
const Content({required this.id, required this.name});
|
||||||
|
}
|
||||||
|
|
|
@ -213,7 +213,7 @@ class RbacRoleAssignment extends StatelessWidget {
|
||||||
Flexible(
|
Flexible(
|
||||||
child: Text(
|
child: Text(
|
||||||
state.assignedRoles[index].role!
|
state.assignedRoles[index].role!
|
||||||
.name,
|
.name!,
|
||||||
style: Theme.of(context)
|
style: Theme.of(context)
|
||||||
.textTheme
|
.textTheme
|
||||||
.titleMedium!
|
.titleMedium!
|
||||||
|
@ -262,8 +262,8 @@ class RbacRoleAssignment extends StatelessWidget {
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
return const EmptyData(
|
return EmptyData(
|
||||||
message: "No Role available. Please click + to add.");
|
message: "No Role available for ${state.fullname}. Please click + to add.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (state is RoleAssignmentErrorState) {
|
if (state is RoleAssignmentErrorState) {
|
||||||
|
|
|
@ -76,9 +76,6 @@ class _DashBoardState extends State<DashBoard> {
|
||||||
tempUnit2Cards = unit2Cards.sublist(0, 4);
|
tempUnit2Cards = unit2Cards.sublist(0, 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
superadminCards.forEach((el) {
|
|
||||||
print(el.object.name);
|
|
||||||
});
|
|
||||||
|
|
||||||
return Container(
|
return Container(
|
||||||
padding:
|
padding:
|
||||||
|
|
|
@ -209,6 +209,7 @@ class SuperAdminMenu extends StatelessWidget {
|
||||||
);
|
);
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
////////////////////////////////
|
||||||
if (object.object.name == 'Area') {
|
if (object.object.name == 'Area') {
|
||||||
Navigator.of(context).pop();
|
Navigator.of(context).pop();
|
||||||
showDialog(
|
showDialog(
|
||||||
|
|
|
@ -393,7 +393,7 @@ class _UniT2LoginState extends State<UniT2Login> {
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return Container();
|
return const UniTSplashScreen();
|
||||||
}),
|
}),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
@ -158,11 +158,11 @@ class EstPointPersonRoleAssignmentScreen extends StatelessWidget {
|
||||||
if (!assignedRoles.keys.contains(fullName)) {
|
if (!assignedRoles.keys.contains(fullName)) {
|
||||||
assignedRoles.addAll({fullName: []});
|
assignedRoles.addAll({fullName: []});
|
||||||
assignedRoles[fullName]!.add(Content(
|
assignedRoles[fullName]!.add(Content(
|
||||||
id: assignedRole.id!, name: assignedRole.role!.name));
|
id: assignedRole.id!, name: assignedRole.role!.name!));
|
||||||
} else {
|
} else {
|
||||||
assignedRoles[fullName]!.add(Content(
|
assignedRoles[fullName]!.add(Content(
|
||||||
id: assignedRole.id!,
|
id: assignedRole.id!,
|
||||||
name: assignedRole.role!.name));
|
name: assignedRole.role!.name!));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,4 +39,23 @@ class RbacAssignedAreaServices {
|
||||||
}
|
}
|
||||||
return userAssignedAreas;
|
return userAssignedAreas;
|
||||||
}
|
}
|
||||||
|
Future<bool> deleteAssignedArea({required int areaId}) async {
|
||||||
|
bool success = false;
|
||||||
|
String path = "${Url.instance.getAssignAreas()}$areaId/";
|
||||||
|
Map<String, String> headers = {
|
||||||
|
'Content-Type': 'application/json; charset=UTF-8',
|
||||||
|
'X-Client-Key': xClientKey,
|
||||||
|
'X-Client-Secret': xClientKeySecret
|
||||||
|
};
|
||||||
|
try {
|
||||||
|
http.Response response = await Request.instance
|
||||||
|
.deleteRequest(path: path, headers: headers, body: {}, param: {});
|
||||||
|
if (response.statusCode == 200) {
|
||||||
|
success = true;
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
throw e.toString();
|
||||||
|
}
|
||||||
|
return success;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,8 +14,8 @@ class Url {
|
||||||
}
|
}
|
||||||
|
|
||||||
String prefixHost() {
|
String prefixHost() {
|
||||||
// return "https";
|
return "https";
|
||||||
return "http";
|
// return "http";
|
||||||
}
|
}
|
||||||
|
|
||||||
String authentication() {
|
String authentication() {
|
||||||
|
|
16
pubspec.lock
16
pubspec.lock
|
@ -25,6 +25,14 @@ packages:
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.0.2"
|
version: "3.0.2"
|
||||||
|
animated_splash_screen:
|
||||||
|
dependency: "direct main"
|
||||||
|
description:
|
||||||
|
name: animated_splash_screen
|
||||||
|
sha256: f45634db6ec4e8cf034c53e03f3bd83898a16fe3c9286bf5510b6831dfcf2124
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "1.3.0"
|
||||||
app_popup_menu:
|
app_popup_menu:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
|
@ -973,6 +981,14 @@ packages:
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.0.1"
|
version: "2.0.1"
|
||||||
|
page_transition:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: page_transition
|
||||||
|
sha256: dee976b1f23de9bbef5cd512fe567e9f6278caee11f5eaca9a2115c19dc49ef6
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "2.1.0"
|
||||||
path:
|
path:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -97,6 +97,7 @@ dependencies:
|
||||||
url_launcher: ^6.1.11
|
url_launcher: ^6.1.11
|
||||||
url_launcher_android: ^6.0.38
|
url_launcher_android: ^6.0.38
|
||||||
share_plus: ^7.1.0
|
share_plus: ^7.1.0
|
||||||
|
animated_splash_screen: ^1.3.0
|
||||||
|
|
||||||
dependency_overrides:
|
dependency_overrides:
|
||||||
intl: ^0.18.0
|
intl: ^0.18.0
|
||||||
|
|
Loading…
Reference in New Issue