32
resources/client/admin/news/requests/use-news-article.ts
Executable file
32
resources/client/admin/news/requests/use-news-article.ts
Executable file
@@ -0,0 +1,32 @@
|
||||
import {useQuery} from '@tanstack/react-query';
|
||||
import {apiClient} from '@common/http/query-client';
|
||||
import {BackendResponse} from '@common/http/backend-response/backend-response';
|
||||
import {NewsArticle} from '@app/titles/models/news-article';
|
||||
import {useParams} from 'react-router-dom';
|
||||
import {getBootstrapData} from '@common/core/bootstrap-data/use-backend-bootstrap-data';
|
||||
|
||||
export interface GetNewsArticleResponse extends BackendResponse {
|
||||
article: NewsArticle;
|
||||
related: NewsArticle[];
|
||||
}
|
||||
|
||||
export function useNewsArticle(loader: 'newsArticlePage') {
|
||||
const {articleId} = useParams();
|
||||
return useQuery<GetNewsArticleResponse>({
|
||||
queryKey: ['news-articles', `${articleId}`],
|
||||
queryFn: () => fetchNewsArticle(articleId!),
|
||||
initialData: () => {
|
||||
const data = getBootstrapData().loaders?.[loader];
|
||||
if (data?.article?.id == articleId) {
|
||||
return data;
|
||||
}
|
||||
return undefined;
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
function fetchNewsArticle(articleId: string) {
|
||||
return apiClient
|
||||
.get<GetNewsArticleResponse>(`news/${articleId}`)
|
||||
.then(response => response.data);
|
||||
}
|
||||
Reference in New Issue
Block a user