part of '../neon_notifications.dart'; abstract interface class NotificationsBlocEvents { void deleteNotification(final int id); void deleteAllNotifications(); } abstract interface class NotificationsBlocStates { BehaviorSubject>> get notificationsList; BehaviorSubject get unreadCounter; } class NotificationsBloc extends InteractiveBloc implements NotificationsBlocInterface, NotificationsBlocEvents, NotificationsBlocStates { NotificationsBloc( this.options, this._account, ) { notificationsList.listen((final result) { if (result.hasData) { unreadCounter.add(result.requireData.length); } }); unawaited(refresh()); _timer = TimerBloc().registerTimer(const Duration(seconds: 30), refresh); } @override final NotificationsAppSpecificOptions options; final Account _account; late final NeonTimer _timer; @override void dispose() { _timer.cancel(); unawaited(notificationsList.close()); unawaited(unreadCounter.close()); super.dispose(); } @override BehaviorSubject>> notificationsList = BehaviorSubject>>(); @override BehaviorSubject unreadCounter = BehaviorSubject(); @override Future refresh() async { await RequestManager.instance.wrapNextcloud, notifications.EndpointListNotificationsResponseApplicationJson, void>( _account.id, 'notifications-notifications', notificationsList, _account.client.notifications.endpoint.listNotificationsRaw(), (final response) => response.body.ocs.data.toList(), ); } @override void deleteAllNotifications() { wrapAction(() async => _account.client.notifications.endpoint.deleteAllNotifications()); } @override void deleteNotification(final int id) { wrapAction(() async => _account.client.notifications.endpoint.deleteNotification(id: id)); } }