mirror of
https://github.com/wger-project/flutter.git
synced 2026-02-18 00:17:48 +01:00
170 lines
5.5 KiB
Dart
170 lines
5.5 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:wger/helpers/consts.dart';
|
|
import 'package:wger/l10n/generated/app_localizations.dart';
|
|
import 'package:wger/providers/plate_weights.dart';
|
|
|
|
class PlateWeight extends StatelessWidget {
|
|
final num value;
|
|
final Color color;
|
|
final bool isSelected;
|
|
final double size;
|
|
final double padding;
|
|
final double margin;
|
|
|
|
const PlateWeight({
|
|
super.key,
|
|
required this.value,
|
|
required this.color,
|
|
this.isSelected = true,
|
|
this.size = 50,
|
|
this.padding = 8,
|
|
this.margin = 3,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SizedBox(
|
|
key: ValueKey('plateWeight-$value'),
|
|
height: size,
|
|
width: size,
|
|
child: Padding(
|
|
padding: EdgeInsets.all(padding),
|
|
child: Container(
|
|
alignment: Alignment.center,
|
|
margin: EdgeInsets.all(margin),
|
|
decoration: BoxDecoration(
|
|
color: isSelected ? color : Colors.black12,
|
|
shape: BoxShape.circle,
|
|
border: Border.all(color: Colors.black, width: isSelected ? 2 : 0),
|
|
),
|
|
child: FittedBox(
|
|
fit: BoxFit.scaleDown,
|
|
child: Text(
|
|
value.toString(),
|
|
textAlign: TextAlign.center,
|
|
style: TextStyle(
|
|
color: isSelected ? Colors.black : Colors.black87,
|
|
fontWeight: isSelected ? FontWeight.bold : FontWeight.normal,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class ConfigureAvailablePlates extends ConsumerStatefulWidget {
|
|
const ConfigureAvailablePlates({super.key});
|
|
|
|
@override
|
|
ConsumerState<ConfigureAvailablePlates> createState() => _AddPlateWeightsState();
|
|
}
|
|
|
|
class _AddPlateWeightsState extends ConsumerState<ConfigureAvailablePlates> {
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
|
ref.read(plateCalculatorProvider.notifier);
|
|
});
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final i18n = AppLocalizations.of(context);
|
|
|
|
final plateWeightsState = ref.watch(plateCalculatorProvider);
|
|
final plateWeightsNotifier = ref.read(plateCalculatorProvider.notifier);
|
|
// final userProvider = provider.Provider.of<UserProvider>(context);
|
|
|
|
return Column(
|
|
mainAxisSize: MainAxisSize.max,
|
|
children: [
|
|
Padding(
|
|
padding: const EdgeInsets.all(10),
|
|
child: DropdownMenu<WeightUnitEnum>(
|
|
key: const ValueKey('weightUnitDropdown'),
|
|
width: double.infinity,
|
|
initialSelection: plateWeightsState.isMetric ? WeightUnitEnum.kg : WeightUnitEnum.lb,
|
|
requestFocusOnTap: true,
|
|
label: Text(i18n.unit),
|
|
onSelected: (WeightUnitEnum? unit) {
|
|
if (unit == null) {
|
|
return;
|
|
}
|
|
plateWeightsNotifier.unitChange(unit: unit);
|
|
// userProvider.changeUnit(changeTo: unit.name);
|
|
// userProvider.saveProfile();
|
|
},
|
|
dropdownMenuEntries: WeightUnitEnum.values.map((unit) {
|
|
return DropdownMenuEntry<WeightUnitEnum>(
|
|
value: unit,
|
|
label: unit == WeightUnitEnum.kg ? i18n.kg : i18n.lb,
|
|
);
|
|
}).toList(),
|
|
),
|
|
),
|
|
Padding(
|
|
padding: const EdgeInsets.all(10),
|
|
child: DropdownMenu<num>(
|
|
key: const ValueKey('barWeightDropdown'),
|
|
width: double.infinity,
|
|
initialSelection: plateWeightsState.barWeight,
|
|
requestFocusOnTap: true,
|
|
label: Text(i18n.barWeight),
|
|
onSelected: (num? value) {
|
|
if (value == null) {
|
|
return;
|
|
}
|
|
plateWeightsNotifier.setBarWeight(value);
|
|
},
|
|
dropdownMenuEntries: plateWeightsState.availableBarsWeights.map((value) {
|
|
return DropdownMenuEntry<num>(
|
|
value: value,
|
|
label: value.toString(),
|
|
);
|
|
}).toList(),
|
|
),
|
|
),
|
|
SwitchListTile(
|
|
key: const ValueKey('useColorsSwitch'),
|
|
title: Text(i18n.useColors),
|
|
value: plateWeightsState.useColors,
|
|
onChanged: (state) => plateWeightsNotifier.setUseColors(state),
|
|
),
|
|
LayoutBuilder(
|
|
builder: (context, constraints) {
|
|
const double widthThreshold = 450.0;
|
|
final int crossAxisCount = constraints.maxWidth > widthThreshold ? 10 : 5;
|
|
return GridView.count(
|
|
crossAxisCount: crossAxisCount,
|
|
shrinkWrap: true,
|
|
physics: const NeverScrollableScrollPhysics(),
|
|
children: plateWeightsState.availablePlates.map((number) {
|
|
final bool isSelected = plateWeightsState.selectedPlates.contains(number);
|
|
return GestureDetector(
|
|
onTap: () => plateWeightsNotifier.toggleSelection(number),
|
|
child: PlateWeight(
|
|
value: number,
|
|
isSelected: isSelected,
|
|
color: plateWeightsState.getColor(number),
|
|
),
|
|
);
|
|
}).toList(),
|
|
);
|
|
},
|
|
),
|
|
FilledButton(
|
|
onPressed: () {
|
|
plateWeightsNotifier.saveToSharedPrefs();
|
|
Navigator.pop(context);
|
|
},
|
|
child: Text(i18n.save),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|