Equipment profiles issues (#112)

* Fixed equipment profiles sections collapsing

* Fixed range picker dialog

* Refined equipment profiles sections handling
This commit is contained in:
Vadim 2023-09-02 22:29:35 +02:00 committed by GitHub
parent bf3c8aa7c7
commit f39177919c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 70 additions and 41 deletions

View file

@ -68,8 +68,8 @@ class _DialogRangePickerState<T extends PhotographyValue> extends State<DialogRa
divisions: widget.values.length - 1, divisions: widget.values.length - 1,
onChanged: (value) { onChanged: (value) {
setState(() { setState(() {
_start = value.start.toInt(); _start = value.start.round();
_end = value.end.toInt(); _end = value.end.round();
}); });
}, },
), ),

View file

@ -143,10 +143,13 @@ class EquipmentProfileContainerState extends State<EquipmentProfileContainer>
widget.onExpand(); widget.onExpand();
_controller.forward(); _controller.forward();
SchedulerBinding.instance.addPostFrameCallback((_) { SchedulerBinding.instance.addPostFrameCallback((_) {
Scrollable.ensureVisible( Future.delayed(_controller.duration!).then((_) {
context, Scrollable.ensureVisible(
alignmentPolicy: ScrollPositionAlignmentPolicy.keepVisibleAtEnd, context,
); alignmentPolicy: ScrollPositionAlignmentPolicy.keepVisibleAtEnd,
duration: _controller.duration!,
);
});
}); });
} }

View file

@ -17,17 +17,13 @@ class EquipmentProfilesScreen extends StatefulWidget {
} }
class _EquipmentProfilesScreenState extends State<EquipmentProfilesScreen> { class _EquipmentProfilesScreenState extends State<EquipmentProfilesScreen> {
static const maxProfiles = 5 + 1; // replace with a constant from iap final Map<String, GlobalKey<EquipmentProfileContainerState>> keysMap = {};
int get profilesCount => keysMap.length;
late List<GlobalKey<EquipmentProfileContainerState>> profileContainersKeys = [];
int get profilesCount => EquipmentProfiles.of(context).length;
@override @override
void didChangeDependencies() { void didChangeDependencies() {
super.didChangeDependencies(); super.didChangeDependencies();
profileContainersKeys = EquipmentProfiles.of(context) _updateProfilesKeys();
.map((e) => GlobalKey<EquipmentProfileContainerState>(debugLabel: e.id))
.toList();
} }
@override @override
@ -35,11 +31,10 @@ class _EquipmentProfilesScreenState extends State<EquipmentProfilesScreen> {
return SliverScreen( return SliverScreen(
title: S.of(context).equipmentProfiles, title: S.of(context).equipmentProfiles,
appBarActions: [ appBarActions: [
if (profilesCount < maxProfiles) IconButton(
IconButton( onPressed: _addProfile,
onPressed: _addProfile, icon: const Icon(Icons.add),
icon: const Icon(Icons.add), ),
),
IconButton( IconButton(
onPressed: Navigator.of(context).pop, onPressed: Navigator.of(context).pop,
icon: const Icon(Icons.close), icon: const Icon(Icons.close),
@ -55,24 +50,30 @@ class _EquipmentProfilesScreenState extends State<EquipmentProfilesScreen> {
: [ : [
SliverList( SliverList(
delegate: SliverChildBuilderDelegate( delegate: SliverChildBuilderDelegate(
(context, index) => index > 0 // skip default (context, index) {
? Padding( if (index == 0) {
padding: EdgeInsets.fromLTRB( // skip default profile
Dimens.paddingM, return const SizedBox.shrink();
index == 0 ? Dimens.paddingM : 0, }
Dimens.paddingM,
Dimens.paddingM, final profile = EquipmentProfiles.of(context)[index];
), return Padding(
child: EquipmentProfileContainer( padding: EdgeInsets.fromLTRB(
key: profileContainersKeys[index], Dimens.paddingM,
data: EquipmentProfiles.of(context)[index], index == 0 ? Dimens.paddingM : 0,
onExpand: () => _keepExpandedAt(index), Dimens.paddingM,
onUpdate: (profileData) => _updateProfileAt(profileData, index), Dimens.paddingM,
onDelete: () => _removeProfileAt(index), ),
), child: EquipmentProfileContainer(
) key: keysMap[profile.id],
: const SizedBox.shrink(), data: profile,
childCount: profilesCount, onExpand: () => _keepExpandedAt(index),
onUpdate: _updateProfileAt,
onDelete: () => _removeProfileAt(profile),
),
);
},
childCount: EquipmentProfiles.of(context).length,
), ),
), ),
SliverToBoxAdapter(child: SizedBox(height: MediaQuery.paddingOf(context).bottom)), SliverToBoxAdapter(child: SizedBox(height: MediaQuery.paddingOf(context).bottom)),
@ -91,22 +92,47 @@ class _EquipmentProfilesScreenState extends State<EquipmentProfilesScreen> {
}); });
} }
void _updateProfileAt(EquipmentProfile data, int index) { void _updateProfileAt(EquipmentProfile data) {
EquipmentProfileProvider.of(context).updateProdile(data); EquipmentProfileProvider.of(context).updateProdile(data);
} }
void _removeProfileAt(int index) { void _removeProfileAt(EquipmentProfile data) {
EquipmentProfileProvider.of(context).deleteProfile(EquipmentProfiles.of(context)[index]); EquipmentProfileProvider.of(context).deleteProfile(data);
} }
void _keepExpandedAt(int index) { void _keepExpandedAt(int index) {
profileContainersKeys.getRange(0, index).forEach((element) { keysMap.values.toList().getRange(0, index).forEach((element) {
element.currentState?.collapse(); element.currentState?.collapse();
}); });
profileContainersKeys.getRange(index + 1, profilesCount).forEach((element) { keysMap.values.toList().getRange(index + 1, profilesCount).forEach((element) {
element.currentState?.collapse(); element.currentState?.collapse();
}); });
} }
void _updateProfilesKeys() {
final profiles = EquipmentProfiles.of(context);
if (profiles.length > keysMap.length) {
// profile added
final List<String> idsToAdd = [];
for (final profile in profiles) {
if (!keysMap.keys.contains(profile.id)) idsToAdd.add(profile.id);
}
for (final id in idsToAdd) {
keysMap[id] = GlobalKey<EquipmentProfileContainerState>(debugLabel: id);
}
idsToAdd.clear();
} else if (profiles.length < keysMap.length) {
// profile deleted
final List<String> idsToDelete = [];
for (final id in keysMap.keys) {
if (!profiles.any((p) => p.id == id)) idsToDelete.add(id);
}
idsToDelete.forEach(keysMap.remove);
idsToDelete.clear();
} else {
// profile updated, no need to updated keys
}
}
} }
class _EquipmentProfilesListPlaceholder extends StatelessWidget { class _EquipmentProfilesListPlaceholder extends StatelessWidget {