GIF support #5

Merged
astra merged 2 commits from astra/gifs into main 2025-05-10 15:52:44 +00:00
2 changed files with 12 additions and 0 deletions
Showing only changes of commit a26f0383a8 - Show all commits

View file

@ -141,6 +141,13 @@
controls
></video>
{/if}
{#if post.gifLink}
<img
id="embedVideo"
src="{post.gifLink}"
alt="Post GIF"
/>
{/if}
</div>
</div>

View file

@ -46,6 +46,7 @@ class Post {
replyingUri: atUriObject | null;
imagesCid: string[] | null;
videosLinkCid: string | null;
gifLink: string | null;
constructor(
record: ComAtprotoRepoListRecords.Record,
@ -69,6 +70,7 @@ class Post {
this.quotingUri = null;
this.imagesCid = null;
this.videosLinkCid = null;
this.gifLink = null;
switch (post.embed?.$type) {
case "app.bsky.embed.images":
this.imagesCid = post.embed.images.map(
@ -96,6 +98,9 @@ class Post {
break;
}
break;
case "app.bsky.embed.external": // assuming that external embeds are gifs for now
this.gifLink = post.embed.external.uri;
break;
}
}
}