mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
## Description Add support for teams which will allow users to collaborate on documents. Teams features allows users to: - Create, manage and transfer teams - Manage team members - Manage team emails - Manage a shared team inbox and documents These changes do NOT include the following, which are planned for a future release: - Team templates - Team API - Search menu integration ## Testing Performed - Added E2E tests for general team management - Added E2E tests to validate document counts ## Checklist - [X] I have tested these changes locally and they work as expected. - [X] I have added/updated tests that prove the effectiveness of these changes. - [ ] I have updated the documentation to reflect these changes, if applicable. - [X] I have followed the project's coding style guidelines.
77 lines
1.6 KiB
TypeScript
77 lines
1.6 KiB
TypeScript
import type { FindResultSet } from '@documenso/lib/types/find-result-set';
|
|
import { prisma } from '@documenso/prisma';
|
|
import type { Team } from '@documenso/prisma/client';
|
|
import { Prisma } from '@documenso/prisma/client';
|
|
|
|
export interface FindTeamsOptions {
|
|
userId: number;
|
|
term?: string;
|
|
page?: number;
|
|
perPage?: number;
|
|
orderBy?: {
|
|
column: keyof Team;
|
|
direction: 'asc' | 'desc';
|
|
};
|
|
}
|
|
|
|
export const findTeams = async ({
|
|
userId,
|
|
term,
|
|
page = 1,
|
|
perPage = 10,
|
|
orderBy,
|
|
}: FindTeamsOptions) => {
|
|
const orderByColumn = orderBy?.column ?? 'name';
|
|
const orderByDirection = orderBy?.direction ?? 'desc';
|
|
|
|
const whereClause: Prisma.TeamWhereInput = {
|
|
members: {
|
|
some: {
|
|
userId,
|
|
},
|
|
},
|
|
};
|
|
|
|
if (term && term.length > 0) {
|
|
whereClause.name = {
|
|
contains: term,
|
|
mode: Prisma.QueryMode.insensitive,
|
|
};
|
|
}
|
|
|
|
const [data, count] = await Promise.all([
|
|
prisma.team.findMany({
|
|
where: whereClause,
|
|
skip: Math.max(page - 1, 0) * perPage,
|
|
take: perPage,
|
|
orderBy: {
|
|
[orderByColumn]: orderByDirection,
|
|
},
|
|
include: {
|
|
members: {
|
|
where: {
|
|
userId,
|
|
},
|
|
},
|
|
},
|
|
}),
|
|
prisma.team.count({
|
|
where: whereClause,
|
|
}),
|
|
]);
|
|
|
|
const maskedData = data.map((team) => ({
|
|
...team,
|
|
currentTeamMember: team.members[0],
|
|
members: undefined,
|
|
}));
|
|
|
|
return {
|
|
data: maskedData,
|
|
count,
|
|
currentPage: Math.max(page, 1),
|
|
perPage,
|
|
totalPages: Math.ceil(count / perPage),
|
|
} satisfies FindResultSet<typeof maskedData>;
|
|
};
|