Files
flutter/lib/providers/gym_log_state.dart
Roland Geider fb6a673503 Simplify code by adding new log provider
This makes the logic for copying or modifying the logs much easier. Also,
there were some user reports that the old logic sometimes behaved erratically
and old values were sometimes reverted.
2026-01-12 21:40:11 +01:00

47 lines
1.4 KiB
Dart

/*
* This file is part of wger Workout Manager <https://github.com/wger-project>.
* Copyright (c) 2026 wger Team
*
* wger Workout Manager is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import 'package:logging/logging.dart';
import 'package:riverpod_annotation/riverpod_annotation.dart';
import 'package:wger/models/workouts/log.dart';
part 'gym_log_state.g.dart';
@Riverpod(keepAlive: true)
class GymLogNotifier extends _$GymLogNotifier {
final _logger = Logger('GymLogNotifier');
@override
Log? build() {
_logger.finer('Initializing GymLogNotifier');
return null;
}
void setLog(Log newLog) {
state = newLog;
}
void setWeight(num weight) {
state = state?.copyWith(weight: weight);
}
void setRepetitions(num repetitions) {
state = state?.copyWith(repetitions: repetitions);
}
}