feat: add API endpoints for fetching news by ID and slug, and update routing accordingly
This commit is contained in:
+4
-4
@@ -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 }
|
||||
}
|
||||
|
||||
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user