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