Files
flutter/lib/models/exercises/base.dart
Roland Geider f834950cec Workout logs and settings now have a reference to an exercise base
This puts this code in sync with the backend and is logically better, since
the translations can be displayed when needed and are not hard coded
2022-05-10 16:53:44 +02:00

163 lines
4.5 KiB
Dart

/*
* This file is part of wger Workout Manager <https://github.com/wger-project>.
* Copyright (C) 2020, 2021 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:equatable/equatable.dart';
import 'package:json_annotation/json_annotation.dart';
import 'package:wger/helpers/consts.dart';
import 'package:wger/models/exercises/category.dart';
import 'package:wger/models/exercises/equipment.dart';
import 'package:wger/models/exercises/exercise.dart';
import 'package:wger/models/exercises/image.dart';
import 'package:wger/models/exercises/muscle.dart';
import 'package:wger/models/exercises/video.dart';
part 'base.g.dart';
@JsonSerializable(explicitToJson: true)
class ExerciseBase extends Equatable {
@JsonKey(required: true)
final int? id;
@JsonKey(required: true)
final String? uuid;
@JsonKey(required: true, name: 'variations')
final int? variationId;
@JsonKey(required: true, name: 'creation_date')
final DateTime? creationDate;
@JsonKey(required: true, name: 'update_date')
final DateTime? updateDate;
@JsonKey(required: true, name: 'category')
late int categoryId;
@JsonKey(ignore: true)
late final ExerciseCategory category;
@JsonKey(required: true, name: 'muscles')
List<int> musclesIds = [];
@JsonKey(ignore: true)
List<Muscle> muscles = [];
@JsonKey(required: true, name: 'muscles_secondary')
List<int> musclesSecondaryIds = [];
@JsonKey(ignore: true)
List<Muscle> musclesSecondary = [];
@JsonKey(required: true, name: 'equipment')
List<int> equipmentIds = [];
@JsonKey(ignore: true)
List<Equipment> equipment = [];
@JsonKey(ignore: true)
List<ExerciseImage> images = [];
@JsonKey(ignore: true)
List<Exercise> exercises = [];
@JsonKey(ignore: true)
List<Video> videos = [];
ExerciseBase({
this.id,
this.uuid,
this.creationDate,
this.updateDate,
this.variationId,
List<Muscle>? muscles,
List<Muscle>? musclesSecondary,
List<Equipment>? equipment,
List<ExerciseImage>? images,
ExerciseCategory? category,
}) {
this.images = images ?? [];
this.equipment = equipment ?? [];
if (category != null) {
this.category = category;
categoryId = category.id;
}
if (muscles != null) {
this.muscles = muscles;
musclesIds = muscles.map((e) => e.id).toList();
}
if (musclesSecondary != null) {
this.musclesSecondary = musclesSecondary;
musclesSecondaryIds = musclesSecondary.map((e) => e.id).toList();
}
if (equipment != null) {
this.equipment = equipment;
equipmentIds = equipment.map((e) => e.id).toList();
}
}
/// Returns exercises for the given language
///
/// If no translation is found, English will be returned
///
/// Note: we return the first translation as a fallback if we don't find a
/// translation in English. This is something that should never happen,
/// but we can't make sure that no local installation hasn't deleted
/// the entry in English.
Exercise getExercise(String language) {
return exercises.firstWhere(
(e) => e.languageObj.shortName == language,
orElse: () => exercises.firstWhere(
(e) => e.languageObj.shortName == LANGUAGE_SHORT_ENGLISH,
orElse: () => exercises.first,
),
);
}
ExerciseImage? get getMainImage {
try {
return images.firstWhere((image) => image.isMain);
} on StateError {
return null;
}
}
set setCategory(ExerciseCategory category) {
categoryId = category.id;
this.category = category;
}
// Boilerplate
factory ExerciseBase.fromJson(Map<String, dynamic> json) => _$ExerciseBaseFromJson(json);
Map<String, dynamic> toJson() => _$ExerciseBaseToJson(this);
@override
List<Object?> get props => [
id,
uuid,
creationDate,
updateDate,
category,
equipment,
muscles,
musclesSecondary,
];
}