* refactor: apply biome formatting to packages/features (batch 1 - small subdirs) Format small subdirectories in packages/features: di, flags, holidays, oauth, settings, users, assignment-reason, selectedCalendar, hashedLink, host, form, form-builder, availability, data-table, pbac, schedules, troubleshooter, eventtypes, calendar-subscription, and root-level files. Also includes straggler apps/web BookEventForm.tsx. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: apply biome formatting to packages/features (batch 2 - medium subdirs) Format medium subdirectories in packages/features: auth, credentials, calendars, routing-forms, routing-trace, attributes, watchlist, calAIPhone, tasker, and webhooks. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: apply biome formatting to packages/features (batch 3 - bookings + insights) Format bookings and insights subdirectories in packages/features. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: apply biome formatting to packages/features (batch 4 - ee) Format packages/features/ee subdirectory covering billing, workflows, organizations, teams, managed-event-types, round-robin, dsync, integration-attribute-sync, and payments. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: apply biome formatting to packages/features (batch 5 - booking-audit part 1) Format booking-audit di, actions, common, dto, repository, and types subdirectories in packages/features/booking-audit. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: apply biome formatting to packages/features (batch 6 - booking-audit part 2) Format booking-audit service subdirectory in packages/features/booking-audit. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
126 lines
2.7 KiB
TypeScript
126 lines
2.7 KiB
TypeScript
import type { PrismaClient } from "@calcom/prisma";
|
|
|
|
export class PrismaAttributeRepository {
|
|
constructor(private prismaClient: PrismaClient) {}
|
|
|
|
async findManyByNamesAndOrgIdIncludeOptions({
|
|
attributeNames,
|
|
orgId,
|
|
}: {
|
|
attributeNames: string[];
|
|
orgId: number;
|
|
}) {
|
|
return this.prismaClient.attribute.findMany({
|
|
where: {
|
|
name: { in: attributeNames, mode: "insensitive" },
|
|
teamId: orgId,
|
|
},
|
|
include: {
|
|
options: {
|
|
select: {
|
|
id: true,
|
|
value: true,
|
|
slug: true,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
}
|
|
|
|
async findManyByOrgId({ orgId, attributeIds }: { orgId: number; attributeIds?: string[] }) {
|
|
// It should be a faster query because of lesser number of attributes record and index on teamId
|
|
const result = await this.prismaClient.attribute.findMany({
|
|
where: {
|
|
teamId: orgId,
|
|
// Only filter by attribute IDs if provided
|
|
...(attributeIds?.length && {
|
|
id: {
|
|
in: attributeIds,
|
|
},
|
|
}),
|
|
},
|
|
select: {
|
|
id: true,
|
|
name: true,
|
|
type: true,
|
|
slug: true,
|
|
options: true,
|
|
},
|
|
});
|
|
|
|
return result;
|
|
}
|
|
|
|
async findAllByOrgIdWithOptions({ orgId }: { orgId: number }) {
|
|
return await this.prismaClient.attribute.findMany({
|
|
where: {
|
|
teamId: orgId,
|
|
},
|
|
include: {
|
|
options: true,
|
|
},
|
|
});
|
|
}
|
|
|
|
async findUniqueWithWeights({
|
|
teamId,
|
|
attributeId,
|
|
isWeightsEnabled = true,
|
|
}: {
|
|
teamId: number;
|
|
attributeId: string;
|
|
isWeightsEnabled?: boolean;
|
|
}) {
|
|
return await this.prismaClient.attribute.findUnique({
|
|
where: {
|
|
id: attributeId,
|
|
teamId,
|
|
isWeightsEnabled,
|
|
},
|
|
select: {
|
|
id: true,
|
|
name: true,
|
|
slug: true,
|
|
type: true,
|
|
options: {
|
|
select: {
|
|
id: true,
|
|
value: true,
|
|
slug: true,
|
|
assignedUsers: {
|
|
select: {
|
|
member: {
|
|
select: {
|
|
userId: true,
|
|
},
|
|
},
|
|
weight: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
}
|
|
|
|
findManyByIdsAndOrgIdWithOptions({ attributeIds, orgId }: { attributeIds: string[]; orgId: number }) {
|
|
return this.prismaClient.attribute.findMany({
|
|
where: {
|
|
teamId: orgId,
|
|
id: {
|
|
in: attributeIds,
|
|
},
|
|
},
|
|
include: {
|
|
options: {
|
|
select: {
|
|
id: true,
|
|
value: true,
|
|
slug: true,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
}
|
|
}
|