- 在AndroidManifest.xml中添加USB Host权限和设备过滤器配置 - 新增设备控制国际化词条包括速度档位、吹气时间等 - 重构数据库结构将速度相关字段统一为档位数值存储 - 添加通用KV存储方法用于settings表数据读写 - 优化首页导航实现tab间跳转和状态保持功能 - 更新程序详情页面布局和参数表单界面 - 移除模拟运行器相关测试代码 - 添加USB串口通信依赖包usb_serial
376 lines
12 KiB
Dart
376 lines
12 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import '../../../core/localization/app_localizations.dart';
|
|
import '../../../core/theme/app_theme.dart';
|
|
import '../../../shared/widgets/common_button.dart';
|
|
import '../../device/providers/run_state_provider.dart';
|
|
import '../../programs/models/program.dart';
|
|
import '../../programs/providers/programs_provider.dart';
|
|
|
|
/// 运行控制面板 - 暗色工业风格
|
|
/// 显示当前程序信息和运行控制按钮
|
|
class RunningControlPanel extends ConsumerWidget {
|
|
const RunningControlPanel({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final l10n = AppLocalizations.of(context);
|
|
final runState = ref.watch(runStateProvider);
|
|
final programsState = ref.watch(programsProvider);
|
|
|
|
return Container(
|
|
decoration: BoxDecoration(
|
|
color: AppTheme.cardBg,
|
|
borderRadius: BorderRadius.circular(8),
|
|
border: Border.all(color: AppTheme.borderSubtle, width: 1),
|
|
),
|
|
child: runState.status == RunStatus.idle
|
|
? _buildIdleState(context, ref, l10n, programsState.selectedProgram)
|
|
: _buildRunningState(context, ref, l10n, runState),
|
|
);
|
|
}
|
|
|
|
/// 待机状态布局
|
|
Widget _buildIdleState(
|
|
BuildContext context,
|
|
WidgetRef ref,
|
|
AppLocalizations? l10n,
|
|
dynamic selectedProgram,
|
|
) {
|
|
final runNotifier = ref.read(runStateProvider.notifier);
|
|
|
|
return Padding(
|
|
padding: const EdgeInsets.all(16),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
|
children: [
|
|
// 当前选中程序显示
|
|
if (selectedProgram != null)
|
|
Container(
|
|
padding: const EdgeInsets.symmetric(horizontal: 14, vertical: 10),
|
|
decoration: BoxDecoration(
|
|
color: AppTheme.cardSelectedBg,
|
|
borderRadius: BorderRadius.circular(6),
|
|
border: Border.all(color: AppTheme.accentPrimary, width: 1),
|
|
),
|
|
child: Row(
|
|
children: [
|
|
Text(
|
|
'${l10n?.selectedProgramLabel ?? '当前选中'}:',
|
|
style: const TextStyle(
|
|
color: AppTheme.textTertiary,
|
|
fontSize: 12,
|
|
),
|
|
),
|
|
const SizedBox(width: 12),
|
|
Expanded(
|
|
child: Text(
|
|
'${selectedProgram.code} ${selectedProgram.name}',
|
|
style: const TextStyle(
|
|
color: AppTheme.accentPrimary,
|
|
fontSize: 14,
|
|
fontWeight: FontWeight.w600,
|
|
),
|
|
maxLines: 1,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
)
|
|
else
|
|
Container(
|
|
padding: const EdgeInsets.symmetric(horizontal: 14, vertical: 10),
|
|
decoration: BoxDecoration(
|
|
color: AppTheme.cardBg,
|
|
borderRadius: BorderRadius.circular(6),
|
|
border: Border.all(color: AppTheme.borderSubtle, width: 1),
|
|
),
|
|
child: Text(
|
|
l10n?.pleaseSelectProgram ?? '请选择要运行的程序',
|
|
style: const TextStyle(
|
|
color: AppTheme.textTertiary,
|
|
fontSize: 12,
|
|
),
|
|
),
|
|
),
|
|
|
|
const SizedBox(height: 12),
|
|
|
|
// 控制按钮
|
|
Row(
|
|
children: [
|
|
// 开始运行按钮
|
|
Expanded(
|
|
flex: 2,
|
|
child: SizedBox(
|
|
height: 48,
|
|
child: CommonButton(
|
|
text: l10n?.startRun ?? '开始运行',
|
|
icon: Icons.play_arrow,
|
|
type: ButtonType.primary,
|
|
enabled: selectedProgram != null,
|
|
onPressed: selectedProgram != null
|
|
? () => _confirmAndStart(context, runNotifier, selectedProgram, l10n)
|
|
: null,
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(width: 12),
|
|
// 暂停/继续按钮(待机态禁用)
|
|
Expanded(
|
|
child: SizedBox(
|
|
height: 48,
|
|
child: CommonButton(
|
|
text: l10n?.pause ?? '暂停',
|
|
icon: Icons.pause,
|
|
type: ButtonType.secondary,
|
|
enabled: false,
|
|
onPressed: null,
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(width: 12),
|
|
// 停止按钮(待机态禁用)
|
|
Expanded(
|
|
child: SizedBox(
|
|
height: 48,
|
|
child: CommonButton(
|
|
text: l10n?.stop ?? '停止',
|
|
icon: Icons.stop,
|
|
type: ButtonType.danger,
|
|
enabled: false,
|
|
onPressed: null,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
/// 运行状态布局
|
|
Widget _buildRunningState(
|
|
BuildContext context,
|
|
WidgetRef ref,
|
|
AppLocalizations? l10n,
|
|
RunState runState,
|
|
) {
|
|
final runNotifier = ref.read(runStateProvider.notifier);
|
|
|
|
return Padding(
|
|
padding: const EdgeInsets.all(16),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
|
children: [
|
|
// 当前程序名称
|
|
Container(
|
|
padding: const EdgeInsets.symmetric(horizontal: 14, vertical: 10),
|
|
decoration: BoxDecoration(
|
|
color: AppTheme.cardSelectedBg,
|
|
borderRadius: BorderRadius.circular(6),
|
|
border: Border.all(color: AppTheme.accentPrimary, width: 1),
|
|
),
|
|
child: Row(
|
|
children: [
|
|
Text(
|
|
'${l10n?.selectedProgramLabel ?? '当前选中'}:',
|
|
style: const TextStyle(
|
|
color: AppTheme.textTertiary,
|
|
fontSize: 12,
|
|
),
|
|
),
|
|
const SizedBox(width: 12),
|
|
Expanded(
|
|
child: Text(
|
|
runState.currentProgram?.name ?? '',
|
|
style: const TextStyle(
|
|
color: AppTheme.accentPrimary,
|
|
fontSize: 14,
|
|
fontWeight: FontWeight.w600,
|
|
),
|
|
maxLines: 1,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
|
|
const SizedBox(height: 12),
|
|
|
|
// 控制按钮
|
|
Row(
|
|
children: [
|
|
// 开始/继续按钮
|
|
Expanded(
|
|
flex: 2,
|
|
child: SizedBox(
|
|
height: 48,
|
|
child: CommonButton(
|
|
text: runState.status == RunStatus.paused
|
|
? (l10n?.continue_ ?? '继续')
|
|
: (l10n?.run ?? '运行'),
|
|
icon: runState.status == RunStatus.paused
|
|
? Icons.play_arrow
|
|
: Icons.play_arrow,
|
|
type: ButtonType.primary,
|
|
onPressed: () => runNotifier.resume(),
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(width: 12),
|
|
// 暂停按钮
|
|
Expanded(
|
|
child: SizedBox(
|
|
height: 48,
|
|
child: CommonButton(
|
|
text: l10n?.pause ?? '暂停',
|
|
icon: Icons.pause,
|
|
type: ButtonType.warning,
|
|
onPressed: runState.status == RunStatus.paused
|
|
? null
|
|
: () => runNotifier.pause(),
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(width: 12),
|
|
// 停止按钮
|
|
Expanded(
|
|
child: SizedBox(
|
|
height: 48,
|
|
child: CommonButton(
|
|
text: l10n?.stop ?? '停止',
|
|
icon: Icons.stop,
|
|
type: ButtonType.danger,
|
|
onPressed: () => _showStopConfirm(context, runNotifier, l10n),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
|
|
const SizedBox(height: 12),
|
|
|
|
// 状态指示
|
|
Row(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Container(
|
|
width: 8,
|
|
height: 8,
|
|
decoration: BoxDecoration(
|
|
shape: BoxShape.circle,
|
|
color: runState.status == RunStatus.paused
|
|
? AppTheme.accentWarning
|
|
: AppTheme.statusRunning,
|
|
),
|
|
),
|
|
const SizedBox(width: 8),
|
|
Text(
|
|
runState.status == RunStatus.paused
|
|
? (l10n?.paused ?? '已暂停')
|
|
: (l10n?.running ?? '运行中'),
|
|
style: TextStyle(
|
|
color: runState.status == RunStatus.paused
|
|
? AppTheme.accentWarning
|
|
: AppTheme.statusRunning,
|
|
fontWeight: FontWeight.w500,
|
|
fontSize: 12,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
/// 显示瓷套棒放置确认对话框,确认后启动程序
|
|
void _confirmAndStart(
|
|
BuildContext context,
|
|
RunStateNotifier runNotifier,
|
|
Program program,
|
|
AppLocalizations? l10n,
|
|
) {
|
|
showDialog(
|
|
context: context,
|
|
builder: (context) => AlertDialog(
|
|
backgroundColor: AppTheme.cardBg,
|
|
title: Text(
|
|
l10n?.ceramicSleeveConfirm ?? '运行前请确认已安装瓷套棒',
|
|
style: const TextStyle(color: AppTheme.textHeading),
|
|
),
|
|
content: Text(
|
|
l10n?.ceramicSleeveConfirmMessage ?? '请确认已放置瓷套棒后再启动程序。',
|
|
style: const TextStyle(color: AppTheme.textPrimary),
|
|
),
|
|
actions: [
|
|
TextButton(
|
|
onPressed: () => Navigator.of(context).pop(),
|
|
child: Text(
|
|
l10n?.cancel ?? '取消',
|
|
style: const TextStyle(color: AppTheme.textSecondary),
|
|
),
|
|
),
|
|
ElevatedButton(
|
|
style: ElevatedButton.styleFrom(
|
|
backgroundColor: AppTheme.accentPrimary,
|
|
foregroundColor: Colors.white,
|
|
),
|
|
onPressed: () {
|
|
Navigator.of(context).pop();
|
|
runNotifier.start(program);
|
|
},
|
|
child: Text(l10n?.confirm ?? '确认'),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
/// 显示停止确认对话框
|
|
void _showStopConfirm(
|
|
BuildContext context,
|
|
RunStateNotifier runNotifier,
|
|
AppLocalizations? l10n,
|
|
) {
|
|
showDialog(
|
|
context: context,
|
|
builder: (context) => AlertDialog(
|
|
backgroundColor: AppTheme.cardBg,
|
|
title: Text(
|
|
l10n?.confirm ?? '确认',
|
|
style: const TextStyle(color: AppTheme.textHeading),
|
|
),
|
|
content: Text(
|
|
l10n?.stopConfirm ?? '确定要停止当前运行的程序吗?',
|
|
style: const TextStyle(color: AppTheme.textPrimary),
|
|
),
|
|
actions: [
|
|
TextButton(
|
|
onPressed: () => Navigator.of(context).pop(),
|
|
child: Text(
|
|
l10n?.cancel ?? '取消',
|
|
style: const TextStyle(color: AppTheme.textSecondary),
|
|
),
|
|
),
|
|
ElevatedButton(
|
|
style: ElevatedButton.styleFrom(
|
|
backgroundColor: AppTheme.accentCritical,
|
|
foregroundColor: Colors.white,
|
|
),
|
|
onPressed: () {
|
|
runNotifier.stop();
|
|
Navigator.of(context).pop();
|
|
},
|
|
child: Text(l10n?.confirm ?? '确认'),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|