feat : profile and map

This commit is contained in:
2025-07-28 15:57:30 +03:30
parent 6057976b46
commit d9724f681c
67 changed files with 2835 additions and 444 deletions

View File

@@ -1,28 +1,27 @@
import 'package:rasadyar_core/core.dart';
import 'package:rasadyar_inspection/data/model/response/user_profile/user_profile_model.dart';
import 'package:rasadyar_inspection/data/repositories/user/user_repository_imp.dart';
import 'package:rasadyar_inspection/injection/inspection_di.dart';
import 'package:rasadyar_inspection/inspection.dart';
class ProfileLogic extends GetxController {
List<String> roles = <String>[
'کاربر عادی',
'کاربر ویژه',
'کاربر VIP',
'کاربر نقره ای',
'کاربر طلایی',
];
RootLogic rootLogic = Get.find<RootLogic>();
UserRepositoryImp userRepository = diInspection.get<UserRepositoryImp>();
Rx<Resource<UserProfileModel>> userProfile = Resource<UserProfileModel>.loading().obs;
RxInt selectedRole = 0.obs;
RxInt selectedInformationType = 0.obs;
@override
void onReady() {
// TODO: implement onReady
super.onReady();
rootLogic.userProfile.listen((data) {
if (data != null) {
userProfile.value = Resource<UserProfileModel>.success(data);
} else {
userProfile.value = Resource<UserProfileModel>.error('Failed to load user profile');
}
});
}
@override
@@ -30,4 +29,26 @@ class ProfileLogic extends GetxController {
// TODO: implement onClose
super.onClose();
}
Future<void> fetchUserProfile() async {
userProfile.value = Resource<UserProfileModel>.loading();
await safeCall(
call: () => userRepository.fetchUserProfile(
token: rootLogic.tokenStorageService.accessToken.value ?? '',
),
onSuccess: (profile) {
if (profile != null) {
userProfile.value = Resource<UserProfileModel>.success(profile);
} else {
userProfile.value = Resource<UserProfileModel>.error('Failed to load user profile');
}
},
onError: (error, stackTrace) {
userProfile.value = Resource<UserProfileModel>.error(
'Failed to load user profile: ${error.toString()}',
);
},
);
}
}