mirror of
https://github.com/wger-project/flutter.git
synced 2026-02-18 00:17:48 +01:00
140 lines
4.0 KiB
Dart
140 lines
4.0 KiB
Dart
/*
|
|
* This file is part of wger Workout Manager <https://github.com/wger-project>.
|
|
* Copyright (C) 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:json_annotation/json_annotation.dart';
|
|
import 'package:wger/helpers/consts.dart';
|
|
import 'package:wger/helpers/json.dart';
|
|
import 'package:wger/models/exercises/exercise.dart';
|
|
import 'package:wger/models/workouts/repetition_unit.dart';
|
|
import 'package:wger/models/workouts/weight_unit.dart';
|
|
|
|
part 'set_config_data.g.dart';
|
|
|
|
@JsonSerializable()
|
|
class SetConfigData {
|
|
@JsonKey(required: true, name: 'exercise')
|
|
late int exerciseId;
|
|
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
late Exercise exercise;
|
|
|
|
@JsonKey(required: true, name: 'slot_entry_id')
|
|
late int slotEntryId;
|
|
|
|
@JsonKey(required: true)
|
|
late String type;
|
|
|
|
@JsonKey(required: true, name: 'text_repr')
|
|
late String textRepr;
|
|
|
|
@JsonKey(required: true, name: 'sets')
|
|
late num? nrOfSets;
|
|
|
|
@JsonKey(required: true, name: 'max_sets')
|
|
late num? maxNrOfSets;
|
|
|
|
@JsonKey(required: true, fromJson: stringToNumNull)
|
|
late num? weight;
|
|
|
|
@JsonKey(required: true, name: 'max_weight', fromJson: stringToNumNull)
|
|
late num? maxWeight;
|
|
|
|
@JsonKey(required: true, name: 'weight_unit')
|
|
late int? weightUnitId;
|
|
|
|
@JsonKey(includeToJson: false, includeFromJson: false)
|
|
late WeightUnit? weightUnit;
|
|
|
|
@JsonKey(required: true, name: 'weight_rounding', fromJson: stringToNumNull)
|
|
late num? weightRounding;
|
|
|
|
@JsonKey(required: true, name: 'repetitions', fromJson: stringToNumNull)
|
|
late num? repetitions;
|
|
|
|
@JsonKey(required: true, name: 'max_repetitions', fromJson: stringToNumNull)
|
|
late num? maxRepetitions;
|
|
|
|
@JsonKey(required: true, name: 'repetitions_unit')
|
|
late int? repetitionsUnitId;
|
|
|
|
@JsonKey(includeToJson: false, includeFromJson: false)
|
|
late RepetitionUnit? repetitionsUnit;
|
|
|
|
@JsonKey(required: true, name: 'repetitions_rounding', fromJson: stringToNumNull)
|
|
late num? repetitionsRounding;
|
|
|
|
@JsonKey(required: true, fromJson: stringToNumNull)
|
|
late num? rir;
|
|
|
|
@JsonKey(required: true, name: 'max_rir', fromJson: stringToNumNull)
|
|
late num? maxRir;
|
|
|
|
@JsonKey(required: true)
|
|
late num? rpe;
|
|
|
|
@JsonKey(required: true, name: 'rest', fromJson: stringToNumNull)
|
|
late num? restTime;
|
|
|
|
@JsonKey(required: true, name: 'max_rest', fromJson: stringToNumNull)
|
|
late num? maxRestTime;
|
|
|
|
@JsonKey(required: true)
|
|
late String comment;
|
|
|
|
SetConfigData({
|
|
required this.exerciseId,
|
|
required this.slotEntryId,
|
|
this.type = 'normal',
|
|
required this.nrOfSets,
|
|
this.maxNrOfSets,
|
|
required this.weight,
|
|
this.maxWeight,
|
|
this.weightUnitId = WEIGHT_UNIT_KG,
|
|
this.weightRounding = 1.25,
|
|
required this.repetitions,
|
|
this.maxRepetitions,
|
|
this.repetitionsUnitId = REP_UNIT_REPETITIONS_ID,
|
|
this.repetitionsRounding = 1,
|
|
required this.rir,
|
|
this.maxRir,
|
|
required this.rpe,
|
|
required this.restTime,
|
|
this.maxRestTime,
|
|
this.comment = '',
|
|
this.textRepr = '',
|
|
Exercise? exercise,
|
|
WeightUnit? weightUnit,
|
|
RepetitionUnit? repetitionsUnit,
|
|
}) {
|
|
if (exercise != null) {
|
|
this.exercise = exercise;
|
|
}
|
|
if (weightUnit != null) {
|
|
this.weightUnit = weightUnit;
|
|
}
|
|
if (repetitionsUnit != null) {
|
|
this.repetitionsUnit = repetitionsUnit;
|
|
}
|
|
}
|
|
|
|
// Boilerplate
|
|
factory SetConfigData.fromJson(Map<String, dynamic> json) => _$SetConfigDataFromJson(json);
|
|
|
|
Map<String, dynamic> toJson() => _$SetConfigDataToJson(this);
|
|
}
|