Files
flutter/lib/widgets/workouts/log.dart
Github-actions 7492b53c67 Automatic linting
2021-06-20 13:09:24 +00:00

96 lines
3.2 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.
*
* wger Workout Manager 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:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'package:intl/intl.dart';
import 'package:provider/provider.dart';
import 'package:wger/models/exercises/exercise.dart';
import 'package:wger/models/workouts/log.dart';
import 'package:wger/models/workouts/session.dart';
import 'package:wger/providers/workout_plans.dart';
import 'package:wger/widgets/workouts/charts.dart';
class ExerciseLogChart extends StatelessWidget {
final Exercise _exercise;
final DateTime _currentDate;
ExerciseLogChart(this._exercise, this._currentDate);
@override
Widget build(BuildContext context) {
final _workoutPlansData =
Provider.of<WorkoutPlansProvider>(context, listen: false);
final _workout = _workoutPlansData.currentPlan;
Future<Map<String, dynamic>> _getChartEntries(BuildContext context) async {
return await _workoutPlansData.fetchLogData(_workout!, _exercise);
}
return FutureBuilder(
future: _getChartEntries(context),
builder: (context, AsyncSnapshot<Map<String, dynamic>> snapshot) =>
Container(
height: 150,
child: snapshot.connectionState == ConnectionState.waiting
? Center(child: CircularProgressIndicator())
: LogChartWidget(snapshot.data, _currentDate),
),
);
}
}
class DayLogWidget extends StatelessWidget {
final DateTime _date;
final WorkoutSession? _session;
final Map<Exercise, List<Log>> _exerciseData;
DayLogWidget(this._date, this._exerciseData, this._session);
@override
Widget build(BuildContext context) {
return Card(
child: Column(
children: [
Text(
DateFormat.yMd(Localizations.localeOf(context).languageCode)
.format(_date),
style: Theme.of(context).textTheme.headline5,
),
if (_session != null) Text('Session data here'),
..._exerciseData.keys.map((exercise) {
return Column(
children: [
Text(
exercise.name,
style: Theme.of(context).textTheme.headline6,
),
..._exerciseData[exercise]!
.map((log) => Text(log.singleLogRepTextNoNl))
.toList(),
ExerciseLogChart(exercise, _date),
SizedBox(height: 30),
],
);
}).toList()
],
),
);
}
}