2022-10-21 03:06:37 -05:00
|
|
|
import { Handlers, PageProps } from "$fresh/server.ts";
|
2022-11-10 11:41:46 -06:00
|
|
|
import { getTeam, getTeamUsers, isUserInTeam } from "@/db/mod.ts";
|
2022-10-21 03:06:37 -05:00
|
|
|
import { type Team, type User } from "@/types.ts";
|
2022-11-10 11:41:46 -06:00
|
|
|
import { type ContextState } from "@/types.ts";
|
2022-10-21 03:06:37 -05:00
|
|
|
|
|
|
|
interface TeamPageProps {
|
|
|
|
team: Team;
|
|
|
|
users: User[];
|
|
|
|
}
|
|
|
|
|
2022-11-10 11:41:46 -06:00
|
|
|
export const handler: Handlers<TeamPageProps, ContextState> = {
|
2022-10-21 03:06:37 -05:00
|
|
|
async GET(request, context) {
|
2022-11-10 11:41:46 -06:00
|
|
|
if (!context.state.user?.id) {
|
|
|
|
// unauthenticated requests may not view teams
|
|
|
|
return await context.renderNotFound();
|
|
|
|
}
|
|
|
|
// TODO: implement this with row-level security?
|
|
|
|
// TODO: do I just use supabase at this point?
|
2022-11-09 16:55:27 -06:00
|
|
|
// TODO: only allow logged-in users to view teams (and most resources!)
|
|
|
|
// TODO: only allow users that are a member of a team to view them
|
|
|
|
// NOTE: maybe teams can be public...?
|
2022-10-21 03:06:37 -05:00
|
|
|
const { id } = context.params;
|
2022-11-10 11:41:46 -06:00
|
|
|
|
|
|
|
if (!await isUserInTeam(context.state.user?.id, id)) {
|
|
|
|
// users that are not a member of a team may not view it
|
|
|
|
return await context.renderNotFound();
|
|
|
|
}
|
|
|
|
|
2022-10-21 03:06:37 -05:00
|
|
|
console.debug({ request, context });
|
|
|
|
try {
|
|
|
|
const team = await getTeam({ id });
|
|
|
|
const users = await getTeamUsers(team) || [];
|
|
|
|
return await context.render({ team, users });
|
|
|
|
} catch (e) {
|
|
|
|
console.error(`Error handling team page for ID '${id}'`, e);
|
|
|
|
return await context.renderNotFound();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export default function Team(
|
|
|
|
{ data: { team: { createdAt, displayName }, users } }: PageProps<
|
|
|
|
TeamPageProps
|
|
|
|
>,
|
|
|
|
) {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<a href="/dashboard">Back to dashboard</a>
|
|
|
|
<h1>{displayName} - created {createdAt.toLocaleString()}</h1>
|
|
|
|
<h1 class="mt-4">Team Members</h1>
|
|
|
|
<ul>
|
|
|
|
{users.map((user) => (
|
|
|
|
<li key={user.id}>
|
|
|
|
<a href={`/user/${user.id}`}>
|
|
|
|
{(user.displayName || user.username).trim()}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
))}
|
|
|
|
</ul>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|