Make it public!
This commit is contained in:
29
routes/news.tsx
Normal file
29
routes/news.tsx
Normal file
@@ -0,0 +1,29 @@
|
||||
import { Handlers, PageProps } from 'fresh/server.ts';
|
||||
|
||||
import { FreshContextState, NewsFeedArticle } from '/lib/types.ts';
|
||||
import { getNewsArticles } from '/lib/data/news.ts';
|
||||
import Articles from '/islands/news/Articles.tsx';
|
||||
|
||||
interface Data {
|
||||
userArticles: NewsFeedArticle[];
|
||||
}
|
||||
|
||||
export const handler: Handlers<Data, FreshContextState> = {
|
||||
async GET(request, context) {
|
||||
if (!context.state.user) {
|
||||
return new Response('Redirect', { status: 303, headers: { 'Location': `/login` } });
|
||||
}
|
||||
|
||||
const userArticles = await getNewsArticles(context.state.user.id);
|
||||
|
||||
return await context.render({ userArticles });
|
||||
},
|
||||
};
|
||||
|
||||
export default function News({ data }: PageProps<Data, FreshContextState>) {
|
||||
return (
|
||||
<main>
|
||||
<Articles initialArticles={data?.userArticles || []} />
|
||||
</main>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user