- 注释 flutter_blue_plus 和 permission_handler 依赖 - 删除蓝牙设备页、BLE service、omron provider 等 6 个源文件 - 移除路由和设备设置入口 - 清理 2 个 BLE 相关测试文件 - 解决 Transporter 报 NSLocationWhenInUseUsageDescription 缺失 Co-Authored-By: Claude <noreply@anthropic.com>
151 lines
5.8 KiB
Dart
151 lines
5.8 KiB
Dart
import 'package:flutter/material.dart';
|
||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||
import 'navigation_provider.dart';
|
||
import '../pages/auth/login_page.dart';
|
||
import '../pages/home/home_page.dart';
|
||
import '../pages/chart/trend_page.dart';
|
||
import '../pages/medication/medication_list_page.dart';
|
||
import '../pages/medication/medication_checkin_page.dart';
|
||
import '../pages/medication/medication_edit_page.dart';
|
||
import '../pages/report/report_pages.dart';
|
||
import '../pages/report/ai_analysis_page.dart';
|
||
import '../pages/consultation/consultation_pages.dart';
|
||
import '../pages/settings/settings_pages.dart';
|
||
import '../pages/settings/elder_mode_page.dart';
|
||
import '../pages/settings/notification_prefs_page.dart';
|
||
import '../pages/notifications/notification_center_page.dart';
|
||
import '../pages/history/conversation_history_page.dart';
|
||
import '../pages/profile/profile_page.dart';
|
||
import '../pages/profile/profile_edit_page.dart';
|
||
import '../pages/diet/diet_capture_page.dart';
|
||
import '../pages/exercise/exercise_plan_page.dart';
|
||
// iOS 审核版:蓝牙设备页已移除
|
||
// import '../pages/device/device_scan_page.dart';
|
||
// import '../pages/device/device_management_page.dart';
|
||
import '../pages/remaining_pages.dart';
|
||
import '../pages/doctor/doctor_home_page.dart';
|
||
import '../pages/doctor/doctor_patient_detail_page.dart';
|
||
import '../pages/doctor/doctor_report_detail_page.dart';
|
||
import '../pages/doctor/doctor_followup_edit_page.dart';
|
||
import '../pages/doctor/doctor_settings_page.dart';
|
||
import '../pages/doctor/doctor_profile_page.dart';
|
||
import '../pages/admin/admin_home_page.dart';
|
||
import '../pages/admin/admin_add_doctor_page.dart';
|
||
import '../providers/auth_provider.dart' show userRoleProvider;
|
||
import '../widgets/app_error_state.dart';
|
||
|
||
Widget _missingParamPage() {
|
||
return const Scaffold(
|
||
body: AppErrorState(title: '页面参数错误', subtitle: '缺少打开页面所需的信息,请返回后重试'),
|
||
);
|
||
}
|
||
|
||
String? _requiredParam(Map<String, String> params, String key) {
|
||
final value = params[key]?.trim();
|
||
return value == null || value.isEmpty ? null : value;
|
||
}
|
||
|
||
/// 根据路由信息返回对应页面
|
||
Widget buildPage(RouteInfo route, WidgetRef ref) {
|
||
final params = route.params;
|
||
switch (route.name) {
|
||
case 'login':
|
||
return const LoginPage();
|
||
case 'home':
|
||
final role = ref.watch(userRoleProvider);
|
||
return role == 'Doctor' ? const DoctorHomePage() : const HomePage();
|
||
case 'doctorHome':
|
||
return const DoctorHomePage();
|
||
case 'adminHome':
|
||
return const AdminHomePage();
|
||
case 'adminAddDoctor':
|
||
return AdminAddDoctorPage(
|
||
id: params['id'],
|
||
initialPhone: params['phone'] ?? '',
|
||
initialName: params['name'] ?? '',
|
||
initialTitle: params['title'] ?? '',
|
||
initialDepartment: params['department'] ?? '',
|
||
initialDirection: params['direction'] ?? '',
|
||
);
|
||
case 'trend':
|
||
return TrendPage(
|
||
metricType: params['type']?.isNotEmpty == true ? params['type'] : null,
|
||
);
|
||
case 'calendar':
|
||
return const HealthCalendarPage();
|
||
case 'medications':
|
||
return const MedicationListPage();
|
||
case 'medCheckIn':
|
||
return MedicationCheckInPage(medId: params['id']);
|
||
case 'medicationEdit':
|
||
return MedicationEditPage(id: params['id']);
|
||
case 'reports':
|
||
return ReportListPage(openUploadOnEnter: params['openUpload'] == 'true');
|
||
case 'aiAnalysis':
|
||
final id = _requiredParam(params, 'id');
|
||
return id == null ? _missingParamPage() : AiAnalysisPage(id: id);
|
||
case 'reportOriginal':
|
||
return ReportOriginalPage(
|
||
url: params['url'] ?? '',
|
||
title: params['title'] ?? '原始报告',
|
||
fileType: params['fileType'] ?? 'Image',
|
||
);
|
||
case 'exercisePlan':
|
||
return const EnterpriseExercisePlanPage();
|
||
case 'exercisePlanDetail':
|
||
return const EnterpriseExercisePlanPage();
|
||
case 'exerciseCreate':
|
||
return const ExercisePlanCreatePage();
|
||
case 'dietRecords':
|
||
return const DietRecordListPage();
|
||
case 'dietCapture':
|
||
return const DietCapturePage();
|
||
case 'profile':
|
||
return const ProfilePage();
|
||
case 'profileEdit':
|
||
return const ProfileEditPage();
|
||
case 'doctorProfile':
|
||
return const DoctorProfileEditPage();
|
||
case 'doctorSettings':
|
||
return const DoctorSettingsPage();
|
||
case 'doctorPatientDetail':
|
||
final id = _requiredParam(params, 'id');
|
||
return id == null ? _missingParamPage() : DoctorPatientDetailPage(id: id);
|
||
case 'doctorChat':
|
||
final id = _requiredParam(params, 'id');
|
||
return id == null ? _missingParamPage() : DoctorChatPage(id: id);
|
||
case 'doctorReportDetail':
|
||
final id = _requiredParam(params, 'id');
|
||
return id == null ? _missingParamPage() : DoctorReportDetailPage(id: id);
|
||
case 'doctorFollowUpEdit':
|
||
return DoctorFollowUpEditPage(id: params['id']);
|
||
// iOS 审核版:蓝牙设备路由已移除
|
||
// case 'devices': return const DeviceManagementPage();
|
||
// case 'deviceScan': return const DeviceScanPage();
|
||
case 'healthArchive':
|
||
return const HealthArchivePage();
|
||
case 'followups':
|
||
return const FollowUpListPage();
|
||
case 'settings':
|
||
return const SettingsPage();
|
||
case 'elderMode':
|
||
return const ElderModePage();
|
||
case 'notificationPrefs':
|
||
return const NotificationPrefsPage();
|
||
case 'notifications':
|
||
return const NotificationCenterPage();
|
||
case 'conversationHistory':
|
||
return const ConversationHistoryPage();
|
||
case 'staticText':
|
||
final type = _requiredParam(params, 'type');
|
||
return type == null ? _missingParamPage() : StaticTextPage(type: type);
|
||
case 'dietDetail':
|
||
final id = _requiredParam(params, 'id');
|
||
return id == null ? _missingParamPage() : DietRecordDetailPage(id: id);
|
||
default:
|
||
return const LoginPage();
|
||
}
|
||
}
|
||
|
||
// ── 医生端次级页面 Stubs(逐步实现)──
|