mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 01:06:21 +01:00
114 lines
3.2 KiB
Dart
114 lines
3.2 KiB
Dart
import 'package:bloc/bloc.dart';
|
|
import 'package:kiwi/kiwi.dart';
|
|
import 'package:logging/logging.dart';
|
|
import 'package:nc_photos/account.dart';
|
|
import 'package:nc_photos/entity/person.dart';
|
|
import 'package:nc_photos/entity/person/data_source.dart';
|
|
|
|
abstract class ListPersonBlocEvent {
|
|
const ListPersonBlocEvent();
|
|
}
|
|
|
|
class ListPersonBlocQuery extends ListPersonBlocEvent {
|
|
const ListPersonBlocQuery(this.account);
|
|
|
|
@override
|
|
toString() {
|
|
return "$runtimeType {"
|
|
"account: $account, "
|
|
"}";
|
|
}
|
|
|
|
final Account account;
|
|
}
|
|
|
|
abstract class ListPersonBlocState {
|
|
const ListPersonBlocState(this.account, this.items);
|
|
|
|
@override
|
|
toString() {
|
|
return "$runtimeType {"
|
|
"account: $account, "
|
|
"items: List {length: ${items.length}}, "
|
|
"}";
|
|
}
|
|
|
|
final Account? account;
|
|
final List<Person> items;
|
|
}
|
|
|
|
class ListPersonBlocInit extends ListPersonBlocState {
|
|
ListPersonBlocInit() : super(null, const []);
|
|
}
|
|
|
|
class ListPersonBlocLoading extends ListPersonBlocState {
|
|
const ListPersonBlocLoading(Account? account, List<Person> items)
|
|
: super(account, items);
|
|
}
|
|
|
|
class ListPersonBlocSuccess extends ListPersonBlocState {
|
|
const ListPersonBlocSuccess(Account? account, List<Person> items)
|
|
: super(account, items);
|
|
}
|
|
|
|
class ListPersonBlocFailure extends ListPersonBlocState {
|
|
const ListPersonBlocFailure(
|
|
Account? account, List<Person> items, this.exception)
|
|
: super(account, items);
|
|
|
|
@override
|
|
toString() {
|
|
return "$runtimeType {"
|
|
"super: ${super.toString()}, "
|
|
"exception: $exception, "
|
|
"}";
|
|
}
|
|
|
|
final dynamic exception;
|
|
}
|
|
|
|
/// List all people recognized in an account
|
|
class ListPersonBloc extends Bloc<ListPersonBlocEvent, ListPersonBlocState> {
|
|
ListPersonBloc() : super(ListPersonBlocInit());
|
|
|
|
static ListPersonBloc of(Account account) {
|
|
final id =
|
|
"${account.scheme}://${account.username}@${account.address}?${account.roots.join('&')}";
|
|
try {
|
|
_log.fine("[of] Resolving bloc for '$id'");
|
|
return KiwiContainer().resolve<ListPersonBloc>("ListPersonBloc($id)");
|
|
} catch (_) {
|
|
// no created instance for this account, make a new one
|
|
_log.info("[of] New bloc instance for account: $account");
|
|
final bloc = ListPersonBloc();
|
|
KiwiContainer().registerInstance<ListPersonBloc>(bloc,
|
|
name: "ListPersonBloc($id)");
|
|
return bloc;
|
|
}
|
|
}
|
|
|
|
@override
|
|
mapEventToState(ListPersonBlocEvent event) async* {
|
|
_log.info("[mapEventToState] $event");
|
|
if (event is ListPersonBlocQuery) {
|
|
yield* _onEventQuery(event);
|
|
}
|
|
}
|
|
|
|
Stream<ListPersonBlocState> _onEventQuery(ListPersonBlocQuery ev) async* {
|
|
try {
|
|
yield ListPersonBlocLoading(ev.account, state.items);
|
|
yield ListPersonBlocSuccess(ev.account, await _query(ev));
|
|
} catch (e, stackTrace) {
|
|
_log.severe("[_onEventQuery] Exception while request", e, stackTrace);
|
|
yield ListPersonBlocFailure(ev.account, state.items, e);
|
|
}
|
|
}
|
|
|
|
Future<List<Person>> _query(ListPersonBlocQuery ev) {
|
|
const personRepo = PersonRepo(PersonRemoteDataSource());
|
|
return personRepo.list(ev.account);
|
|
}
|
|
|
|
static final _log = Logger("bloc.list_personListPersonBloc");
|
|
}
|