mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-21 15:00:40 +00:00
30418a9cfd
* integrated `EquipmentProfilesStorageService` * implemented `EquipmentProfileEditScreen` * added equipment profiles screens to navigation * fixed tests * fixed splashscreen removal * replaced old `EquipmentProfilesScreen` * typo * use outlined icons * fixed storage mock for integration tests * recovered copy feature for profiles * added profile deletion to e2e test * added translations * added film translations * wip * add ability to toggle equipment profiles * lints * fixed tests * sync with iap rename * use `Toggleable` from resources * use iap 2.1.0 * use outlined edit icon
110 lines
3.9 KiB
Dart
110 lines
3.9 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:lightmeter/generated/l10n.dart';
|
|
import 'package:lightmeter/navigation/routes.dart';
|
|
import 'package:lightmeter/providers/equipment_profile_provider.dart';
|
|
import 'package:lightmeter/res/dimens.dart';
|
|
import 'package:lightmeter/screens/equipment_profile_edit/flow_equipment_profile_edit.dart';
|
|
import 'package:lightmeter/screens/shared/sliver_placeholder/widget_sliver_placeholder.dart';
|
|
import 'package:lightmeter/screens/shared/sliver_screen/screen_sliver.dart';
|
|
import 'package:m3_lightmeter_resources/m3_lightmeter_resources.dart';
|
|
|
|
class EquipmentProfilesScreen extends StatefulWidget {
|
|
const EquipmentProfilesScreen({super.key});
|
|
|
|
@override
|
|
State<EquipmentProfilesScreen> createState() => _EquipmentProfilesScreenState();
|
|
}
|
|
|
|
class _EquipmentProfilesScreenState extends State<EquipmentProfilesScreen> with SingleTickerProviderStateMixin {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SliverScreen(
|
|
title: Text(S.of(context).equipmentProfiles),
|
|
appBarActions: [
|
|
IconButton(
|
|
onPressed: _addProfile,
|
|
icon: const Icon(Icons.add_outlined),
|
|
tooltip: S.of(context).tooltipAdd,
|
|
),
|
|
],
|
|
slivers: [
|
|
if (EquipmentProfiles.of(context).length > 1)
|
|
_EquipmentProfilesListBuilder(
|
|
values: EquipmentProfiles.of(context).skip(1).toList(),
|
|
onEdit: _editProfile,
|
|
onCheckbox: EquipmentProfilesProvider.of(context).toggleProfile,
|
|
)
|
|
else
|
|
SliverPlaceholder(onTap: _addProfile),
|
|
],
|
|
);
|
|
}
|
|
|
|
void _addProfile() {
|
|
Navigator.of(context).pushNamed(
|
|
NavigationRoutes.equipmentProfileEditScreen.name,
|
|
arguments: const EquipmentProfileEditArgs(editType: EquipmentProfileEditType.add),
|
|
);
|
|
}
|
|
|
|
void _editProfile(EquipmentProfile profile) {
|
|
Navigator.of(context).pushNamed(
|
|
NavigationRoutes.equipmentProfileEditScreen.name,
|
|
arguments: EquipmentProfileEditArgs(
|
|
editType: EquipmentProfileEditType.edit,
|
|
profile: profile,
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class _EquipmentProfilesListBuilder extends StatelessWidget {
|
|
final List<EquipmentProfile> values;
|
|
final void Function(EquipmentProfile film) onEdit;
|
|
final void Function(EquipmentProfile film, bool value) onCheckbox;
|
|
|
|
const _EquipmentProfilesListBuilder({
|
|
required this.values,
|
|
required this.onEdit,
|
|
required this.onCheckbox,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SliverList.builder(
|
|
itemCount: values.length,
|
|
itemBuilder: (_, index) => Padding(
|
|
padding: EdgeInsets.fromLTRB(
|
|
Dimens.paddingM,
|
|
index == 0 ? Dimens.paddingM : 0,
|
|
Dimens.paddingM,
|
|
index == values.length - 1 ? Dimens.paddingM + MediaQuery.paddingOf(context).bottom : 0.0,
|
|
),
|
|
child: Card(
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.vertical(
|
|
top: index == 0 ? const Radius.circular(Dimens.borderRadiusL) : Radius.zero,
|
|
bottom: index == values.length - 1 ? const Radius.circular(Dimens.borderRadiusL) : Radius.zero,
|
|
),
|
|
),
|
|
child: Padding(
|
|
padding: EdgeInsets.only(
|
|
top: index == 0 ? Dimens.paddingM : 0.0,
|
|
bottom: index == values.length - 1 ? Dimens.paddingM : 0.0,
|
|
),
|
|
child: CheckboxListTile(
|
|
title: Text(values[index].name),
|
|
controlAffinity: ListTileControlAffinity.leading,
|
|
value: EquipmentProfiles.inUseOf(context).contains(values[index]),
|
|
onChanged: (value) => onCheckbox(values[index], value ?? false),
|
|
secondary: IconButton(
|
|
onPressed: () => onEdit(values[index]),
|
|
icon: const Icon(Icons.edit_outlined),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|