feat(apps): الخريطة وطلب الرحلة ودورة السائق — المرحلة 4
## حسم تعارض الخرائط (docs/38 §7) لصالح القرار الأحدث 2026-07-20: كل الخرائط — البلاطات والبحث والعكسي والمسار — مباشرة إلى map-saas بترويسة x-api-key، بلا مرور بباك إند تريبز. نقاط /maps/* في الباك إند لا تُستعمل، وإحداها (geocode) معطوبة على المنشور. العقد تُحقّق حيّاً بـcurl قبل كتابة سطر. ## النواة المشتركة - core/api/antlaq_api.dart: عميل منفصل بلا AuthInterceptor — توكن تريبز لا شأن لخادم الخرائط به، وإرساله إليه تسريب بلا مقابل - core/realtime: Socket.IO واحد (trip:update · driver:location · trip:offer · trip:offer_taken) - core/location: نقطة الموقع الوحيدة بمرشّح 25 متراً - features/trip/data: سبعة نماذج + MapsRepository + TripRepository متطابق حرفياً بين التوأمين ## الراكب RideCubit بستّ مراحل + RidePage وثمانية ويدجت: الخريطة · دبّوس المنتصف · المخطّط · الخط الزمني · اختيار النوع · التأكيد · البحث عن سائق · الرحلة. ## السائق DutyCubit بأربع مراحل + DutyPage: مفتاح الاتصال · العرض بمؤقّت · الرحلة. ## قرارات تحمي الأداء والصحّة - GeoPoint مستقلّ عن حزمة الخريطة؛ intaleq_maps مستوردة في ملف واحد فقط لكل تطبيق. تبديل محرّك الخريطة لا يلمس منطقاً - الخريطة خارج BlocBuilder الورقة ولها BlocSelector خاص: نبضة موقع كل 25م لا تعيد بناء الشاشة - مهلة بحث محليّة 90ث + استطلاع كل 5ث: الخادم قد لا يُطلق expired/no_drivers أبداً (ثغرة R1)، وانتظار حدث قد لا يصل = شاشة بحث أبدية - offeredDrivers == 0 جواب نهائي فوري بلا انتظار المهلة - الأجرة لا تُعرض إلا إن كانت صالحة: /tariff/quote يرجّع 200 بقيم null صامتة - موقع السائق بمسارين عمداً: REST لمطابقة Redis والسوكت لخريطة الراكب flutter analyze نظيف · الراكب 70 ملف/5,294 سطر · السائق 67 ملف/4,771 سطر. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 5
parent
c52338f3bb
commit
1156299d09
@@ -1,58 +0,0 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||
|
||||
import '../../../core/design/tokens.dart';
|
||||
import '../../../core/design/tripz_colors.dart';
|
||||
import '../../../core/l10n/l10n.dart';
|
||||
import '../../../core/ui/tripz_button.dart';
|
||||
import '../../../core/ui/tripz_card.dart';
|
||||
import '../../../core/ui/tripz_scaffold.dart';
|
||||
import '../../../core/session/session_cubit.dart';
|
||||
import '../../../core/session/session_state.dart';
|
||||
|
||||
/// هيكل مؤقّت — تحلّ محلّه شاشة الخريطة وطلب الرحلة في م4 (docs/37).
|
||||
/// الغرض الآن: إثبات أن سلسلة الدخول والجلسة والتوجيه تعمل طرفاً لطرف.
|
||||
class HomePage extends StatelessWidget {
|
||||
const HomePage({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return BlocBuilder<SessionCubit, SessionState>(
|
||||
builder: (context, session) {
|
||||
final user = session.user;
|
||||
return TripzScaffold(
|
||||
title: context.l10n.appTitle,
|
||||
child: ListView(
|
||||
children: [
|
||||
TripzCard(
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Text(
|
||||
user?.name ?? '',
|
||||
style: context.texts.titleMedium,
|
||||
),
|
||||
const SizedBox(height: Space.xxs),
|
||||
Text(
|
||||
user?.phone ?? '',
|
||||
textDirection: TextDirection.ltr,
|
||||
style: context.texts.bodySmall?.copyWith(
|
||||
color: context.colors.onSurfaceVariant,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
const SizedBox(height: Space.lg),
|
||||
TripzButton.secondary(
|
||||
label: context.l10n.actionCancel,
|
||||
expanded: true,
|
||||
onPressed: context.read<SessionCubit>().logout,
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
},
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,372 @@
|
||||
import 'dart:async';
|
||||
|
||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||
|
||||
import '../../../core/api/api_exception.dart';
|
||||
import '../../../core/config.dart';
|
||||
import '../../../core/location/location_service.dart';
|
||||
import '../../../core/realtime/realtime_service.dart';
|
||||
import '../data/maps_repository.dart';
|
||||
import '../data/models/geo_point.dart';
|
||||
import '../data/models/place.dart';
|
||||
import '../data/models/ride_type.dart';
|
||||
import '../data/models/trip.dart';
|
||||
import '../data/trip_repository.dart';
|
||||
import 'ride_state.dart';
|
||||
|
||||
/// شاشة الراكب كاملة: التخطيط ← التسعيرة ← الطلب ← البحث ← الرحلة الجارية.
|
||||
///
|
||||
/// لا حساب أجرة ولا قرار مطابقة هنا — الخادم مصدر الحقيقة (docs/23 §0.2).
|
||||
/// دور الكيوبت جمع المدخلات وعرض ما يُعطى.
|
||||
class RideCubit extends Cubit<RideState> {
|
||||
RideCubit({
|
||||
required TripRepository trips,
|
||||
required MapsRepository maps,
|
||||
required LocationService location,
|
||||
required RealtimeService realtime,
|
||||
}) : _trips = trips,
|
||||
_maps = maps,
|
||||
_location = location,
|
||||
_realtime = realtime,
|
||||
super(const RideState());
|
||||
|
||||
final TripRepository _trips;
|
||||
final MapsRepository _maps;
|
||||
final LocationService _location;
|
||||
final RealtimeService _realtime;
|
||||
|
||||
StreamSubscription<RealtimeEvent>? _events;
|
||||
Timer? _searchTimeout;
|
||||
Timer? _searchPoll;
|
||||
Timer? _debounce;
|
||||
|
||||
@override
|
||||
Future<void> close() {
|
||||
_events?.cancel();
|
||||
_searchTimeout?.cancel();
|
||||
_searchPoll?.cancel();
|
||||
_debounce?.cancel();
|
||||
return super.close();
|
||||
}
|
||||
|
||||
// ── الإقلاع ────────────────────────────────────────────────────────────
|
||||
|
||||
Future<void> init() async {
|
||||
_events = _realtime.events.listen(_onRealtime);
|
||||
await _realtime.connect();
|
||||
|
||||
// الكاميرا تتوسّط الموقع **فوراً**، ولا تنتظر العنوان — انتظارها كان
|
||||
// باگ سيرو المُصلَح 2026-07-20.
|
||||
unawaited(_locateMe());
|
||||
unawaited(_loadRideTypes());
|
||||
unawaited(_resumeLiveTrip());
|
||||
}
|
||||
|
||||
Future<void> _locateMe() async {
|
||||
final pos = await _location.current();
|
||||
if (pos == null || isClosed) return;
|
||||
final point = GeoPoint(pos.lat, pos.lng);
|
||||
emit(state.copyWith(origin: point, cameraTarget: point));
|
||||
|
||||
final place = await _maps.reverse(point);
|
||||
if (isClosed || place == null) return;
|
||||
emit(state.copyWith(originLabel: place.label));
|
||||
}
|
||||
|
||||
Future<void> _loadRideTypes() async {
|
||||
try {
|
||||
final types = await _trips.rideTypes();
|
||||
if (isClosed || types.isEmpty) return;
|
||||
emit(state.copyWith(
|
||||
rideTypes: types,
|
||||
selectedRideType: state.selectedRideType ?? types.first,
|
||||
));
|
||||
} on ApiException {
|
||||
// قائمة الأنواع ليست حاجزاً للخريطة — تُعاد المحاولة عند التأكيد.
|
||||
}
|
||||
}
|
||||
|
||||
/// رحلة جارية من جلسة سابقة (التطبيق أُغلق أثناءها) تُستأنف بلا تدخّل.
|
||||
Future<void> _resumeLiveTrip() async {
|
||||
try {
|
||||
final live = (await _trips.mine()).where((t) => t.status.isLive);
|
||||
if (isClosed || live.isEmpty) return;
|
||||
_attachTrip(live.first);
|
||||
} on ApiException {
|
||||
// لا شيء يُستأنف — تجربة عادية لا خطأ يُعرض.
|
||||
}
|
||||
}
|
||||
|
||||
// ── التخطيط ────────────────────────────────────────────────────────────
|
||||
|
||||
void openPlanner() => emit(state.copyWith(phase: RidePhase.planning));
|
||||
|
||||
void collapsePlanner() => emit(state.copyWith(phase: RidePhase.idle));
|
||||
|
||||
void selectRideType(RideType type) {
|
||||
emit(state.copyWith(selectedRideType: type));
|
||||
unawaited(_priceIt());
|
||||
}
|
||||
|
||||
/// بحث نصّي عن مكان، بمهلة ارتداد: كل ضغطة زر لا تُطلق نداءً.
|
||||
void searchPlaces(String query) {
|
||||
_debounce?.cancel();
|
||||
if (query.trim().length < 2) {
|
||||
emit(state.copyWith(searchResults: const [], searching: false));
|
||||
return;
|
||||
}
|
||||
emit(state.copyWith(searching: true));
|
||||
_debounce = Timer(const Duration(milliseconds: 350), () async {
|
||||
try {
|
||||
final results = await _maps.search(query, near: state.origin);
|
||||
if (!isClosed) {
|
||||
emit(state.copyWith(searchResults: results, searching: false));
|
||||
}
|
||||
} on ApiException {
|
||||
if (!isClosed) {
|
||||
emit(state.copyWith(searchResults: const [], searching: false));
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Future<void> pickPlace(Place place, PickTarget target) async {
|
||||
emit(state.copyWith(
|
||||
origin: target == PickTarget.origin ? place.point : null,
|
||||
originLabel: target == PickTarget.origin ? place.label : null,
|
||||
destination: target == PickTarget.destination ? place.point : null,
|
||||
destinationLabel:
|
||||
target == PickTarget.destination ? place.label : null,
|
||||
searchResults: const [],
|
||||
cameraTarget: place.point,
|
||||
));
|
||||
await _routeAndPrice();
|
||||
}
|
||||
|
||||
/// اختيار من الخريطة: المستخدم يحرّك **الخريطة** لا الدبّوس (docs/39 §3).
|
||||
void startMapPick(PickTarget target) => emit(state.copyWith(
|
||||
phase: RidePhase.pickingOnMap,
|
||||
pickTarget: target,
|
||||
));
|
||||
|
||||
Future<void> confirmMapPick(GeoPoint point) async {
|
||||
final isOrigin = state.pickTarget == PickTarget.origin;
|
||||
emit(state.copyWith(
|
||||
phase: RidePhase.planning,
|
||||
origin: isOrigin ? point : null,
|
||||
destination: isOrigin ? null : point,
|
||||
));
|
||||
|
||||
final place = await _maps.reverse(point);
|
||||
if (isClosed) return;
|
||||
emit(state.copyWith(
|
||||
originLabel: isOrigin ? (place?.label ?? '') : null,
|
||||
destinationLabel: isOrigin ? null : (place?.label ?? ''),
|
||||
));
|
||||
await _routeAndPrice();
|
||||
}
|
||||
|
||||
void addStop(GeoPoint stop) =>
|
||||
emit(state.copyWith(stops: [...state.stops, stop]));
|
||||
|
||||
void removeStop(int index) {
|
||||
final next = [...state.stops]..removeAt(index);
|
||||
emit(state.copyWith(stops: next));
|
||||
}
|
||||
|
||||
void clearDestination() => emit(state.copyWith(
|
||||
clearDestination: true,
|
||||
clearRoute: true,
|
||||
phase: RidePhase.planning,
|
||||
));
|
||||
|
||||
// ── المسار والتسعيرة ───────────────────────────────────────────────────
|
||||
|
||||
Future<void> _routeAndPrice() async {
|
||||
final from = state.origin;
|
||||
final to = state.destination;
|
||||
if (from == null || to == null) return;
|
||||
|
||||
emit(state.copyWith(busy: true, error: RideError.none));
|
||||
try {
|
||||
final route = await _maps.route(from, to);
|
||||
if (isClosed) return;
|
||||
emit(state.copyWith(route: route, phase: RidePhase.confirming));
|
||||
await _priceIt();
|
||||
} on ApiException {
|
||||
if (!isClosed) {
|
||||
emit(state.copyWith(busy: false, error: RideError.routeFailed));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// التعرفة تحتاج مسافة ومدة محسوبتين — لا إحداثيات (docs/38 §7).
|
||||
Future<void> _priceIt() async {
|
||||
final route = state.route;
|
||||
final type = state.selectedRideType;
|
||||
if (route == null || type == null) return;
|
||||
|
||||
emit(state.copyWith(busy: true));
|
||||
try {
|
||||
final quote = await _trips.quote(
|
||||
city: '',
|
||||
serviceClass: type.code,
|
||||
distanceKm: route.distanceKm,
|
||||
durationMin: route.durationMin,
|
||||
);
|
||||
if (isClosed) return;
|
||||
// 200 بقيم `null` ليس نجاحاً — لا يُعرض رقم غير صالح للمستخدم.
|
||||
emit(state.copyWith(
|
||||
quote: quote,
|
||||
busy: false,
|
||||
error: quote.isUsable ? RideError.none : RideError.quoteFailed,
|
||||
));
|
||||
} on ApiException {
|
||||
if (!isClosed) {
|
||||
emit(state.copyWith(busy: false, error: RideError.quoteFailed));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// ── الطلب والبحث ───────────────────────────────────────────────────────
|
||||
|
||||
Future<void> requestTrip() async {
|
||||
final from = state.origin;
|
||||
final to = state.destination;
|
||||
final type = state.selectedRideType;
|
||||
if (from == null || to == null || type == null) return;
|
||||
|
||||
emit(state.copyWith(busy: true, error: RideError.none));
|
||||
try {
|
||||
final res = await _trips.request(
|
||||
origin: from,
|
||||
destination: to,
|
||||
serviceClass: type.code,
|
||||
stops: state.stops,
|
||||
);
|
||||
if (isClosed) return;
|
||||
|
||||
// صفر سائقين = جواب نهائي فوري، لا داعي لانتظار مهلة كاملة.
|
||||
if (res.offeredDrivers == 0) {
|
||||
emit(state.copyWith(
|
||||
busy: false,
|
||||
error: RideError.noDrivers,
|
||||
phase: RidePhase.confirming,
|
||||
));
|
||||
unawaited(_trips.cancel(res.trip.id));
|
||||
return;
|
||||
}
|
||||
|
||||
_attachTrip(res.trip);
|
||||
_startSearchGuards(res.trip.id);
|
||||
} on ApiException {
|
||||
if (!isClosed) {
|
||||
emit(state.copyWith(busy: false, error: RideError.requestFailed));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// حارسان أثناء البحث:
|
||||
/// 1. **مهلة محليّة** — الخادم قد لا يُطلق `expired`/`no_drivers` أبداً
|
||||
/// (ثغرة R1، docs/38 §4)، فبلا هذه المهلة تدور الشاشة إلى الأبد.
|
||||
/// 2. **استطلاع دوري** — يلتقط القبول لو ضاع حدث `trip:update`.
|
||||
void _startSearchGuards(String tripId) {
|
||||
_searchTimeout?.cancel();
|
||||
_searchPoll?.cancel();
|
||||
|
||||
_searchTimeout = Timer(AppConfig.searchingTimeout, () async {
|
||||
if (isClosed || state.phase != RidePhase.searching) return;
|
||||
await cancelTrip();
|
||||
if (!isClosed) emit(state.copyWith(error: RideError.noDrivers));
|
||||
});
|
||||
|
||||
_searchPoll = Timer.periodic(const Duration(seconds: 5), (_) async {
|
||||
if (isClosed || state.phase != RidePhase.searching) return;
|
||||
try {
|
||||
_attachTrip(await _trips.get(tripId));
|
||||
} on ApiException {
|
||||
// الاستطلاع شبكة أمان لا مصدر حقيقة — فشلُه لا يُعرض.
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Future<void> cancelTrip() async {
|
||||
final trip = state.trip;
|
||||
if (trip == null) return;
|
||||
_stopSearchGuards();
|
||||
try {
|
||||
await _trips.cancel(trip.id);
|
||||
} on ApiException {
|
||||
// حتى لو فشل الإلغاء على الخادم، المستخدم خرج من الشاشة — وحالة
|
||||
// الرحلة تُصحَّح عند الاستئناف التالي.
|
||||
}
|
||||
if (!isClosed) _resetToIdle();
|
||||
}
|
||||
|
||||
void _stopSearchGuards() {
|
||||
_searchTimeout?.cancel();
|
||||
_searchPoll?.cancel();
|
||||
_searchTimeout = null;
|
||||
_searchPoll = null;
|
||||
}
|
||||
|
||||
void _resetToIdle() {
|
||||
emit(state.copyWith(
|
||||
phase: RidePhase.idle,
|
||||
clearTrip: true,
|
||||
clearRoute: true,
|
||||
clearDestination: true,
|
||||
busy: false,
|
||||
stops: const [],
|
||||
));
|
||||
}
|
||||
|
||||
// ── الواقع اللحظي ──────────────────────────────────────────────────────
|
||||
|
||||
void _attachTrip(Trip trip) {
|
||||
// الانضمام قبل أي انتقال حالة، وإلا فاتت الأحداث (docs/38 §9).
|
||||
_realtime.joinTrip(trip.id);
|
||||
|
||||
if (trip.status.isOver) {
|
||||
_stopSearchGuards();
|
||||
emit(state.copyWith(
|
||||
trip: trip,
|
||||
busy: false,
|
||||
phase: RidePhase.idle,
|
||||
error: trip.status == TripStatus.noDrivers ||
|
||||
trip.status == TripStatus.expired
|
||||
? RideError.noDrivers
|
||||
: RideError.none,
|
||||
));
|
||||
return;
|
||||
}
|
||||
|
||||
if (trip.status != TripStatus.searching) _stopSearchGuards();
|
||||
|
||||
emit(state.copyWith(
|
||||
trip: trip,
|
||||
busy: false,
|
||||
phase: trip.status == TripStatus.searching
|
||||
? RidePhase.searching
|
||||
: RidePhase.active,
|
||||
));
|
||||
}
|
||||
|
||||
void _onRealtime(RealtimeEvent event) {
|
||||
switch (event.name) {
|
||||
case RealtimeEvent.tripUpdate:
|
||||
final id = event.data['id'] ?? event.data['tripId'];
|
||||
if (id != null && id != state.trip?.id) return;
|
||||
_attachTrip(Trip.fromJson(event.data));
|
||||
|
||||
case RealtimeEvent.driverLocation:
|
||||
final lat = event.data['lat'];
|
||||
final lng = event.data['lng'];
|
||||
if (lat is num && lng is num) {
|
||||
emit(state.copyWith(
|
||||
driverLocation: GeoPoint(lat.toDouble(), lng.toDouble()),
|
||||
));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,165 @@
|
||||
import 'package:equatable/equatable.dart';
|
||||
|
||||
import '../data/models/fare_quote.dart';
|
||||
import '../data/models/geo_point.dart';
|
||||
import '../data/models/place.dart';
|
||||
import '../data/models/ride_type.dart';
|
||||
import '../data/models/route_info.dart';
|
||||
import '../data/models/trip.dart';
|
||||
|
||||
/// مراحل شاشة الراكب. المرحلة تحدّد ما يُعرض على الخريطة وما في الورقة
|
||||
/// السفلية — «الشاشة مهمة واحدة» (docs/26 §8.1).
|
||||
enum RidePhase {
|
||||
/// الخريطة والبطاقة المطوية «إلى أين؟».
|
||||
idle,
|
||||
|
||||
/// المخطّط الموسّع: المصدر والوجهة والمحطات.
|
||||
planning,
|
||||
|
||||
/// المستخدم يحرّك الخريطة والدبّوس ثابت في المنتصف.
|
||||
pickingOnMap,
|
||||
|
||||
/// المسار والتسعيرة معروضان بانتظار التأكيد.
|
||||
confirming,
|
||||
|
||||
/// البحث عن سائق.
|
||||
searching,
|
||||
|
||||
/// رحلة جارية.
|
||||
active,
|
||||
}
|
||||
|
||||
/// أيّ حقلٍ يلتقط اختيار الخريطة.
|
||||
enum PickTarget { origin, destination }
|
||||
|
||||
enum RideError { none, noDrivers, quoteFailed, routeFailed, requestFailed }
|
||||
|
||||
class RideState extends Equatable {
|
||||
const RideState({
|
||||
this.phase = RidePhase.idle,
|
||||
this.origin,
|
||||
this.destination,
|
||||
this.originLabel = '',
|
||||
this.destinationLabel = '',
|
||||
this.stops = const [],
|
||||
this.rideTypes = const [],
|
||||
this.selectedRideType,
|
||||
this.route,
|
||||
this.quote,
|
||||
this.trip,
|
||||
this.driverLocation,
|
||||
this.searchResults = const [],
|
||||
this.searching = false,
|
||||
this.busy = false,
|
||||
this.error = RideError.none,
|
||||
this.pickTarget = PickTarget.destination,
|
||||
this.cameraTarget,
|
||||
});
|
||||
|
||||
final RidePhase phase;
|
||||
|
||||
final GeoPoint? origin;
|
||||
final GeoPoint? destination;
|
||||
final String originLabel;
|
||||
final String destinationLabel;
|
||||
final List<GeoPoint> stops;
|
||||
|
||||
final List<RideType> rideTypes;
|
||||
final RideType? selectedRideType;
|
||||
|
||||
final RouteInfo? route;
|
||||
final FareQuote? quote;
|
||||
|
||||
final Trip? trip;
|
||||
|
||||
/// موقع السائق الحيّ من `driver:location`.
|
||||
final GeoPoint? driverLocation;
|
||||
|
||||
final List<Place> searchResults;
|
||||
|
||||
/// بحث نصّي جارٍ — منفصل عن [busy] كي لا يقفل مؤشّرُ البحثِ الشاشةَ كلها.
|
||||
final bool searching;
|
||||
final bool busy;
|
||||
|
||||
final RideError error;
|
||||
final PickTarget pickTarget;
|
||||
|
||||
/// وجهة الكاميرا حين يقودها المنطق لا المستخدم.
|
||||
final GeoPoint? cameraTarget;
|
||||
|
||||
bool get canConfirm =>
|
||||
origin != null &&
|
||||
destination != null &&
|
||||
selectedRideType != null &&
|
||||
quote?.isUsable == true;
|
||||
|
||||
RideState copyWith({
|
||||
RidePhase? phase,
|
||||
GeoPoint? origin,
|
||||
GeoPoint? destination,
|
||||
String? originLabel,
|
||||
String? destinationLabel,
|
||||
List<GeoPoint>? stops,
|
||||
List<RideType>? rideTypes,
|
||||
RideType? selectedRideType,
|
||||
RouteInfo? route,
|
||||
FareQuote? quote,
|
||||
Trip? trip,
|
||||
GeoPoint? driverLocation,
|
||||
List<Place>? searchResults,
|
||||
bool? searching,
|
||||
bool? busy,
|
||||
RideError? error,
|
||||
PickTarget? pickTarget,
|
||||
GeoPoint? cameraTarget,
|
||||
bool clearDestination = false,
|
||||
bool clearRoute = false,
|
||||
bool clearTrip = false,
|
||||
bool clearCamera = false,
|
||||
}) {
|
||||
return RideState(
|
||||
phase: phase ?? this.phase,
|
||||
origin: origin ?? this.origin,
|
||||
destination: clearDestination ? null : (destination ?? this.destination),
|
||||
originLabel: originLabel ?? this.originLabel,
|
||||
destinationLabel: clearDestination
|
||||
? ''
|
||||
: (destinationLabel ?? this.destinationLabel),
|
||||
stops: stops ?? this.stops,
|
||||
rideTypes: rideTypes ?? this.rideTypes,
|
||||
selectedRideType: selectedRideType ?? this.selectedRideType,
|
||||
route: clearRoute ? null : (route ?? this.route),
|
||||
quote: clearRoute ? null : (quote ?? this.quote),
|
||||
trip: clearTrip ? null : (trip ?? this.trip),
|
||||
driverLocation: driverLocation ?? this.driverLocation,
|
||||
searchResults: searchResults ?? this.searchResults,
|
||||
searching: searching ?? this.searching,
|
||||
busy: busy ?? this.busy,
|
||||
error: error ?? this.error,
|
||||
pickTarget: pickTarget ?? this.pickTarget,
|
||||
cameraTarget: clearCamera ? null : (cameraTarget ?? this.cameraTarget),
|
||||
);
|
||||
}
|
||||
|
||||
@override
|
||||
List<Object?> get props => [
|
||||
phase,
|
||||
origin,
|
||||
destination,
|
||||
originLabel,
|
||||
destinationLabel,
|
||||
stops,
|
||||
rideTypes,
|
||||
selectedRideType,
|
||||
route,
|
||||
quote,
|
||||
trip,
|
||||
driverLocation,
|
||||
searchResults,
|
||||
searching,
|
||||
busy,
|
||||
error,
|
||||
pickTarget,
|
||||
cameraTarget,
|
||||
];
|
||||
}
|
||||
@@ -0,0 +1,52 @@
|
||||
import '../../../core/api/antlaq_api.dart';
|
||||
import 'models/geo_point.dart';
|
||||
import 'models/place.dart';
|
||||
import 'models/route_info.dart';
|
||||
|
||||
/// كل الخرائط من map-saas مباشرة (قرار 2026-07-20). نقاط `/maps/*` في باك إند
|
||||
/// تريبز **لا تُستعمل** — إحداها (`geocode`) معطوبة على المنشور أصلاً.
|
||||
class MapsRepository {
|
||||
MapsRepository(this._api);
|
||||
|
||||
final AntlaqApi _api;
|
||||
|
||||
Future<List<Place>> search(String query, {GeoPoint? near}) async {
|
||||
if (query.trim().isEmpty) return const [];
|
||||
final res = await _api.get<List<dynamic>>(
|
||||
'/geocoding/search',
|
||||
query: {
|
||||
'q': query.trim(),
|
||||
if (near != null) 'lat': near.lat,
|
||||
if (near != null) 'lng': near.lng,
|
||||
},
|
||||
);
|
||||
return res
|
||||
.whereType<Map<String, dynamic>>()
|
||||
.map(Place.fromJson)
|
||||
.toList(growable: false);
|
||||
}
|
||||
|
||||
/// يرجّع **مصفوفة** مرتّبة بالأقرب — الأول هو المطلوب. تفكيكها ككائن مفرد
|
||||
/// كان باگ سيرو الذي أُصلح 2026-07-20.
|
||||
Future<Place?> reverse(GeoPoint point) async {
|
||||
final res = await _api.get<List<dynamic>>(
|
||||
'/geocoding/reverse',
|
||||
query: {'lat': point.lat, 'lng': point.lng},
|
||||
);
|
||||
final first = res.whereType<Map<String, dynamic>>().firstOrNull;
|
||||
return first == null ? null : Place.fromJson(first);
|
||||
}
|
||||
|
||||
Future<RouteInfo> route(GeoPoint from, GeoPoint to) async {
|
||||
final res = await _api.get<Map<String, dynamic>>(
|
||||
'/maps/route',
|
||||
query: {
|
||||
'fromLat': from.lat,
|
||||
'fromLng': from.lng,
|
||||
'toLat': to.lat,
|
||||
'toLng': to.lng,
|
||||
},
|
||||
);
|
||||
return RouteInfo.fromJson(res);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
import 'package:equatable/equatable.dart';
|
||||
|
||||
/// تسعيرة مسبقة من `POST /tariff/quote`.
|
||||
///
|
||||
/// ⚠️ مصيدتان مثبتتان (docs/38 §7):
|
||||
/// 1. هذه النقطة **camelCase وحدها** بخلاف كل الـAPI.
|
||||
/// 2. بالمعاملات الخطأ ترجّع **200 بقيم `null` صامتة** لا خطأً — لذلك
|
||||
/// [isUsable] شرطٌ قبل عرض أي رقم للمستخدم.
|
||||
class FareQuote extends Equatable {
|
||||
const FareQuote({
|
||||
required this.total,
|
||||
required this.currency,
|
||||
this.subtotal,
|
||||
this.surgeMultiplier = 1,
|
||||
this.window = '',
|
||||
});
|
||||
|
||||
final double? total;
|
||||
final String currency;
|
||||
final double? subtotal;
|
||||
final double surgeMultiplier;
|
||||
final String window;
|
||||
|
||||
factory FareQuote.fromJson(Map<String, dynamic> json) {
|
||||
final quote = (json['quote'] as Map<String, dynamic>?) ?? const {};
|
||||
return FareQuote(
|
||||
total: (quote['total'] as num?)?.toDouble(),
|
||||
currency: quote['currency'] as String? ?? '',
|
||||
subtotal: (quote['subtotal'] as num?)?.toDouble(),
|
||||
surgeMultiplier: (quote['surgeMultiplier'] as num?)?.toDouble() ?? 1,
|
||||
window: quote['window'] as String? ?? '',
|
||||
);
|
||||
}
|
||||
|
||||
bool get isUsable => total != null && total! > 0;
|
||||
|
||||
/// تسعير مرتفع — يُعرض للمستخدم صراحةً قبل التأكيد لا بعده.
|
||||
bool get hasSurge => surgeMultiplier > 1;
|
||||
|
||||
@override
|
||||
List<Object?> get props => [total, currency, subtotal, surgeMultiplier];
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
import 'package:equatable/equatable.dart';
|
||||
|
||||
/// إحداثية في طبقة النطاق — **مستقلة عن حزمة الخريطة** عمداً.
|
||||
///
|
||||
/// الكيوبت والمستودع لا يعرفان `intaleq_maps`؛ التحويل يقع في الواجهة وحدها.
|
||||
/// تغيير محرّك الخريطة لاحقاً لا يلمس منطقاً.
|
||||
class GeoPoint extends Equatable {
|
||||
const GeoPoint(this.lat, this.lng);
|
||||
|
||||
final double lat;
|
||||
final double lng;
|
||||
|
||||
factory GeoPoint.fromJson(Map<String, dynamic> json) => GeoPoint(
|
||||
(json['lat'] as num).toDouble(),
|
||||
(json['lng'] as num).toDouble(),
|
||||
);
|
||||
|
||||
Map<String, dynamic> toJson() => {'lat': lat, 'lng': lng};
|
||||
|
||||
@override
|
||||
List<Object?> get props => [lat, lng];
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
import 'package:equatable/equatable.dart';
|
||||
|
||||
import 'geo_point.dart';
|
||||
|
||||
/// مكان من map-saas. حقول الاسم `name`/`name_ar`/`address` — **لا
|
||||
/// `formattedAddress`** (عقد مثبت بـcurl، راجع قرار الخرائط 2026-07-20).
|
||||
class Place extends Equatable {
|
||||
const Place({
|
||||
required this.id,
|
||||
required this.name,
|
||||
required this.point,
|
||||
this.address = '',
|
||||
this.category = '',
|
||||
});
|
||||
|
||||
final String id;
|
||||
final String name;
|
||||
final GeoPoint point;
|
||||
final String address;
|
||||
final String category;
|
||||
|
||||
factory Place.fromJson(Map<String, dynamic> json) {
|
||||
return Place(
|
||||
id: json['id']?.toString() ?? '',
|
||||
// العربي أولاً — الواجهة عربية افتراضاً، والإنجليزي احتياط.
|
||||
name: (json['name_ar'] as String?)?.trim().isNotEmpty == true
|
||||
? json['name_ar'] as String
|
||||
: (json['name'] as String? ?? ''),
|
||||
address: json['address'] as String? ?? '',
|
||||
category: json['category'] as String? ?? '',
|
||||
point: GeoPoint(
|
||||
(json['latitude'] as num).toDouble(),
|
||||
(json['longitude'] as num).toDouble(),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
/// ما يُعرض في حقل العنوان: الاسم، وإن غاب فالعنوان.
|
||||
String get label => name.isNotEmpty ? name : address;
|
||||
|
||||
@override
|
||||
List<Object?> get props => [id, name, point, address];
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
import 'package:equatable/equatable.dart';
|
||||
|
||||
/// نوع الرحلة كما يرجّعه `GET /ride-types` (شكل مُتحقَّق حيّاً، docs/38 §7).
|
||||
/// **شاشة الاختيار تُبنى من هنا** — لا قائمة مكتوبة في التطبيق.
|
||||
class RideType extends Equatable {
|
||||
const RideType({
|
||||
required this.id,
|
||||
required this.code,
|
||||
required this.nameAr,
|
||||
required this.nameEn,
|
||||
required this.vehicleKind,
|
||||
required this.womenOnly,
|
||||
required this.roundTripSupported,
|
||||
required this.sort,
|
||||
this.icon,
|
||||
});
|
||||
|
||||
final String id;
|
||||
final String code;
|
||||
final String nameAr;
|
||||
final String nameEn;
|
||||
final String vehicleKind;
|
||||
final bool womenOnly;
|
||||
final bool roundTripSupported;
|
||||
final int sort;
|
||||
final String? icon;
|
||||
|
||||
factory RideType.fromJson(Map<String, dynamic> json) {
|
||||
return RideType(
|
||||
id: json['id'] as String,
|
||||
code: json['code'] as String,
|
||||
nameAr: json['name_ar'] as String? ?? '',
|
||||
nameEn: json['name_en'] as String? ?? '',
|
||||
vehicleKind: json['vehicle_kind'] as String? ?? 'car',
|
||||
womenOnly: json['women_only'] as bool? ?? false,
|
||||
roundTripSupported: json['round_trip_supported'] as bool? ?? false,
|
||||
sort: (json['sort'] as num?)?.toInt() ?? 0,
|
||||
icon: json['icon'] as String?,
|
||||
);
|
||||
}
|
||||
|
||||
String nameFor(String languageCode) =>
|
||||
languageCode == 'ar' ? nameAr : (nameEn.isEmpty ? nameAr : nameEn);
|
||||
|
||||
@override
|
||||
List<Object?> get props => [id, code, sort];
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
import 'package:equatable/equatable.dart';
|
||||
|
||||
/// مسار من map-saas. المسار نفسه **encoded polyline** في حقل `points`،
|
||||
/// ويُفكّ في الواجهة لا هنا (طبقة النطاق لا تعرف حزمة الخريطة).
|
||||
class RouteInfo extends Equatable {
|
||||
const RouteInfo({
|
||||
required this.distanceMeters,
|
||||
required this.durationSeconds,
|
||||
required this.encodedPoints,
|
||||
this.name = '',
|
||||
});
|
||||
|
||||
final double distanceMeters;
|
||||
final int durationSeconds;
|
||||
final String encodedPoints;
|
||||
final String name;
|
||||
|
||||
factory RouteInfo.fromJson(Map<String, dynamic> json) {
|
||||
return RouteInfo(
|
||||
distanceMeters: (json['distance'] as num?)?.toDouble() ?? 0,
|
||||
durationSeconds: (json['duration'] as num?)?.round() ?? 0,
|
||||
encodedPoints: json['points'] as String? ?? '',
|
||||
name: json['routeName'] as String? ?? '',
|
||||
);
|
||||
}
|
||||
|
||||
/// التعرفة تُطلب بالكيلومترات والدقائق (docs/38 §7).
|
||||
double get distanceKm => distanceMeters / 1000;
|
||||
double get durationMin => durationSeconds / 60;
|
||||
|
||||
@override
|
||||
List<Object?> get props => [distanceMeters, durationSeconds, encodedPoints];
|
||||
}
|
||||
@@ -0,0 +1,125 @@
|
||||
import 'package:equatable/equatable.dart';
|
||||
|
||||
import 'geo_point.dart';
|
||||
|
||||
/// حالات الرحلة كما يعرّفها الخادم (docs/38 §4).
|
||||
enum TripStatus {
|
||||
searching,
|
||||
assigned,
|
||||
driverArriving,
|
||||
driverArrived,
|
||||
inProgress,
|
||||
completed,
|
||||
paid,
|
||||
cancelled,
|
||||
expired,
|
||||
noDrivers,
|
||||
unknown;
|
||||
|
||||
static TripStatus parse(String? raw) => switch (raw) {
|
||||
'searching' => TripStatus.searching,
|
||||
'assigned' => TripStatus.assigned,
|
||||
'driver_arriving' => TripStatus.driverArriving,
|
||||
'driver_arrived' => TripStatus.driverArrived,
|
||||
'in_progress' => TripStatus.inProgress,
|
||||
'completed' => TripStatus.completed,
|
||||
'paid' => TripStatus.paid,
|
||||
'cancelled' => TripStatus.cancelled,
|
||||
'expired' => TripStatus.expired,
|
||||
'no_drivers' => TripStatus.noDrivers,
|
||||
_ => TripStatus.unknown,
|
||||
};
|
||||
|
||||
String get wire => switch (this) {
|
||||
TripStatus.driverArriving => 'driver_arriving',
|
||||
TripStatus.driverArrived => 'driver_arrived',
|
||||
TripStatus.inProgress => 'in_progress',
|
||||
TripStatus.noDrivers => 'no_drivers',
|
||||
_ => name,
|
||||
};
|
||||
|
||||
/// رحلة جارية تُستأنف عند فتح التطبيق.
|
||||
bool get isLive => const {
|
||||
TripStatus.searching,
|
||||
TripStatus.assigned,
|
||||
TripStatus.driverArriving,
|
||||
TripStatus.driverArrived,
|
||||
TripStatus.inProgress,
|
||||
}.contains(this);
|
||||
|
||||
bool get isOver => const {
|
||||
TripStatus.completed,
|
||||
TripStatus.paid,
|
||||
TripStatus.cancelled,
|
||||
TripStatus.expired,
|
||||
TripStatus.noDrivers,
|
||||
}.contains(this);
|
||||
}
|
||||
|
||||
class Trip extends Equatable {
|
||||
const Trip({
|
||||
required this.id,
|
||||
required this.status,
|
||||
this.origin,
|
||||
this.destination,
|
||||
this.quotedFare,
|
||||
this.priceForPassenger,
|
||||
this.priceForDriver,
|
||||
this.currency = '',
|
||||
this.driverName,
|
||||
this.driverPhone,
|
||||
this.vehiclePlate,
|
||||
this.vehicleModel,
|
||||
this.driverRating,
|
||||
});
|
||||
|
||||
final String id;
|
||||
final TripStatus status;
|
||||
final GeoPoint? origin;
|
||||
final GeoPoint? destination;
|
||||
|
||||
/// أجرة مقفولة عند الطلب.
|
||||
final String? quotedFare;
|
||||
|
||||
/// **حقلان منفصلان** لا حقل واحد — الفرق هو العمولة (docs/38 §4).
|
||||
final String? priceForPassenger;
|
||||
final String? priceForDriver;
|
||||
|
||||
final String currency;
|
||||
final String? driverName;
|
||||
final String? driverPhone;
|
||||
final String? vehiclePlate;
|
||||
final String? vehicleModel;
|
||||
final String? driverRating;
|
||||
|
||||
factory Trip.fromJson(Map<String, dynamic> json) {
|
||||
GeoPoint? point(String key) {
|
||||
final v = json[key];
|
||||
return v is Map<String, dynamic> ? GeoPoint.fromJson(v) : null;
|
||||
}
|
||||
|
||||
final driver = json['driver'] as Map<String, dynamic>?;
|
||||
return Trip(
|
||||
id: json['id'] as String,
|
||||
status: TripStatus.parse(json['status'] as String?),
|
||||
origin: point('origin'),
|
||||
destination: point('destination'),
|
||||
// كل المبالغ نصوص (docs/38 §12.2) — تُحفظ كما وصلت ولا تُحوَّل هنا.
|
||||
quotedFare: json['quoted_fare']?.toString(),
|
||||
priceForPassenger: json['price_for_passenger']?.toString(),
|
||||
priceForDriver: json['price_for_driver']?.toString(),
|
||||
currency: json['currency'] as String? ?? '',
|
||||
driverName: driver?['name'] as String? ?? json['driver_name'] as String?,
|
||||
driverPhone:
|
||||
driver?['phone'] as String? ?? json['driver_phone'] as String?,
|
||||
vehiclePlate:
|
||||
driver?['vehicle_plate'] as String? ?? json['vehicle_plate'] as String?,
|
||||
vehicleModel:
|
||||
driver?['vehicle_model'] as String? ?? json['vehicle_model'] as String?,
|
||||
driverRating: driver?['rating']?.toString(),
|
||||
);
|
||||
}
|
||||
|
||||
@override
|
||||
List<Object?> get props => [id, status, priceForPassenger, driverName];
|
||||
}
|
||||
@@ -0,0 +1,128 @@
|
||||
import '../../../core/api/api_client.dart';
|
||||
import 'models/fare_quote.dart';
|
||||
import 'models/geo_point.dart';
|
||||
import 'models/ride_type.dart';
|
||||
import 'models/trip.dart';
|
||||
|
||||
class TripRepository {
|
||||
TripRepository(this._api);
|
||||
|
||||
final ApiClient _api;
|
||||
|
||||
Future<List<RideType>> rideTypes() async {
|
||||
final res = await _api.get<List<dynamic>>('/ride-types');
|
||||
return res
|
||||
.whereType<Map<String, dynamic>>()
|
||||
.map(RideType.fromJson)
|
||||
.where((t) => true)
|
||||
.toList(growable: false)
|
||||
..sort((a, b) => a.sort.compareTo(b.sort));
|
||||
}
|
||||
|
||||
/// ⚠️ camelCase وحدها في كل الـAPI، وتحتاج **مسافة ومدة محسوبتين مسبقاً**
|
||||
/// من `/maps/route` — إرسال الإحداثيات يرجّع 200 بقيم `null` صامتة
|
||||
/// (docs/38 §7).
|
||||
Future<FareQuote> quote({
|
||||
required String city,
|
||||
required String serviceClass,
|
||||
required double distanceKm,
|
||||
required double durationMin,
|
||||
}) async {
|
||||
final res = await _api.post<Map<String, dynamic>>(
|
||||
'/tariff/quote',
|
||||
body: {
|
||||
'city': city,
|
||||
'serviceClass': serviceClass,
|
||||
'distanceKm': distanceKm,
|
||||
'durationMin': durationMin,
|
||||
},
|
||||
);
|
||||
return FareQuote.fromJson(res);
|
||||
}
|
||||
|
||||
/// يرجّع الرحلة وعدد السائقين الذين عُرضت عليهم — الصفر يعني «لا سائقين
|
||||
/// قريبين» فوراً، بلا انتظار مهلة.
|
||||
Future<({Trip trip, int offeredDrivers})> request({
|
||||
required GeoPoint origin,
|
||||
required GeoPoint destination,
|
||||
required String serviceClass,
|
||||
String paymentMethod = 'wallet',
|
||||
List<GeoPoint> stops = const [],
|
||||
String? couponCode,
|
||||
bool isRoundTrip = false,
|
||||
}) async {
|
||||
final res = await _api.post<Map<String, dynamic>>('/trips', body: {
|
||||
'origin': origin.toJson(),
|
||||
'destination': destination.toJson(),
|
||||
'service_class': serviceClass,
|
||||
'payment_method': paymentMethod,
|
||||
'is_round_trip': isRoundTrip,
|
||||
if (stops.isNotEmpty)
|
||||
'stops': stops.map((s) => s.toJson()).toList(growable: false),
|
||||
'coupon_code': ?couponCode,
|
||||
});
|
||||
return (
|
||||
trip: Trip.fromJson(res['trip'] as Map<String, dynamic>),
|
||||
offeredDrivers: (res['offeredDrivers'] as num?)?.toInt() ?? 0,
|
||||
);
|
||||
}
|
||||
|
||||
Future<Trip> get(String tripId) async {
|
||||
final res = await _api.get<Map<String, dynamic>>('/trips/$tripId');
|
||||
return Trip.fromJson(res);
|
||||
}
|
||||
|
||||
Future<List<Trip>> mine() async {
|
||||
final res = await _api.get<List<dynamic>>('/trips/mine');
|
||||
return res
|
||||
.whereType<Map<String, dynamic>>()
|
||||
.map(Trip.fromJson)
|
||||
.toList(growable: false);
|
||||
}
|
||||
|
||||
Future<void> cancel(String tripId) =>
|
||||
_api.post<Map<String, dynamic>>('/trips/$tripId/cancel');
|
||||
|
||||
// ── طرف السائق ─────────────────────────────────────────────────────────
|
||||
|
||||
Future<List<Trip>> available() async {
|
||||
final res = await _api.get<List<dynamic>>('/trips/available');
|
||||
return res
|
||||
.whereType<Map<String, dynamic>>()
|
||||
.map(Trip.fromJson)
|
||||
.toList(growable: false);
|
||||
}
|
||||
|
||||
Future<void> accept(String tripId) =>
|
||||
_api.post<Map<String, dynamic>>('/trips/$tripId/accept');
|
||||
|
||||
Future<void> setOnline(bool online) => _api.patch<Map<String, dynamic>>(
|
||||
'/drivers/status',
|
||||
body: {'online': online},
|
||||
);
|
||||
|
||||
/// نبضة الموقع إلى Redis — أساس المطابقة. مرشّح المسافة في
|
||||
/// `LocationService` يمنع إغراقها.
|
||||
Future<void> pushLocation(GeoPoint point, {double? heading, double? speed}) =>
|
||||
_api.post<Map<String, dynamic>>('/drivers/location', body: {
|
||||
...point.toJson(),
|
||||
'heading': ?heading,
|
||||
'speed': ?speed,
|
||||
});
|
||||
|
||||
/// الرصيد التشغيلي. للراكب يرجّع 403 `Not a driver` — لا يُنادى إلا من
|
||||
/// تطبيق السائق (docs/38 §5).
|
||||
Future<({String balance, bool blocked})> credit() async {
|
||||
final res = await _api.get<Map<String, dynamic>>('/credit');
|
||||
return (
|
||||
balance: res['balance']?.toString() ?? '0',
|
||||
blocked: res['blocked'] as bool? ?? false,
|
||||
);
|
||||
}
|
||||
|
||||
Future<void> updateStatus(String tripId, TripStatus status) =>
|
||||
_api.patch<Map<String, dynamic>>(
|
||||
'/trips/$tripId/status',
|
||||
body: {'status': status.wire},
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,188 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||
|
||||
import '../../../core/design/tokens.dart';
|
||||
import '../../../core/design/tripz_colors.dart';
|
||||
import '../../../core/di.dart';
|
||||
import '../../../core/l10n/l10n.dart';
|
||||
import '../../../core/ui/tripz_button.dart';
|
||||
import '../cubit/ride_cubit.dart';
|
||||
import '../cubit/ride_state.dart';
|
||||
import '../data/models/geo_point.dart';
|
||||
import 'widgets/active_trip_sheet.dart';
|
||||
import 'widgets/center_pin.dart';
|
||||
import 'widgets/confirm_sheet.dart';
|
||||
import 'widgets/planner_sheet.dart';
|
||||
import 'widgets/ride_map.dart';
|
||||
import 'widgets/searching_sheet.dart';
|
||||
|
||||
/// شاشة الراكب: خريطة ثابتة + ورقة سفلية تتبدّل بالمرحلة (docs/39 §3).
|
||||
///
|
||||
/// الخريطة **لا تُعاد بناؤها** عند تبدّل الورقة: هي خارج الـ`BlocBuilder`
|
||||
/// الذي يبني الورقة، ولها `BlocSelector` خاص بما تحتاجه وحدها. هذا هو الفرق
|
||||
/// بين خريطة سلسة وأخرى تهتزّ عند كل تحديث حالة.
|
||||
class RidePage extends StatefulWidget {
|
||||
const RidePage({super.key});
|
||||
|
||||
@override
|
||||
State<RidePage> createState() => _RidePageState();
|
||||
}
|
||||
|
||||
class _RidePageState extends State<RidePage> {
|
||||
late final RideCubit _cubit = sl<RideCubit>()..init();
|
||||
GeoPoint? _mapCenter;
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
_cubit.close();
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return BlocProvider.value(
|
||||
value: _cubit,
|
||||
child: Scaffold(
|
||||
body: Stack(
|
||||
children: [
|
||||
// ── الخريطة ────────────────────────────────────────────────
|
||||
BlocSelector<RideCubit, RideState, _MapData>(
|
||||
selector: (s) => _MapData(
|
||||
origin: s.origin,
|
||||
destination: s.destination,
|
||||
driver: s.driverLocation,
|
||||
route: s.route,
|
||||
camera: s.cameraTarget,
|
||||
),
|
||||
builder: (context, data) => RideMap(
|
||||
origin: data.origin,
|
||||
destination: data.destination,
|
||||
driver: data.driver,
|
||||
route: data.route,
|
||||
cameraTarget: data.camera,
|
||||
onCameraIdle: (p) => _mapCenter = p,
|
||||
),
|
||||
),
|
||||
|
||||
// ── دبّوس الاختيار ─────────────────────────────────────────
|
||||
BlocSelector<RideCubit, RideState, bool>(
|
||||
selector: (s) => s.phase == RidePhase.pickingOnMap,
|
||||
builder: (context, picking) =>
|
||||
picking ? const CenterPin() : const SizedBox.shrink(),
|
||||
),
|
||||
|
||||
// ── الورقة السفلية ─────────────────────────────────────────
|
||||
Align(
|
||||
alignment: Alignment.bottomCenter,
|
||||
child: BlocBuilder<RideCubit, RideState>(
|
||||
builder: (context, state) => _Sheet(
|
||||
state: state,
|
||||
onConfirmPick: () {
|
||||
final center = _mapCenter;
|
||||
if (center != null) _cubit.confirmMapPick(center);
|
||||
},
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/// ما تحتاجه الخريطة وحدها — تغيّرُ أي شيء آخر في الحالة لا يعيد بناءها.
|
||||
class _MapData {
|
||||
const _MapData({
|
||||
this.origin,
|
||||
this.destination,
|
||||
this.driver,
|
||||
this.route,
|
||||
this.camera,
|
||||
});
|
||||
|
||||
final GeoPoint? origin;
|
||||
final GeoPoint? destination;
|
||||
final GeoPoint? driver;
|
||||
final dynamic route;
|
||||
final GeoPoint? camera;
|
||||
|
||||
@override
|
||||
bool operator ==(Object other) =>
|
||||
other is _MapData &&
|
||||
other.origin == origin &&
|
||||
other.destination == destination &&
|
||||
other.driver == driver &&
|
||||
other.route == route &&
|
||||
other.camera == camera;
|
||||
|
||||
@override
|
||||
int get hashCode => Object.hash(origin, destination, driver, route, camera);
|
||||
}
|
||||
|
||||
class _Sheet extends StatelessWidget {
|
||||
const _Sheet({required this.state, required this.onConfirmPick});
|
||||
|
||||
final RideState state;
|
||||
final VoidCallback onConfirmPick;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final child = switch (state.phase) {
|
||||
RidePhase.idle => const _Collapsed(),
|
||||
RidePhase.planning => PlannerSheet(state: state),
|
||||
RidePhase.pickingOnMap => _PickConfirm(onConfirm: onConfirmPick),
|
||||
RidePhase.confirming => ConfirmSheet(state: state),
|
||||
RidePhase.searching => const SearchingSheet(),
|
||||
RidePhase.active => ActiveTripSheet(trip: state.trip!),
|
||||
};
|
||||
|
||||
return Container(
|
||||
width: double.infinity,
|
||||
decoration: BoxDecoration(
|
||||
color: context.colors.surface,
|
||||
borderRadius: Radii.sheetTop,
|
||||
),
|
||||
child: SafeArea(
|
||||
top: false,
|
||||
child: Padding(
|
||||
padding: Space.page,
|
||||
child: AnimatedSize(
|
||||
duration: Motion.inScreen,
|
||||
curve: Motion.curve,
|
||||
alignment: Alignment.bottomCenter,
|
||||
child: child,
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class _Collapsed extends StatelessWidget {
|
||||
const _Collapsed();
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return TripzButton.secondary(
|
||||
label: context.l10n.rideWhereTo,
|
||||
icon: Icons.search_rounded,
|
||||
expanded: true,
|
||||
onPressed: context.read<RideCubit>().openPlanner,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class _PickConfirm extends StatelessWidget {
|
||||
const _PickConfirm({required this.onConfirm});
|
||||
|
||||
final VoidCallback onConfirm;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return TripzButton.primary(
|
||||
label: context.l10n.rideConfirmPoint,
|
||||
onPressed: onConfirm,
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,75 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||
|
||||
import '../../../../core/design/tokens.dart';
|
||||
import '../../../../core/design/tripz_colors.dart';
|
||||
import '../../../../core/design/typography.dart';
|
||||
import '../../../../core/l10n/l10n.dart';
|
||||
import '../../../../core/ui/tripz_button.dart';
|
||||
import '../../cubit/ride_cubit.dart';
|
||||
import '../../data/models/trip.dart';
|
||||
import 'driver_badge.dart';
|
||||
|
||||
/// بطاقة الرحلة الجارية: حالة واضحة ثم بيانات السائق ثم فعل واحد.
|
||||
class ActiveTripSheet extends StatelessWidget {
|
||||
const ActiveTripSheet({super.key, required this.trip});
|
||||
|
||||
final Trip trip;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final l10n = context.l10n;
|
||||
final canCancel = const {
|
||||
TripStatus.assigned,
|
||||
TripStatus.driverArriving,
|
||||
}.contains(trip.status);
|
||||
|
||||
return Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||
children: [
|
||||
Text(_statusText(context), style: context.texts.titleMedium),
|
||||
const SizedBox(height: Space.md),
|
||||
DriverBadge(trip: trip),
|
||||
if (trip.priceForPassenger != null) ...[
|
||||
const SizedBox(height: Space.md),
|
||||
Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
Text(
|
||||
l10n.rideConfirmTrip,
|
||||
style: context.texts.bodyMedium?.copyWith(
|
||||
color: context.colors.onSurfaceVariant,
|
||||
),
|
||||
),
|
||||
Text(
|
||||
'${trip.priceForPassenger} ${trip.currency}',
|
||||
style: numericStyle(context.texts.titleLarge),
|
||||
),
|
||||
],
|
||||
),
|
||||
],
|
||||
if (canCancel) ...[
|
||||
const SizedBox(height: Space.md),
|
||||
TripzButton.text(
|
||||
label: l10n.rideCancelTrip,
|
||||
expanded: true,
|
||||
onPressed: context.read<RideCubit>().cancelTrip,
|
||||
),
|
||||
],
|
||||
],
|
||||
);
|
||||
}
|
||||
|
||||
String _statusText(BuildContext context) {
|
||||
final l10n = context.l10n;
|
||||
return switch (trip.status) {
|
||||
TripStatus.assigned => l10n.tripAssigned,
|
||||
TripStatus.driverArriving => l10n.tripDriverArriving,
|
||||
TripStatus.driverArrived => l10n.tripDriverArrived,
|
||||
TripStatus.inProgress => l10n.tripInProgress,
|
||||
TripStatus.completed || TripStatus.paid => l10n.tripCompleted,
|
||||
_ => l10n.rideSearchingTitle,
|
||||
};
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import '../../../../core/design/tokens.dart';
|
||||
import '../../../../core/design/tripz_colors.dart';
|
||||
|
||||
/// دبّوس ثابت في منتصف الشاشة أثناء الاختيار من الخريطة.
|
||||
///
|
||||
/// النمط الصحيح المثبت ميدانياً: **المستخدم يحرّك الخريطة لا الدبّوس**
|
||||
/// (docs/39 §3) — الدبّوس لا يُسحب، فلا يضيع تحت الإصبع.
|
||||
class CenterPin extends StatelessWidget {
|
||||
const CenterPin({super.key, this.isOrigin = false});
|
||||
|
||||
final bool isOrigin;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final color =
|
||||
isOrigin ? context.tripzColors.mapOrigin : context.tripzColors.mapDestination;
|
||||
return IgnorePointer(
|
||||
child: Center(
|
||||
child: Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
Icon(Icons.location_on, size: Sizes.iconLg, color: color),
|
||||
// ظلّ صغير يثبّت الإحساس بموضع النقطة على الأرض.
|
||||
Container(
|
||||
width: 8,
|
||||
height: 4,
|
||||
margin: const EdgeInsets.only(top: 2),
|
||||
decoration: BoxDecoration(
|
||||
color: Colors.black.withValues(alpha: 0.25),
|
||||
borderRadius: BorderRadius.circular(4),
|
||||
),
|
||||
),
|
||||
const SizedBox(height: Sizes.iconLg),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,113 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||
|
||||
import '../../../../core/design/tokens.dart';
|
||||
import '../../../../core/design/tripz_colors.dart';
|
||||
import '../../../../core/design/typography.dart';
|
||||
import '../../../../core/l10n/l10n.dart';
|
||||
import '../../../../core/ui/status_banner.dart';
|
||||
import '../../../../core/ui/tripz_button.dart';
|
||||
import '../../cubit/ride_cubit.dart';
|
||||
import '../../cubit/ride_state.dart';
|
||||
import 'ride_type_picker.dart';
|
||||
import 'route_timeline.dart';
|
||||
|
||||
/// التأكيد: نوع الرحلة والأجرة والمسافة والمدة — ثم زر واحد.
|
||||
class ConfirmSheet extends StatelessWidget {
|
||||
const ConfirmSheet({super.key, required this.state});
|
||||
|
||||
final RideState state;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final l10n = context.l10n;
|
||||
final cubit = context.read<RideCubit>();
|
||||
final route = state.route;
|
||||
final quote = state.quote;
|
||||
|
||||
return Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||
children: [
|
||||
RouteTimeline(
|
||||
originLabel: state.originLabel,
|
||||
destinationLabel: state.destinationLabel,
|
||||
stopCount: state.stops.length,
|
||||
onTapDestination: cubit.clearDestination,
|
||||
),
|
||||
const SizedBox(height: Space.md),
|
||||
RideTypePicker(
|
||||
types: state.rideTypes,
|
||||
selected: state.selectedRideType,
|
||||
onSelect: cubit.selectRideType,
|
||||
),
|
||||
const SizedBox(height: Space.md),
|
||||
if (route != null)
|
||||
Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
_Metric(
|
||||
icon: Icons.route_outlined,
|
||||
value: l10n.rideDistanceKm(route.distanceKm.toStringAsFixed(1)),
|
||||
),
|
||||
_Metric(
|
||||
icon: Icons.schedule_rounded,
|
||||
value: l10n.rideEta(route.durationMin.round().toString()),
|
||||
),
|
||||
// الأجرة لا تُعرض إلا إن كانت صالحة: النقطة ترجّع 200 بقيم
|
||||
// `null` عند المدخلات الخطأ (docs/38 §7).
|
||||
if (quote != null && quote.isUsable)
|
||||
Text(
|
||||
'${quote.total!.toStringAsFixed(2)} ${quote.currency}',
|
||||
style: numericStyle(context.texts.titleLarge),
|
||||
),
|
||||
],
|
||||
),
|
||||
if (quote?.hasSurge == true) ...[
|
||||
const SizedBox(height: Space.sm),
|
||||
StatusBanner(
|
||||
message: l10n.rideSurge,
|
||||
tone: BannerTone.warning,
|
||||
icon: Icons.trending_up_rounded,
|
||||
),
|
||||
],
|
||||
if (state.error == RideError.quoteFailed) ...[
|
||||
const SizedBox(height: Space.sm),
|
||||
StatusBanner(
|
||||
message: l10n.rideQuoteFailed,
|
||||
tone: BannerTone.danger,
|
||||
),
|
||||
],
|
||||
if (state.error == RideError.noDrivers) ...[
|
||||
const SizedBox(height: Space.sm),
|
||||
StatusBanner(message: l10n.rideNoDrivers, tone: BannerTone.warning),
|
||||
],
|
||||
const SizedBox(height: Space.md),
|
||||
TripzButton.primary(
|
||||
label: l10n.rideConfirmTrip,
|
||||
loading: state.busy,
|
||||
onPressed: state.canConfirm ? cubit.requestTrip : null,
|
||||
),
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class _Metric extends StatelessWidget {
|
||||
const _Metric({required this.icon, required this.value});
|
||||
|
||||
final IconData icon;
|
||||
final String value;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Row(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
Icon(icon, size: Sizes.iconSm, color: context.colors.onSurfaceVariant),
|
||||
const SizedBox(width: Space.xxs),
|
||||
Text(value, style: numericStyle(context.texts.bodyMedium)),
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,92 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import '../../../../core/design/tokens.dart';
|
||||
import '../../../../core/design/tripz_colors.dart';
|
||||
import '../../../../core/design/typography.dart';
|
||||
import '../../data/models/trip.dart';
|
||||
|
||||
/// بطاقة السائق ولوحة المركبة — أهم ما يبحث عنه الراكب في الشارع، فيأخذ
|
||||
/// أوضح موضع وأكبر تباين.
|
||||
class DriverBadge extends StatelessWidget {
|
||||
const DriverBadge({super.key, required this.trip});
|
||||
|
||||
final Trip trip;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
if (trip.driverName == null) return const SizedBox.shrink();
|
||||
return Row(
|
||||
children: [
|
||||
CircleAvatar(
|
||||
radius: 24,
|
||||
backgroundColor: context.colors.primaryContainer,
|
||||
child: Icon(
|
||||
Icons.person_rounded,
|
||||
color: context.colors.onPrimaryContainer,
|
||||
),
|
||||
),
|
||||
const SizedBox(width: Space.sm),
|
||||
Expanded(
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Text(trip.driverName!, style: context.texts.titleSmall),
|
||||
if (trip.vehicleModel != null)
|
||||
Text(
|
||||
trip.vehicleModel!,
|
||||
style: context.texts.bodySmall?.copyWith(
|
||||
color: context.colors.onSurfaceVariant,
|
||||
),
|
||||
),
|
||||
if (trip.driverRating != null)
|
||||
Row(
|
||||
children: [
|
||||
Icon(
|
||||
Icons.star_rounded,
|
||||
size: Sizes.iconSm,
|
||||
color: context.tripzColors.warning,
|
||||
),
|
||||
const SizedBox(width: Space.xxs),
|
||||
Text(
|
||||
trip.driverRating!,
|
||||
style: numericStyle(context.texts.bodySmall),
|
||||
),
|
||||
],
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
if (trip.vehiclePlate != null) _Plate(plate: trip.vehiclePlate!),
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/// لوحة مرسومة لا نصّ عادي — تُقرأ من بعيد ومن زاوية.
|
||||
class _Plate extends StatelessWidget {
|
||||
const _Plate({required this.plate});
|
||||
|
||||
final String plate;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Container(
|
||||
padding: const EdgeInsets.symmetric(
|
||||
horizontal: Space.sm,
|
||||
vertical: Space.xxs,
|
||||
),
|
||||
decoration: BoxDecoration(
|
||||
borderRadius: Radii.field_,
|
||||
border: Border.all(color: context.colors.outline, width: 1.5),
|
||||
color: context.tripzColors.surfaceRaised,
|
||||
),
|
||||
child: Text(
|
||||
plate,
|
||||
textDirection: TextDirection.ltr,
|
||||
style: numericStyle(context.texts.titleMedium).copyWith(
|
||||
letterSpacing: 1.5,
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,93 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||
|
||||
import '../../../../core/design/tokens.dart';
|
||||
import '../../../../core/l10n/l10n.dart';
|
||||
import '../../../../core/ui/tripz_button.dart';
|
||||
import '../../../../core/ui/tripz_text_field.dart';
|
||||
import '../../cubit/ride_cubit.dart';
|
||||
import '../../cubit/ride_state.dart';
|
||||
import 'route_timeline.dart';
|
||||
|
||||
/// المخطّط الموسّع بترتيبه المثبت ميدانياً (docs/39 §3):
|
||||
/// الخط الزمني للمسار ← البحث ← تحديد من الخريطة.
|
||||
class PlannerSheet extends StatefulWidget {
|
||||
const PlannerSheet({super.key, required this.state});
|
||||
|
||||
final RideState state;
|
||||
|
||||
@override
|
||||
State<PlannerSheet> createState() => _PlannerSheetState();
|
||||
}
|
||||
|
||||
class _PlannerSheetState extends State<PlannerSheet> {
|
||||
final _query = TextEditingController();
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
_query.dispose();
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final l10n = context.l10n;
|
||||
final cubit = context.read<RideCubit>();
|
||||
final state = widget.state;
|
||||
|
||||
return Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||
children: [
|
||||
RouteTimeline(
|
||||
originLabel: state.originLabel,
|
||||
destinationLabel: state.destinationLabel,
|
||||
stopCount: state.stops.length,
|
||||
onTapOrigin: () => cubit.startMapPick(PickTarget.origin),
|
||||
onTapDestination: () => cubit.startMapPick(PickTarget.destination),
|
||||
),
|
||||
const SizedBox(height: Space.md),
|
||||
TripzTextField(
|
||||
controller: _query,
|
||||
hint: l10n.rideSearchHint,
|
||||
prefixIcon: Icons.search_rounded,
|
||||
onChanged: cubit.searchPlaces,
|
||||
),
|
||||
if (state.searching)
|
||||
const Padding(
|
||||
padding: EdgeInsets.only(top: Space.md),
|
||||
child: LinearProgressIndicator(minHeight: 2),
|
||||
),
|
||||
if (state.searchResults.isNotEmpty)
|
||||
Flexible(
|
||||
child: ListView.separated(
|
||||
shrinkWrap: true,
|
||||
padding: const EdgeInsets.only(top: Space.xs),
|
||||
itemCount: state.searchResults.length,
|
||||
separatorBuilder: (context, i) => const Divider(height: 1),
|
||||
itemBuilder: (context, i) {
|
||||
final place = state.searchResults[i];
|
||||
return ListTile(
|
||||
contentPadding: EdgeInsets.zero,
|
||||
leading: const Icon(Icons.place_outlined),
|
||||
title: Text(place.label),
|
||||
subtitle: place.address.isEmpty ? null : Text(place.address),
|
||||
onTap: () {
|
||||
_query.clear();
|
||||
cubit.pickPlace(place, PickTarget.destination);
|
||||
},
|
||||
);
|
||||
},
|
||||
),
|
||||
),
|
||||
const SizedBox(height: Space.md),
|
||||
TripzButton.secondary(
|
||||
label: l10n.ridePickOnMap,
|
||||
icon: Icons.map_outlined,
|
||||
expanded: true,
|
||||
onPressed: () => cubit.startMapPick(PickTarget.destination),
|
||||
),
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,105 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:intaleq_maps/intaleq_maps.dart' as im;
|
||||
|
||||
import '../../../../core/config.dart';
|
||||
import '../../../../core/design/tripz_colors.dart';
|
||||
import '../../data/models/geo_point.dart';
|
||||
import '../../data/models/route_info.dart';
|
||||
|
||||
/// الخريطة — **الطبقة الوحيدة التي تعرف `intaleq_maps`**. ما فوقها يتعامل
|
||||
/// مع `GeoPoint` وحده، فتبديل محرّك الخريطة لاحقاً لا يلمس منطقاً.
|
||||
///
|
||||
/// البلاطات تُجلب مباشرة من map-saas بمفتاح مقيّد ببصمة التطبيق
|
||||
/// (قرار 2026-07-20).
|
||||
class RideMap extends StatefulWidget {
|
||||
const RideMap({
|
||||
super.key,
|
||||
this.origin,
|
||||
this.destination,
|
||||
this.driver,
|
||||
this.route,
|
||||
this.cameraTarget,
|
||||
this.onCameraIdle,
|
||||
});
|
||||
|
||||
final GeoPoint? origin;
|
||||
final GeoPoint? destination;
|
||||
final GeoPoint? driver;
|
||||
final RouteInfo? route;
|
||||
final GeoPoint? cameraTarget;
|
||||
|
||||
/// مركز الخريطة عند استقرارها — يغذّي اختيار النقطة بالدبّوس الثابت.
|
||||
final ValueChanged<GeoPoint>? onCameraIdle;
|
||||
|
||||
@override
|
||||
State<RideMap> createState() => _RideMapState();
|
||||
}
|
||||
|
||||
class _RideMapState extends State<RideMap> {
|
||||
im.IntaleqMapController? _controller;
|
||||
im.LatLng? _center;
|
||||
|
||||
static const _fallback = im.LatLng(31.9539, 35.9106); // عمّان
|
||||
|
||||
@override
|
||||
void didUpdateWidget(RideMap old) {
|
||||
super.didUpdateWidget(old);
|
||||
final target = widget.cameraTarget;
|
||||
if (target != null && target != old.cameraTarget) {
|
||||
_controller?.animateCamera(
|
||||
im.CameraUpdate.newLatLng(im.LatLng(target.lat, target.lng)),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final colors = context.tripzColors;
|
||||
final isDark = Theme.of(context).brightness == Brightness.dark;
|
||||
|
||||
return im.IntaleqMap(
|
||||
apiKey: AppConfig.mapApiKey,
|
||||
initialCameraPosition: im.CameraPosition(
|
||||
target: widget.origin == null
|
||||
? _fallback
|
||||
: im.LatLng(widget.origin!.lat, widget.origin!.lng),
|
||||
zoom: 15,
|
||||
),
|
||||
// الخريطة تبدّل ستايلها مع الثيم — خريطة نهارية في وضع ليلي تكسر
|
||||
// الغرض (docs/26 §2).
|
||||
styleUrl: isDark
|
||||
? im.IntaleqStyles.obsidian(AppConfig.mapApiKey)
|
||||
: im.IntaleqStyles.light(AppConfig.mapApiKey),
|
||||
myLocationEnabled: true,
|
||||
compassEnabled: false,
|
||||
zoomControlsEnabled: false,
|
||||
onMapCreated: (c) => _controller = c,
|
||||
onCameraMove: (position) => _center = position.target,
|
||||
onCameraIdle: () {
|
||||
final c = _center;
|
||||
if (c != null) widget.onCameraIdle?.call(GeoPoint(c.latitude, c.longitude));
|
||||
},
|
||||
markers: {
|
||||
if (widget.origin != null)
|
||||
_marker('origin', widget.origin!),
|
||||
if (widget.destination != null)
|
||||
_marker('destination', widget.destination!),
|
||||
if (widget.driver != null) _marker('driver', widget.driver!),
|
||||
},
|
||||
polylines: {
|
||||
if (widget.route != null && widget.route!.encodedPoints.isNotEmpty)
|
||||
im.Polyline(
|
||||
polylineId: const im.PolylineId('route'),
|
||||
points: im.PolylineUtils.decode(widget.route!.encodedPoints),
|
||||
color: colors.mapRoute,
|
||||
width: 5,
|
||||
),
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
im.Marker _marker(String id, GeoPoint p) => im.Marker(
|
||||
markerId: im.MarkerId(id),
|
||||
position: im.LatLng(p.lat, p.lng),
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import '../../../../core/design/tokens.dart';
|
||||
import '../../../../core/design/tripz_colors.dart';
|
||||
import '../../data/models/ride_type.dart';
|
||||
|
||||
/// قائمة الأنواع تُبنى من `GET /ride-types` لا من قائمة مكتوبة (docs/38 §7).
|
||||
/// `women_only` علامة مرئية لا فلتر صامت.
|
||||
class RideTypePicker extends StatelessWidget {
|
||||
const RideTypePicker({
|
||||
super.key,
|
||||
required this.types,
|
||||
required this.selected,
|
||||
required this.onSelect,
|
||||
});
|
||||
|
||||
final List<RideType> types;
|
||||
final RideType? selected;
|
||||
final ValueChanged<RideType> onSelect;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
if (types.isEmpty) return const SizedBox.shrink();
|
||||
final lang = Localizations.localeOf(context).languageCode;
|
||||
|
||||
return SizedBox(
|
||||
height: 44,
|
||||
child: ListView.separated(
|
||||
scrollDirection: Axis.horizontal,
|
||||
itemCount: types.length,
|
||||
separatorBuilder: (context, i) => const SizedBox(width: Space.xs),
|
||||
itemBuilder: (context, i) {
|
||||
final type = types[i];
|
||||
final isSelected = type.id == selected?.id;
|
||||
return ChoiceChip(
|
||||
selected: isSelected,
|
||||
onSelected: (_) => onSelect(type),
|
||||
avatar: type.womenOnly
|
||||
? const Icon(Icons.female_rounded, size: Sizes.iconSm)
|
||||
: Icon(
|
||||
type.vehicleKind == 'moto'
|
||||
? Icons.two_wheeler_rounded
|
||||
: Icons.directions_car_rounded,
|
||||
size: Sizes.iconSm,
|
||||
),
|
||||
label: Text(type.nameFor(lang)),
|
||||
labelStyle: context.texts.labelLarge,
|
||||
);
|
||||
},
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,112 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import '../../../../core/design/tokens.dart';
|
||||
import '../../../../core/design/tripz_colors.dart';
|
||||
import '../../../../core/l10n/l10n.dart';
|
||||
|
||||
/// الخط الزمني للمسار: المصدر ← المحطات ← الوجهة، بنقاط ملوّنة تطابق
|
||||
/// علامات الخريطة كي يربط المستخدم بينهما بلا شرح.
|
||||
class RouteTimeline extends StatelessWidget {
|
||||
const RouteTimeline({
|
||||
super.key,
|
||||
required this.originLabel,
|
||||
required this.destinationLabel,
|
||||
this.stopCount = 0,
|
||||
this.onTapOrigin,
|
||||
this.onTapDestination,
|
||||
});
|
||||
|
||||
final String originLabel;
|
||||
final String destinationLabel;
|
||||
final int stopCount;
|
||||
final VoidCallback? onTapOrigin;
|
||||
final VoidCallback? onTapDestination;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final l10n = context.l10n;
|
||||
final colors = context.tripzColors;
|
||||
return Column(
|
||||
children: [
|
||||
_Row(
|
||||
color: colors.mapOrigin,
|
||||
label: l10n.rideOrigin,
|
||||
value: originLabel,
|
||||
onTap: onTapOrigin,
|
||||
),
|
||||
if (stopCount > 0)
|
||||
for (var i = 0; i < stopCount; i++)
|
||||
_Row(
|
||||
color: colors.info,
|
||||
label: l10n.rideStop(i + 1),
|
||||
value: '',
|
||||
),
|
||||
_Row(
|
||||
color: colors.mapDestination,
|
||||
label: l10n.rideDestination,
|
||||
value: destinationLabel,
|
||||
onTap: onTapDestination,
|
||||
),
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class _Row extends StatelessWidget {
|
||||
const _Row({
|
||||
required this.color,
|
||||
required this.label,
|
||||
required this.value,
|
||||
this.onTap,
|
||||
});
|
||||
|
||||
final Color color;
|
||||
final String label;
|
||||
final String value;
|
||||
final VoidCallback? onTap;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return InkWell(
|
||||
onTap: onTap,
|
||||
borderRadius: Radii.field_,
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.symmetric(vertical: Space.sm),
|
||||
child: Row(
|
||||
children: [
|
||||
Container(
|
||||
width: 10,
|
||||
height: 10,
|
||||
decoration: BoxDecoration(color: color, shape: BoxShape.circle),
|
||||
),
|
||||
const SizedBox(width: Space.sm),
|
||||
Expanded(
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Text(
|
||||
label,
|
||||
style: context.texts.labelSmall?.copyWith(
|
||||
color: context.colors.onSurfaceVariant,
|
||||
),
|
||||
),
|
||||
Text(
|
||||
value.isEmpty ? '—' : value,
|
||||
maxLines: 1,
|
||||
overflow: TextOverflow.ellipsis,
|
||||
style: context.texts.bodyMedium,
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
if (onTap != null)
|
||||
Icon(
|
||||
Icons.chevron_left_rounded,
|
||||
color: context.colors.onSurfaceVariant,
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,112 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||
|
||||
import '../../../../core/design/tokens.dart';
|
||||
import '../../../../core/design/tripz_colors.dart';
|
||||
import '../../../../core/l10n/l10n.dart';
|
||||
import '../../../../core/ui/tripz_button.dart';
|
||||
import '../../cubit/ride_cubit.dart';
|
||||
|
||||
/// نافذة البحث عن سائق.
|
||||
///
|
||||
/// **لا تُغلق بالسحب — بزر الإلغاء وحده** (قرار تصميمي مثبت ميدانياً،
|
||||
/// docs/39 §3): المستخدم لا يزيح شاشة البحث بالخطأ فيفقد أثر رحلته.
|
||||
/// الويدجت «غبي» بلا منطق — المهلة والاستطلاع في الكيوبت.
|
||||
class SearchingSheet extends StatefulWidget {
|
||||
const SearchingSheet({super.key});
|
||||
|
||||
@override
|
||||
State<SearchingSheet> createState() => _SearchingSheetState();
|
||||
}
|
||||
|
||||
class _SearchingSheetState extends State<SearchingSheet>
|
||||
with SingleTickerProviderStateMixin {
|
||||
late final AnimationController _radar = AnimationController(
|
||||
vsync: this,
|
||||
duration: const Duration(seconds: 2),
|
||||
)..repeat();
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
_radar.dispose();
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final l10n = context.l10n;
|
||||
return Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||
children: [
|
||||
SizedBox(
|
||||
height: 120,
|
||||
child: Center(
|
||||
child: RepaintBoundary(
|
||||
child: AnimatedBuilder(
|
||||
animation: _radar,
|
||||
builder: (context, _) => CustomPaint(
|
||||
size: const Size(120, 120),
|
||||
painter: _RadarPainter(
|
||||
progress: _radar.value,
|
||||
color: context.colors.primary,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
const SizedBox(height: Space.md),
|
||||
Text(
|
||||
l10n.rideSearchingTitle,
|
||||
textAlign: TextAlign.center,
|
||||
style: context.texts.titleMedium,
|
||||
),
|
||||
const SizedBox(height: Space.xxs),
|
||||
Text(
|
||||
l10n.rideSearchingLead,
|
||||
textAlign: TextAlign.center,
|
||||
style: context.texts.bodySmall?.copyWith(
|
||||
color: context.colors.onSurfaceVariant,
|
||||
),
|
||||
),
|
||||
const SizedBox(height: Space.lg),
|
||||
TripzButton.secondary(
|
||||
label: l10n.rideCancelSearch,
|
||||
expanded: true,
|
||||
onPressed: context.read<RideCubit>().cancelTrip,
|
||||
),
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class _RadarPainter extends CustomPainter {
|
||||
const _RadarPainter({required this.progress, required this.color});
|
||||
|
||||
final double progress;
|
||||
final Color color;
|
||||
|
||||
@override
|
||||
void paint(Canvas canvas, Size size) {
|
||||
final center = size.center(Offset.zero);
|
||||
final maxRadius = size.width / 2;
|
||||
|
||||
// ثلاث حلقات متتابعة الطور — إحساس بالبثّ المستمر لا بنبضة واحدة.
|
||||
for (var i = 0; i < 3; i++) {
|
||||
final t = (progress + i / 3) % 1.0;
|
||||
canvas.drawCircle(
|
||||
center,
|
||||
maxRadius * t,
|
||||
Paint()
|
||||
..style = PaintingStyle.stroke
|
||||
..strokeWidth = 2
|
||||
..color = color.withValues(alpha: (1 - t) * 0.6),
|
||||
);
|
||||
}
|
||||
canvas.drawCircle(center, 8, Paint()..color = color);
|
||||
}
|
||||
|
||||
@override
|
||||
bool shouldRepaint(_RadarPainter old) => old.progress != progress;
|
||||
}
|
||||
Reference in New Issue
Block a user