Files
calendar/packages/trpc/server/routers/viewer/attributes/getByUserId.handler.ts
T
ee3c08918a feat: weights per attribute UI (#18109)
* wip attribut weights

* edit sheet and display in table

* add shrink so badges dont split

* push changes to support weights on csv export

* fix typing issue

* type error

* fall back to 100 weight

---------

Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com>
2024-12-12 11:54:10 +00:00

113 lines
2.5 KiB
TypeScript

import prisma from "@calcom/prisma";
import type { AttributeType } from "@calcom/prisma/enums";
import { TRPCError } from "@trpc/server";
import type { TrpcSessionUser } from "../../../trpc";
import type { ZGetByUserIdSchema } from "./getByUserId.schema";
type GetOptions = {
ctx: {
user: NonNullable<TrpcSessionUser>;
};
input: ZGetByUserIdSchema;
};
type GroupedAttribute = {
id: string;
name: string;
type: AttributeType;
options: {
id: string;
slug: string;
value: string;
weight: number | null;
createdByDSyncId: string | null;
}[];
};
const getByUserIdHandler = async ({ input, ctx }: GetOptions) => {
const org = ctx.user.organization;
if (!org.id) {
throw new TRPCError({
code: "UNAUTHORIZED",
message: "You need to be apart of an organization to use this feature",
});
}
// Ensure user is apart of the organization
const membership = await prisma.membership.findFirst({
where: {
userId: input.userId,
teamId: org.id,
},
});
if (!membership) {
throw new TRPCError({
code: "UNAUTHORIZED",
message: "This user is not apart of your organization",
});
}
const userAttributes = await prisma.attributeToUser.findMany({
where: {
member: {
id: membership.id,
},
attributeOption: {
attribute: {
enabled: true,
},
},
},
select: {
attributeOption: {
select: {
id: true,
value: true,
slug: true,
attribute: {
select: {
id: true,
name: true,
type: true,
},
},
},
},
createdByDSyncId: true,
weight: true,
},
});
const groupedAttributes = userAttributes.reduce<GroupedAttribute[]>((acc, assignment) => {
const { attributeOption, createdByDSyncId, weight } = assignment;
const { attribute: attrInfo, ...optionInfo } = attributeOption;
const optionInfoWithCreatedByDSyncId = { ...optionInfo, createdByDSyncId, weight };
const existingGroup = acc.find((group) => group.id === attrInfo.id);
if (existingGroup) {
existingGroup.options.push(optionInfoWithCreatedByDSyncId);
} else {
acc.push({
id: attrInfo.id,
name: attrInfo.name,
type: attrInfo.type,
options: [
{
...optionInfoWithCreatedByDSyncId,
},
],
});
}
return acc;
}, []);
return groupedAttributes;
};
export default getByUserIdHandler;