Spaces:
Runtime error
Runtime error
File size: 846 Bytes
b2d7d99 955e8e9 65dda73 b2d7d99 65dda73 b2d7d99 65dda73 b2d7d99 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
import { postDirFilePath } from "../config.mts"
import { Post, PostVisibility } from "../types.mts"
import { getValidNumber } from "../utils/getValidNumber.mts"
import { shuffleArray } from "../utils/shuffleArray.mts"
import { readPostFiles } from "./readPostFiles.mts"
export const getAppPosts = async ({
appId,
limit,
visibility,
shuffle
}: {
appId: string
limit?: number
visibility?: PostVisibility
shuffle?: boolean
}): Promise<Post[]> => {
const posts = await readPostFiles(postDirFilePath, appId)
const visiblePosts = visibility
? posts.filter(post => post.visibility === visibility)
: posts
const sortedPosts = shuffle
? shuffleArray(visiblePosts)
: visiblePosts.sort((a, b) => Date.parse(b.createdAt) - Date.parse(a.createdAt))
return sortedPosts.slice(0, getValidNumber(limit, 1, 80, 20))
} |