feat: add API endpoints for fetching news by ID and slug, and update routing accordingly

This commit is contained in:
Ardeman
2025-03-24 13:42:36 +08:00
parent f2f49de86b
commit 1885eab4c3
6 changed files with 31 additions and 7 deletions
@@ -1,15 +1,15 @@
import { isRouteErrorResponse } from 'react-router'
import { getNewsBySlug } from '~/apis/common/get-news-by-slug'
import { getNewsById } from '~/apis/admin/get-news-by-id'
import { handleCookie } from '~/libs/cookies'
import { FormContentsPage } from '~/pages/form-contents'
import type { Route } from './+types/_admin.lg-admin._dashboard.contents.update.$slug'
import type { Route } from './+types/_admin.lg-admin._dashboard.contents.update.$id'
export const loader = async ({ request, params }: Route.LoaderArgs) => {
const { staffToken: accessToken } = await handleCookie(request)
const { slug } = params
const { data: newsData } = await getNewsBySlug({ accessToken, slug })
const { id } = params
const { data: newsData } = await getNewsById({ accessToken, id })
return { newsData }
}
+1 -1
View File
@@ -4,7 +4,7 @@ import { stripHtml } from 'string-strip-html'
import { getCategories } from '~/apis/common/get-categories'
import { getNews } from '~/apis/common/get-news'
import { getNewsBySlug } from '~/apis/common/get-news-by-slug'
import { getNewsBySlug } from '~/apis/news/get-news-by-slug'
import { getUser } from '~/apis/news/get-user'
import { APP } from '~/configs/meta'
import { handleCookie } from '~/libs/cookies'