feat : action page

This commit is contained in:
2025-09-06 22:08:27 +03:30
parent 1bc449c9be
commit 5281bcbea6
12 changed files with 181 additions and 190 deletions

View File

@@ -1,5 +1,4 @@
import 'package:flutter/material.dart';
import 'package:rasadyar_chicken/data/models/request/change_password/change_password_request_model.dart';
import 'package:rasadyar_chicken/data/models/response/iran_province_city/iran_province_city_model.dart';
import 'package:rasadyar_chicken/data/models/response/user_profile/user_profile.dart';
import 'package:rasadyar_chicken/presentation/pages/poultry_science/root/logic.dart';
@@ -10,7 +9,9 @@ class PoultryScienceProfileLogic extends GetxController {
RxInt selectedInformationType = 0.obs;
Rxn<Jalali> birthDate = Rxn<Jalali>();
Rx<Resource<UserProfile>> userProfile = Rx<Resource<UserProfile>>(Resource.loading());
Rx<Resource<UserProfile>> userProfile = Rx<Resource<UserProfile>>(
Resource.loading(),
);
TextEditingController nameController = TextEditingController();
TextEditingController lastNameController = TextEditingController();
@@ -52,7 +53,8 @@ class PoultryScienceProfileLogic extends GetxController {
lastNameController.text = data.data?.lastName ?? '';
nationalCodeController.text = data.data?.nationalCode ?? '';
nationalIdController.text = data.data?.nationalId ?? '';
birthdayController.text = data.data?.birthday?.toJalali.formatCompactDate() ?? '';
birthdayController.text =
data.data?.birthday?.toJalali.formatCompactDate() ?? '';
birthDate.value = data.data?.birthday?.toJalali;
selectedProvince.value = IranProvinceCityModel(
name: data.data?.province ?? '',
@@ -72,9 +74,9 @@ class PoultryScienceProfileLogic extends GetxController {
}
Future<void> getUserProfile() async {
userProfile.value = Resource.loading();
/* userProfile.value = Resource.loading();
await safeCall<UserProfile?>(
call: () async => await rootLogic.chickenRepository.getUserProfile(
call: () async => await rootLogic.poultryRepository.getUserProfile(
token: rootLogic.tokenService.accessToken.value!,
),
onSuccess: (result) {
@@ -83,11 +85,11 @@ class PoultryScienceProfileLogic extends GetxController {
}
},
onError: (error, stackTrace) {},
);
);*/
}
Future<void> getCites() async {
await safeCall(
/* await safeCall(
call: () =>
rootLogic.chickenRepository.getCity(provinceName: selectedProvince.value?.name ?? ''),
onSuccess: (result) {
@@ -95,11 +97,11 @@ class PoultryScienceProfileLogic extends GetxController {
cites.value = result;
}
},
);
);*/
}
Future<void> updateUserProfile() async {
UserProfile userProfile = UserProfile(
/* UserProfile userProfile = UserProfile(
firstName: nameController.text,
lastName: lastNameController.text,
nationalCode: nationalCodeController.text,
@@ -121,11 +123,11 @@ class PoultryScienceProfileLogic extends GetxController {
onError: (error, stackTrace) {
isOnLoading.value = false;
},
);
);*/
}
Future<void> updatePassword() async {
if (formKey.currentState?.validate() ?? false) {
/*if (formKey.currentState?.validate() ?? false) {
ChangePasswordRequestModel model = ChangePasswordRequestModel(
username: userProfile.value.data?.mobile,
password: newPasswordController.text,
@@ -137,7 +139,7 @@ class PoultryScienceProfileLogic extends GetxController {
model: model,
),
);
}
}*/
}
void clearPasswordForm() {

View File

@@ -458,34 +458,6 @@ class PoultryScienceProfilePage extends GetView<PoultryScienceProfileLogic> {
);
}
Widget _provinceWidget() {
return Obx(() {
return OverlayDropdownWidget<IranProvinceCityModel>(
items: controller.rootLogic.provinces,
onChanged: (value) {
controller.selectedProvince.value = value;
},
selectedItem: controller.selectedProvince.value,
itemBuilder: (item) => Text(item.name ?? 'بدون نام'),
labelBuilder: (item) => Text(item?.name ?? 'انتخاب استان'),
);
});
}
Widget _cityWidget() {
return ObxValue((data) {
return OverlayDropdownWidget<IranProvinceCityModel>(
items: data,
onChanged: (value) {
controller.selectedCity.value = value;
},
selectedItem: controller.selectedCity.value,
itemBuilder: (item) => Text(item.name ?? 'بدون نام'),
labelBuilder: (item) => Text(item?.name ?? 'انتخاب شهر'),
);
}, controller.cites);
}
Widget changePasswordBottomSheet() {
return BaseBottomSheet(
height: 400.h,