- 在AndroidManifest.xml中添加USB Host权限和设备过滤器配置 - 新增设备控制国际化词条包括速度档位、吹气时间等 - 重构数据库结构将速度相关字段统一为档位数值存储 - 添加通用KV存储方法用于settings表数据读写 - 优化首页导航实现tab间跳转和状态保持功能 - 更新程序详情页面布局和参数表单界面 - 移除模拟运行器相关测试代码 - 添加USB串口通信依赖包usb_serial
233 lines
7.7 KiB
Dart
233 lines
7.7 KiB
Dart
import 'package:flutter/material.dart';
|
|
import '../../../core/localization/app_localizations.dart';
|
|
import '../../../core/theme/app_theme.dart';
|
|
import '../../../shared/utils/constants.dart';
|
|
import '../../../shared/widgets/common_button.dart';
|
|
import '../../programs/models/step.dart' as models;
|
|
|
|
/// 步骤参数表单
|
|
class StepForm extends StatefulWidget {
|
|
final int programId;
|
|
final models.Step? step;
|
|
final bool isNew;
|
|
final void Function(models.Step) onSave;
|
|
|
|
const StepForm({
|
|
super.key,
|
|
required this.programId,
|
|
this.step,
|
|
this.isNew = false,
|
|
required this.onSave,
|
|
});
|
|
|
|
@override
|
|
State<StepForm> createState() => _StepFormState();
|
|
}
|
|
|
|
class _StepFormState extends State<StepForm> {
|
|
final _formKey = GlobalKey<FormState>();
|
|
|
|
late TextEditingController _nameController;
|
|
late TextEditingController _mixTimeController;
|
|
late TextEditingController _magnetTimeController;
|
|
late TextEditingController _volumeController;
|
|
late TextEditingController _blowTimeController;
|
|
|
|
String _position = 'A1';
|
|
int _speed = 5;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
_nameController = TextEditingController(text: widget.step?.name ?? '');
|
|
_mixTimeController = TextEditingController(text: '${widget.step?.mixTime ?? 0}');
|
|
_magnetTimeController = TextEditingController(text: '${widget.step?.magnetTime ?? 0}');
|
|
_volumeController = TextEditingController(text: '${widget.step?.volume ?? 0}');
|
|
_blowTimeController = TextEditingController(text: '${widget.step?.blowTime ?? 0}');
|
|
|
|
_position = widget.step?.position ?? 'A1';
|
|
_speed = widget.step?.speed ?? 5;
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
_nameController.dispose();
|
|
_mixTimeController.dispose();
|
|
_magnetTimeController.dispose();
|
|
_volumeController.dispose();
|
|
_blowTimeController.dispose();
|
|
super.dispose();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final l10n = AppLocalizations.of(context);
|
|
|
|
return Padding(
|
|
padding: const EdgeInsets.all(24),
|
|
child: Form(
|
|
key: _formKey,
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
// 标题
|
|
Text(
|
|
widget.isNew ? '添加步骤' : '编辑步骤',
|
|
style: TextStyle(
|
|
color: AppTheme.textPrimary,
|
|
fontSize: 18,
|
|
fontWeight: FontWeight.w600,
|
|
),
|
|
),
|
|
const SizedBox(height: 24),
|
|
|
|
// 步骤名称
|
|
TextFormField(
|
|
controller: _nameController,
|
|
decoration: InputDecoration(
|
|
labelText: l10n?.stepName ?? '步骤名称',
|
|
hintText: '例如: 混合、吸磁、吹气',
|
|
border: OutlineInputBorder(borderRadius: BorderRadius.circular(8)),
|
|
),
|
|
validator: (value) {
|
|
if (value == null || value.trim().isEmpty) {
|
|
return '请输入步骤名称';
|
|
}
|
|
return null;
|
|
},
|
|
),
|
|
const SizedBox(height: 16),
|
|
|
|
// 孔位选择
|
|
Row(
|
|
children: [
|
|
Text(l10n?.position ?? '孔位', style: TextStyle(color: AppTheme.textPrimary)),
|
|
const SizedBox(width: 16),
|
|
Expanded(
|
|
child: DropdownButtonFormField<String>(
|
|
value: _position,
|
|
decoration: InputDecoration(
|
|
border: OutlineInputBorder(borderRadius: BorderRadius.circular(8)),
|
|
),
|
|
items: Constants.positions.map((p) => DropdownMenuItem(value: p, child: Text(p))).toList(),
|
|
onChanged: (value) {
|
|
if (value != null) setState(() => _position = value);
|
|
},
|
|
),
|
|
),
|
|
],
|
|
),
|
|
const SizedBox(height: 16),
|
|
|
|
// 时间参数行
|
|
Row(
|
|
children: [
|
|
Expanded(
|
|
child: TextFormField(
|
|
controller: _mixTimeController,
|
|
decoration: InputDecoration(
|
|
labelText: '${l10n?.mixTime ?? '混合时间'} (${Constants.timeUnitSeconds})',
|
|
border: OutlineInputBorder(borderRadius: BorderRadius.circular(8)),
|
|
),
|
|
keyboardType: TextInputType.number,
|
|
),
|
|
),
|
|
const SizedBox(width: 16),
|
|
Expanded(
|
|
child: TextFormField(
|
|
controller: _magnetTimeController,
|
|
decoration: InputDecoration(
|
|
labelText: '${l10n?.magnetTime ?? '吸磁时间'} (${Constants.timeUnitSeconds})',
|
|
border: OutlineInputBorder(borderRadius: BorderRadius.circular(8)),
|
|
),
|
|
keyboardType: TextInputType.number,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
const SizedBox(height: 16),
|
|
|
|
// 容积和吹气时间
|
|
Row(
|
|
children: [
|
|
Expanded(
|
|
child: TextFormField(
|
|
controller: _volumeController,
|
|
decoration: InputDecoration(
|
|
labelText: '${l10n?.volume ?? '容积'} (${Constants.volumeUnit})',
|
|
border: OutlineInputBorder(borderRadius: BorderRadius.circular(8)),
|
|
),
|
|
keyboardType: TextInputType.number,
|
|
),
|
|
),
|
|
const SizedBox(width: 16),
|
|
Expanded(
|
|
child: TextFormField(
|
|
controller: _blowTimeController,
|
|
decoration: InputDecoration(
|
|
labelText: '${l10n?.blowTime ?? '吹气时间'} (${Constants.timeUnitMinutes})',
|
|
border: OutlineInputBorder(borderRadius: BorderRadius.circular(8)),
|
|
),
|
|
keyboardType: TextInputType.number,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
const SizedBox(height: 16),
|
|
|
|
// 速度滑块
|
|
Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
'${l10n?.speed ?? '速度'}: $_speed 档',
|
|
style: TextStyle(color: AppTheme.textPrimary),
|
|
),
|
|
Slider(
|
|
value: _speed.toDouble(),
|
|
min: 1,
|
|
max: 10,
|
|
divisions: 9,
|
|
activeColor: AppTheme.primaryColor,
|
|
onChanged: (value) {
|
|
setState(() => _speed = value.round());
|
|
},
|
|
),
|
|
],
|
|
),
|
|
|
|
const SizedBox(height: 24),
|
|
|
|
// 保存按钮
|
|
CommonButton(
|
|
text: l10n?.save ?? '保存',
|
|
icon: Icons.save,
|
|
type: ButtonType.primary,
|
|
onPressed: _saveStep,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
/// 保存步骤
|
|
void _saveStep() {
|
|
if (!_formKey.currentState!.validate()) return;
|
|
|
|
final step = models.Step(
|
|
id: widget.step?.id,
|
|
programId: widget.programId,
|
|
stepNo: widget.step?.stepNo ?? 1,
|
|
position: _position,
|
|
name: _nameController.text.trim(),
|
|
mixTime: int.tryParse(_mixTimeController.text) ?? 0,
|
|
magnetTime: int.tryParse(_magnetTimeController.text) ?? 0,
|
|
volume: int.tryParse(_volumeController.text) ?? 0,
|
|
blowTime: int.tryParse(_blowTimeController.text) ?? 0,
|
|
speed: _speed,
|
|
);
|
|
|
|
widget.onSave(step);
|
|
}
|
|
} |