feat: display posts of those a user follows on following page

This commit is contained in:
Stevan Freeborn
2023-09-15 21:56:41 -05:00
parent 29d280ea3f
commit 7e3a6170e3
6 changed files with 151 additions and 2 deletions
+70 -1
View File
@@ -1,4 +1,4 @@
import { paginationOptsValidator } from 'convex/server';
import { PaginationResult, paginationOptsValidator } from 'convex/server';
import { v } from 'convex/values';
import { PostWithUserDto } from '../src/app/types';
import { Id } from './_generated/dataModel';
@@ -203,3 +203,72 @@ export const getAllPostsWithUser = query({
return { ...posts, page: postsWithUser };
},
});
export const getAllPostsForFollowings = query({
args: { paginationOpts: paginationOptsValidator },
handler: async (ctx, args): Promise<PaginationResult<PostWithUserDto>> => {
const currentUser = await ctx.auth.getUserIdentity();
if (currentUser === null) {
return { isDone: true, continueCursor: '', page: [] };
}
const user = await userQuery(ctx, currentUser.subject);
if (user === null) {
return { isDone: true, continueCursor: '', page: [] };
}
const followings = await ctx.db
.query('follows')
.withIndex('by_follower', q => q.eq('follower', user._id))
.collect();
const posts = await ctx.db
.query('posts')
.filter(q =>
q.and(
q.or(
...followings.map(following =>
q.eq(q.field('userId'), following.following)
)
),
q.eq(q.field('parentPostId'), undefined)
)
)
.order('desc')
.paginate(args.paginationOpts);
const postsWithUser = await Promise.all(
posts.page.map(async post => {
const user = await ctx.db.get(post.userId);
if (user === null) {
return {
...post,
user: {
_id: '' as Id<'users'>,
_creationTime: 0,
clerkUsername: null,
clerkImageUrl: '',
clerkUserId: '',
},
};
}
return {
...post,
user: {
_id: user._id,
_creationTime: user._creationTime,
clerkUsername: user.clerkUser.username,
clerkImageUrl: user.clerkUser.image_url,
clerkUserId: user.clerkUser.id,
},
};
})
);
return { ...posts, page: postsWithUser };
},
});