Removed inbox feed filtering by inReplyTo in admin-x-activitypub

refs [TryGhost/ActivityPub#166](https://github.com/TryGhost/ActivityPub/pull/166)

Removed the inbox feed filtering by `inReplyTo` in admin-x-activitypub that
was put in as a temporary measure when replies were being returned from the API
This commit is contained in:
Michael Barrett 2024-11-12 16:25:29 +00:00
parent f2444b08f3
commit e0eea35ab4
No known key found for this signature in database
2 changed files with 3 additions and 5 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@tryghost/admin-x-activitypub",
"version": "0.3.17",
"version": "0.3.18",
"license": "MIT",
"repository": {
"type": "git",

View File

@ -25,7 +25,7 @@ const Inbox: React.FC<InboxProps> = ({}) => {
includeOwn: true,
excludeNonFollowers: true,
filter: {
type: ['Create:Article', 'Create:Note', 'Announce:Note']
type: ['Create:Article:notReply', 'Create:Note:notReply', 'Announce:Note']
}
});
const {data, fetchNextPage, hasNextPage, isFetchingNextPage, isLoading} = getActivitiesQuery;
@ -35,9 +35,7 @@ const Inbox: React.FC<InboxProps> = ({}) => {
const {suggestedProfilesQuery} = useSuggestedProfiles('index', ['@index@activitypub.ghost.org', '@index@john.onolan.org', '@index@coffeecomplex.ghost.io', '@index@codename-jimmy.ghost.io', '@index@syphoncontinuity.ghost.io']);
const {data: suggested = [], isLoading: isLoadingSuggested} = suggestedProfilesQuery;
const activities = (data?.pages.flatMap(page => page.data) ?? []).filter((activity) => {
return !activity.object.inReplyTo;
});
const activities = (data?.pages.flatMap(page => page.data) ?? []);
// Intersection observer to fetch more activities when the user scrolls
// to the bottom of the page