Skip to content

fix: filter repositories to only include active content #52

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lib/content_management/bloc/content_management_bloc.dart
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ class ContentManagementBloc
final previousHeadlines = isPaginating ? state.headlines : <Headline>[];

final paginatedHeadlines = await _headlinesRepository.readAll(
filter: {'status': ContentStatus.active.name},
sort: [const SortOption('updatedAt', SortOrder.desc)],
pagination: PaginationOptions(
cursor: event.startAfterId,
Expand Down Expand Up @@ -153,6 +154,7 @@ class ContentManagementBloc
final previousTopics = isPaginating ? state.topics : <Topic>[];

final paginatedTopics = await _topicsRepository.readAll(
filter: {'status': ContentStatus.active.name},
sort: [const SortOption('updatedAt', SortOrder.desc)],
pagination: PaginationOptions(
cursor: event.startAfterId,
Expand Down Expand Up @@ -245,6 +247,7 @@ class ContentManagementBloc
final previousSources = isPaginating ? state.sources : <Source>[];

final paginatedSources = await _sourcesRepository.readAll(
filter: {'status': ContentStatus.active.name},
sort: [const SortOption('updatedAt', SortOrder.desc)],
pagination: PaginationOptions(
cursor: event.startAfterId,
Expand Down
Loading