35 lines
1021 B
TypeScript
35 lines
1021 B
TypeScript
import { Handlers, PageProps } from 'fresh/server.ts';
|
|
|
|
import { FreshContextState, NewsFeedArticle } from '/lib/types.ts';
|
|
import { AppConfig } from '/lib/config.ts';
|
|
import { ArticleModel } from '/lib/models/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` } });
|
|
}
|
|
|
|
if (!(await AppConfig.isAppEnabled('news'))) {
|
|
return new Response('Redirect', { status: 303, headers: { 'Location': `/dashboard` } });
|
|
}
|
|
|
|
const userArticles = await ArticleModel.listUnread(context.state.user.id);
|
|
|
|
return await context.render({ userArticles });
|
|
},
|
|
};
|
|
|
|
export default function News({ data }: PageProps<Data, FreshContextState>) {
|
|
return (
|
|
<main>
|
|
<Articles initialArticles={data?.userArticles || []} />
|
|
</main>
|
|
);
|
|
}
|