Update: 2026-08-08 14:09:20

This commit is contained in:
Hamza-Ayed
2026-08-08 14:09:20 +03:00
parent c8e8e481a6
commit 8395436f23
14 changed files with 295 additions and 104 deletions
@@ -45,7 +45,10 @@ class DestinationController extends GetxController {
if (response != null && response is Map && response['status'] == 'success') {
final data = response['message'];
if (data != null) {
// عند غياب وجهة نشطة يردّ السيرفر نصاً ("No active destination set.")
// لا خريطة، وفهرسته كخريطة كان يرمي
// type 'String' is not a subtype of type 'int'.
if (data is Map) {
final lat = double.tryParse(data['target_latitude']?.toString() ?? '0') ?? 0.0;
final lng = double.tryParse(data['target_longitude']?.toString() ?? '0') ?? 0.0;
activeLatLng = LatLng(lat, lng);
@@ -10,6 +10,7 @@ import 'package:siro_driver/constant/box_name.dart';
import 'package:siro_driver/constant/links.dart';
import 'package:siro_driver/controller/functions/crud.dart';
import 'package:siro_driver/main.dart';
import 'package:siro_driver/print.dart';
import 'package:siro_driver/views/widgets/mycircular.dart';
import '../../../views/home/my_wallet/payment_screen_mtn.dart';
@@ -88,9 +89,36 @@ class CaptainWalletController extends GetxController {
}
Future refreshCaptainWallet() async {
await getCaptainWalletFromRide();
await getCaptainWalletFromBuyPoints();
// await checkAccountCaptainBank();
// ═══════════════════════════════════════════════════════════════
// ‏isLoading كان يُطفأ في نهاية الدالة الثانية فقط. أي استثناء قبلها
// ‏— وأشهره سائق بلا أي دفعات، إذ يعود message = [] فيرمي فهرسه
// ‏[0] خطأ نطاق — كان يترك الشاشة تدور بلا نهاية بلا رسالة.
// ‏finally يضمن إطفاءه مهما حدث.
// ═══════════════════════════════════════════════════════════════
isLoading = true;
update();
try {
await getCaptainWalletFromRide();
await getCaptainWalletFromBuyPoints();
// await checkAccountCaptainBank();
} catch (e) {
Log.print('❌ refreshCaptainWallet: $e');
mySnackbarError('Connection problem, please try again'.tr);
} finally {
isLoading = false;
update();
}
}
/// ‏يقرأ رقماً من ردّ المحفظة بأمان: الردّ قد يكون خريطة بلا `message`،
/// ‏أو قائمة فارغة (سائق جديد بلا دفعات) — وكلاهما كان يُسقط الشاشة.
static String _readWalletNumber(dynamic decoded, String key) {
if (decoded is! Map) return '0';
final message = decoded['message'];
if (message is! List || message.isEmpty) return '0';
final first = message.first;
if (first is! Map) return '0';
return first[key]?.toString() ?? '0';
}
List amountToNewDriverMap = [];
@@ -122,23 +150,27 @@ class CaptainWalletController extends GetxController {
}
Future getCaptainWalletFromRide() async {
isLoading = true;
update();
var res = await CRUD().getWallet(
link: AppLink.getAllPaymentFromRide,
payload: {'driverID': box.read(BoxName.driverID).toString()},
);
// isLoading = false;
if (res != 'failure') {
walletDate = jsonDecode(res);
totalAmount = walletDate['message'][0]['total_amount'] ?? '0';
final decoded = jsonDecode(res);
walletDate = decoded is Map ? decoded : {};
totalAmount = _readWalletNumber(decoded, 'total_amount');
update();
var res1 = await CRUD().getWallet(
link: AppLink.getAllPaymentVisa,
payload: {'driverID': box.read(BoxName.driverID).toString()});
walletDateVisa = jsonDecode(res1);
totalAmountVisa = walletDateVisa['message'][0]['diff'].toString();
if (res1 != 'failure') {
final decodedVisa = jsonDecode(res1);
walletDateVisa = decodedVisa is Map ? decodedVisa : {};
totalAmountVisa = _readWalletNumber(decodedVisa, 'diff');
} else {
totalAmountVisa = '0';
}
update();
} else {
totalAmount = "0";
@@ -147,21 +179,16 @@ class CaptainWalletController extends GetxController {
}
Future getCaptainWalletFromBuyPoints() async {
// isLoading = true;
update();
var res = await CRUD().getWallet(
link: AppLink.getDriverPaymentPoints,
payload: {'driverID': box.read(BoxName.driverID).toString()},
);
isLoading = false;
// update();
if (res != 'failure') {
walletDriverPointsDate = jsonDecode(res);
double totalPointsDouble = double.parse(
walletDriverPointsDate['message'][0]['total_amount'].toString());
totalPoints = totalPointsDouble.toStringAsFixed(0);
final decoded = jsonDecode(res);
walletDriverPointsDate = decoded is Map ? decoded : {};
final raw = _readWalletNumber(decoded, 'total_amount');
totalPoints = (double.tryParse(raw) ?? 0).toStringAsFixed(0);
} else {
totalPoints = '0';
}
@@ -10,6 +10,11 @@ class DriverScheduledRidesController extends GetxController {
final bookings = <Map<String, dynamic>>[].obs;
final isLoading = false.obs;
/// ‏فشل الجلب ≠ لا توجد حجوزات. بدون هذا العلم كانت الشاشة تعرض
/// ‏"لا حجوزات قادمة" حتى حين يردّ السيرفر 500، فيطمئن الكابتن
/// ‏لعدم وجود عمل بينما الحقيقة أننا لا نعرف.
final hasError = false.obs;
@override
void onInit() {
super.onInit();
@@ -21,13 +26,19 @@ class DriverScheduledRidesController extends GetxController {
try {
final res = await _crud.post(
link: AppLink.scheduledList,
payload: {'scope': 'upcoming_driver'},
payload: {'scope': 'upcoming_driver'},
);
final data = _extract(res);
final list = (data?['bookings'] as List?) ?? [];
if (data == null) {
hasError.value = true;
return;
}
final list = (data['bookings'] as List?) ?? [];
bookings.assignAll(
list.map((e) => Map<String, dynamic>.from(e as Map)).toList());
hasError.value = false;
} catch (e) {
hasError.value = true;
mySnackbarError('Failed to fetch scheduled rides'.tr);
} finally {
isLoading.value = false;
+4
View File
@@ -945,6 +945,10 @@
"Sun": "أحد",
"Upcoming Scheduled Rides": "الرحلات المجدولة القادمة",
"You have no upcoming scheduled rides": "ليس لديك رحلات مجدولة قادمة",
"Could not load scheduled rides": "تعذّر تحميل الرحلات المجدولة",
"Please check your connection and try again.": "تحقّق من اتصالك ثم أعد المحاولة.",
"Retry": "إعادة المحاولة",
"Insurance plans have not been launched in your area yet. Once a partner plan is available it will appear here automatically.": "لم تُطلق خطط التأمين في منطقتك بعد. ستظهر هنا تلقائياً فور توفّر خطة من أحد الشركاء.",
"Starting Point": "نقطة الانطلاق",
"Destination": "وجهة الوصول",
"Failed to fetch scheduled rides": "تعذّر جلب الرحلات المجدولة",
+4
View File
@@ -903,6 +903,10 @@
"Sun": "Sun",
"Upcoming Scheduled Rides": "Upcoming Scheduled Rides",
"You have no upcoming scheduled rides": "You have no upcoming scheduled rides",
"Could not load scheduled rides": "Could not load scheduled rides",
"Please check your connection and try again.": "Please check your connection and try again.",
"Retry": "Retry",
"Insurance plans have not been launched in your area yet. Once a partner plan is available it will appear here automatically.": "Insurance plans have not been launched in your area yet. Once a partner plan is available it will appear here automatically.",
"Starting Point": "Starting Point",
"Destination": "Destination",
"Failed to fetch scheduled rides": "Failed to fetch scheduled rides",
@@ -222,24 +222,34 @@ class _HomeAppBar extends StatelessWidget implements PreferredSizeWidget {
// ── Logo + App Name ──────────────────────
title: Padding(
padding: const EdgeInsets.only(left: 4),
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
_LogoBadge(),
const SizedBox(width: 6),
Flexible(
child: Text(
AppInformation.appName.split(' ')[0].tr,
style: const TextStyle(
color: _Token.accent,
fontSize: 18,
fontWeight: FontWeight.w800,
letterSpacing: 0.5,
),
overflow: TextOverflow.ellipsis,
),
),
],
// ‏شارات الـ actions تلتهم عرض الـ AppBar فلا يبقى للعنوان أحياناً
// ‏سوى ~26px، بينما الشعار وحده 36px — ومن هنا كان الفيض.
// ‏نُسقط الاسم عند ضيق المساحة ونُبقي الشعار: هو الهوية الأهم.
child: LayoutBuilder(
builder: (context, constraints) {
final showName = constraints.maxWidth >= 96;
return Row(
mainAxisSize: MainAxisSize.min,
children: [
_LogoBadge(),
if (showName) ...[
const SizedBox(width: 6),
Flexible(
child: Text(
AppInformation.appName.split(' ')[0].tr,
style: const TextStyle(
color: _Token.accent,
fontSize: 18,
fontWeight: FontWeight.w800,
letterSpacing: 0.5,
),
overflow: TextOverflow.ellipsis,
),
),
],
],
);
},
),
),
actions: [
@@ -140,14 +140,39 @@ class DriverInsurancePage extends StatelessWidget {
// ── الخطط المتاحة ──────────────────────────────────────────
List<Widget> _plansView(BuildContext context, DriverInsuranceController c) {
if (c.plans.isEmpty) {
// ‏الصفحة كانت تبدو "معطّلة" لأنها تعرض عنواناً واحداً بلا سبب.
// ‏الحالة الحقيقية: لا خطط مُفعّلة بعد لدى الشركاء — لا خطأ ولا
// ‏نقص أهلية — ونقولها صراحة حتى لا يظن الكابتن أن التطبيق خربان.
return [
const SizedBox(height: 80),
const SizedBox(height: 72),
Icon(Icons.health_and_safety_outlined,
size: 80, color: Colors.grey.shade400),
const SizedBox(height: 16),
Text('No insurance plans available yet'.tr,
textAlign: TextAlign.center,
style: const TextStyle(fontSize: 18, color: Colors.grey)),
style: const TextStyle(
fontSize: 18,
fontWeight: FontWeight.w700,
color: Colors.grey)),
const SizedBox(height: 10),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 24),
child: Text(
'Insurance plans have not been launched in your area yet. Once a partner plan is available it will appear here automatically.'
.tr,
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 14, height: 1.5, color: Colors.grey.shade600),
),
),
const SizedBox(height: 20),
Center(
child: TextButton.icon(
onPressed: c.isLoading.value ? null : () => c.refreshAll(),
icon: const Icon(Icons.refresh_rounded, size: 18),
label: Text('Refresh'.tr),
),
),
];
}
@@ -20,6 +20,44 @@ class DriverScheduledRidesPage extends StatelessWidget {
return const Center(child: CircularProgressIndicator());
}
// ‏تعذّر الجلب: نقولها بدل ادّعاء "لا حجوزات" — الفرق بينهما
// ‏هو الفرق بين كابتن يطمئن وكابتن يفوته عمل مؤكد.
if (controller.hasError.value) {
return Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(Icons.cloud_off_rounded,
size: 80, color: Colors.grey.shade400),
const SizedBox(height: 16),
Text(
'Could not load scheduled rides'.tr,
style: const TextStyle(
fontSize: 18,
fontWeight: FontWeight.w700,
color: Colors.grey),
),
const SizedBox(height: 8),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 32),
child: Text(
'Please check your connection and try again.'.tr,
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 14, color: Colors.grey.shade600, height: 1.5),
),
),
const SizedBox(height: 16),
ElevatedButton.icon(
onPressed: controller.fetch,
icon: const Icon(Icons.refresh_rounded, size: 18),
label: Text('Retry'.tr),
),
],
),
);
}
if (controller.bookings.isEmpty) {
return Center(
child: Column(
@@ -18,7 +18,9 @@ class StatSummaryCard extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
padding: const EdgeInsets.all(16),
// ‏رأسي 12 لا 16: البطاقة داخل شبكة بارتفاع ثابت، و16 كانت تتجاوزه
// ‏بنحو 10px مع خط الرقم مقاس 22.
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 12),
decoration: BoxDecoration(
color: FinanceDesignSystem.cardColor,
borderRadius: BorderRadius.circular(FinanceDesignSystem.cardRadius),
@@ -54,14 +56,22 @@ class StatSummaryCard extends StatelessWidget {
),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: [
Text(
value,
style: TextStyle(
fontSize: 22,
fontWeight: FontWeight.w900,
color: FinanceDesignSystem.primaryDark,
fontFamily: 'digit',
// ‏الرقم يتقلّص بدل أن يفيض: مبالغ الأرباح تطول بلا سقف
// ‏(٤ خانات + كسور + عملة) والبطاقة عرضها ثابت.
FittedBox(
fit: BoxFit.scaleDown,
alignment: AlignmentDirectional.centerStart,
child: Text(
value,
maxLines: 1,
style: TextStyle(
fontSize: 22,
fontWeight: FontWeight.w900,
color: FinanceDesignSystem.primaryDark,
fontFamily: 'digit',
),
),
),
Text(