Record germination tests on a lot and surface the result. - GerminationEntry model with a derived rate (germinated / sample). VarietyLot carries its tests (most-recent first) and exposes latestGerminationRate. - VarietyRepository.addGerminationTest; watchVariety now also re-emits on germination-test changes, so the detail refreshes live. - Detail UI: each lot shows a germination % badge and a grass action that opens a sheet listing past tests and adding a new one (germinated + sample size). i18n strings (ES/EN). Tests: derived-rate + reactivity at the repository, and a widget test for the record-test → badge flow. Full suite: 35 passing, 0 skipped.
83 lines
2.1 KiB
Dart
83 lines
2.1 KiB
Dart
import 'dart:async';
|
|
|
|
import 'package:commons_core/commons_core.dart';
|
|
import 'package:equatable/equatable.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
|
|
import '../data/variety_repository.dart';
|
|
|
|
class VarietyDetailState extends Equatable {
|
|
const VarietyDetailState({
|
|
this.detail,
|
|
this.loading = true,
|
|
this.deleted = false,
|
|
});
|
|
|
|
final VarietyDetail? detail;
|
|
final bool loading;
|
|
final bool deleted;
|
|
|
|
@override
|
|
List<Object?> get props => [detail, loading, deleted];
|
|
}
|
|
|
|
/// Streams one variety's detail and edits it through the repository.
|
|
class VarietyDetailCubit extends Cubit<VarietyDetailState> {
|
|
VarietyDetailCubit(this._repo, this.varietyId)
|
|
: super(const VarietyDetailState()) {
|
|
_sub = _repo
|
|
.watchVariety(varietyId)
|
|
.listen(
|
|
(d) => emit(
|
|
VarietyDetailState(
|
|
detail: d,
|
|
loading: false,
|
|
deleted: state.deleted,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
final VarietyRepository _repo;
|
|
final String varietyId;
|
|
late final StreamSubscription<VarietyDetail?> _sub;
|
|
|
|
Future<void> updateFields({String? label, String? category, String? notes}) =>
|
|
_repo.updateVariety(
|
|
id: varietyId,
|
|
label: label,
|
|
category: category,
|
|
notes: notes,
|
|
);
|
|
|
|
Future<void> addLot({int? year, Quantity? quantity}) =>
|
|
_repo.addLot(varietyId: varietyId, harvestYear: year, quantity: quantity);
|
|
|
|
Future<void> linkSpecies(String speciesId) =>
|
|
_repo.linkSpecies(varietyId, speciesId);
|
|
|
|
Future<void> addGerminationTest({
|
|
required String lotId,
|
|
int? testedOn,
|
|
int? sampleSize,
|
|
int? germinatedCount,
|
|
}) => _repo.addGerminationTest(
|
|
lotId: lotId,
|
|
testedOn: testedOn,
|
|
sampleSize: sampleSize,
|
|
germinatedCount: germinatedCount,
|
|
);
|
|
|
|
Future<void> deleteVariety() async {
|
|
await _repo.softDeleteVariety(varietyId);
|
|
emit(
|
|
VarietyDetailState(detail: state.detail, loading: false, deleted: true),
|
|
);
|
|
}
|
|
|
|
@override
|
|
Future<void> close() async {
|
|
await _sub.cancel();
|
|
return super.close();
|
|
}
|
|
}
|