PIbd31_Teryokhin.A.S._PMU/lib/presentation/home_page/bloc/bloc.dart

39 lines
1.0 KiB
Dart
Raw Normal View History

2024-10-29 17:33:19 +04:00
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:pmu_lab_1/data/repositories/cats_repository.dart';
import 'package:pmu_lab_1/presentation/home_page/bloc/events.dart';
import 'package:pmu_lab_1/presentation/home_page/bloc/state.dart';
class HomeBloc extends Bloc<HomeEvent, HomeState> {
final CatsRepository repo;
HomeBloc(this.repo) : super(const HomeState()) {
on<HomeLoadDataEvent>(_onLoadData);
}
void _onLoadData(HomeLoadDataEvent event, Emitter<HomeState> emit) async {
if (event.nextPage == null) {
emit(state.copyWith(isLoading: true));
} else {
emit(state.copyWith(isPaginationLoading: true));
}
String? error;
final data = await repo.loadData(
q: event.search,
page: event.nextPage ?? 1,
onError: (e) => error = e,
);
if (event.nextPage != null) {
data?.data?.insertAll(0, state.data?.data ?? []);
}
emit(state.copyWith(
isLoading: false,
isPaginationLoading: false,
data: data,
error: error,
));
}
}