mirror of
https://github.com/documenso/documenso.git
synced 2025-11-14 00:32:43 +10:00
49 lines
1.2 KiB
TypeScript
49 lines
1.2 KiB
TypeScript
import { z } from 'zod';
|
|
|
|
import { prisma } from '@documenso/prisma';
|
|
import { TeamMemberRole } from '@documenso/prisma/generated/types';
|
|
import { TeamSchema } from '@documenso/prisma/generated/zod/modelSchema/TeamSchema';
|
|
|
|
import { buildTeamWhereQuery, getHighestTeamRoleInGroup } from '../../utils/teams';
|
|
|
|
export type GetTeamsOptions = {
|
|
userId: number;
|
|
|
|
/**
|
|
* If teamId is undefined we get all teams the user belongs to.
|
|
*/
|
|
teamId?: number;
|
|
};
|
|
|
|
export const ZGetTeamsResponseSchema = TeamSchema.extend({
|
|
teamRole: z.nativeEnum(TeamMemberRole),
|
|
}).array();
|
|
|
|
export type TGetTeamsResponse = z.infer<typeof ZGetTeamsResponseSchema>;
|
|
|
|
export const getTeams = async ({ userId, teamId }: GetTeamsOptions) => {
|
|
const teams = await prisma.team.findMany({
|
|
where: buildTeamWhereQuery({ teamId, userId }),
|
|
include: {
|
|
teamGroups: {
|
|
where: {
|
|
organisationGroup: {
|
|
organisationGroupMembers: {
|
|
some: {
|
|
organisationMember: {
|
|
userId,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
return teams.map((team) => ({
|
|
...team,
|
|
currentTeamRole: getHighestTeamRoleInGroup(team.teamGroups),
|
|
}));
|
|
};
|