From 20a1b64a1525286023c4072e9950e33b9e0181aa Mon Sep 17 00:00:00 2001 From: Michael Barrett Date: Thu, 9 Jan 2025 15:32:06 +0000 Subject: [PATCH] Handle null values for post content & excerpt in admin-x-activitypub (#21989) Handle null values for post content & excerpt in admin-x-activitypub refs [TryGhost/ActivityPub#245](https://github.com/TryGhost/ActivityPub/pull/245) In [TryGhost/ActivityPub#245](https://github.com/TryGhost/ActivityPub/pull/245) we changed the service to allow for `null` values for the `content` & `excerpt` field. This means we could potentially be passing `null` values to `stripHtml` which would cause the app to crash. This commit ensures we always pass a string to `stripHtml` as well as updating the types to reflect what the value can be --- apps/admin-x-activitypub/package.json | 2 +- apps/admin-x-activitypub/src/components/Activities.tsx | 2 +- .../src/components/feed/ArticleModal.tsx | 6 +++--- .../src/components/feed/FeedItem.tsx | 10 +++++----- apps/admin-x-framework/src/api/activitypub.ts | 4 ++-- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/apps/admin-x-activitypub/package.json b/apps/admin-x-activitypub/package.json index 81048bd919..15887166f8 100644 --- a/apps/admin-x-activitypub/package.json +++ b/apps/admin-x-activitypub/package.json @@ -1,6 +1,6 @@ { "name": "@tryghost/admin-x-activitypub", - "version": "0.3.42", + "version": "0.3.43", "license": "MIT", "repository": { "type": "git", diff --git a/apps/admin-x-activitypub/src/components/Activities.tsx b/apps/admin-x-activitypub/src/components/Activities.tsx index 24c0d6dfb3..b626bb85fc 100644 --- a/apps/admin-x-activitypub/src/components/Activities.tsx +++ b/apps/admin-x-activitypub/src/components/Activities.tsx @@ -148,7 +148,7 @@ const getGroupDescription = (group: GroupedActivity): JSX.Element => { return <>{actorText} liked your post {group.object?.name || ''}; case ACTIVITY_TYPE.CREATE: if (group.object?.inReplyTo && typeof group.object?.inReplyTo !== 'string') { - let content = stripHtml(group.object.inReplyTo.content); + let content = stripHtml(group.object.inReplyTo.content || ''); // If the post has a name, use that instead of the content (short // form posts do not have a name) diff --git a/apps/admin-x-activitypub/src/components/feed/ArticleModal.tsx b/apps/admin-x-activitypub/src/components/feed/ArticleModal.tsx index 5b3cd58153..e32490b370 100644 --- a/apps/admin-x-activitypub/src/components/feed/ArticleModal.tsx +++ b/apps/admin-x-activitypub/src/components/feed/ArticleModal.tsx @@ -660,11 +660,11 @@ const ArticleModal: React.FC = ({ {object.type === 'Article' && (
@@ -728,7 +728,7 @@ const ArticleModal: React.FC = ({ {modalSize === MODAL_SIZE_LG && object.type === 'Article' && (
- {getReadingTime(object.content)} + {getReadingTime(object.content ?? '')}
{readingProgress}% diff --git a/apps/admin-x-activitypub/src/components/feed/FeedItem.tsx b/apps/admin-x-activitypub/src/components/feed/FeedItem.tsx index a8f8194216..c857f16fe3 100644 --- a/apps/admin-x-activitypub/src/components/feed/FeedItem.tsx +++ b/apps/admin-x-activitypub/src/components/feed/FeedItem.tsx @@ -264,7 +264,7 @@ const FeedItem: React.FC = ({actor, object, layout, type, comment
{(object.type === 'Article') && renderFeedAttachment(object, layout)} {object.name && {object.name}} - {(object.preview && object.type === 'Article') ?
{object.preview.content}
:
} + {(object.preview && object.type === 'Article') ?
{object.preview.content}
:
} {(object.type === 'Note') && renderFeedAttachment(object, layout)} {(object.type === 'Article') &&
diff --git a/apps/admin-x-framework/src/api/activitypub.ts b/apps/admin-x-framework/src/api/activitypub.ts index c56531d8e0..bbb898e7c0 100644 --- a/apps/admin-x-framework/src/api/activitypub.ts +++ b/apps/admin-x-framework/src/api/activitypub.ts @@ -11,7 +11,7 @@ export type ObjectProperties = { '@context': string | (string | object)[]; type: 'Article' | 'Link' | 'Note'; name: string; - content: string; + content: string | null; url?: string | undefined; attributedTo?: object | string | object[] | undefined; image?: string | { @@ -20,7 +20,7 @@ export type ObjectProperties = { type?: string; }; published?: string; - preview?: {type: string, content: string}; + preview?: {type: string, content: string | null}; // eslint-disable-next-line @typescript-eslint/no-explicit-any [x: string]: any; }