2022-03-17 16:48:23 +00:00
|
|
|
import { Prisma } from "@prisma/client";
|
|
|
|
import { z } from "zod";
|
|
|
|
|
|
|
|
import { getAvailabilityFromSchedule } from "@lib/availability";
|
|
|
|
import { Schedule } from "@lib/types/schedule";
|
|
|
|
|
|
|
|
import { createProtectedRouter } from "@server/createRouter";
|
|
|
|
import { TRPCError } from "@trpc/server";
|
|
|
|
|
|
|
|
export const availabilityRouter = createProtectedRouter()
|
|
|
|
.query("list", {
|
|
|
|
async resolve({ ctx }) {
|
|
|
|
const { prisma, user } = ctx;
|
|
|
|
const schedules = await prisma.schedule.findMany({
|
|
|
|
where: {
|
|
|
|
userId: user.id,
|
|
|
|
},
|
|
|
|
select: {
|
|
|
|
id: true,
|
|
|
|
name: true,
|
|
|
|
availability: true,
|
|
|
|
timeZone: true,
|
|
|
|
},
|
|
|
|
orderBy: {
|
|
|
|
id: "asc",
|
|
|
|
},
|
|
|
|
});
|
|
|
|
return {
|
|
|
|
schedules: schedules.map((schedule) => ({
|
|
|
|
...schedule,
|
|
|
|
isDefault: user.defaultScheduleId === schedule.id || schedules.length === 1,
|
|
|
|
})),
|
|
|
|
};
|
|
|
|
},
|
|
|
|
})
|
|
|
|
.query("schedule", {
|
|
|
|
input: z.object({
|
|
|
|
scheduleId: z.number(),
|
|
|
|
}),
|
|
|
|
async resolve({ ctx, input }) {
|
|
|
|
const { prisma, user } = ctx;
|
|
|
|
const schedule = await prisma.schedule.findUnique({
|
|
|
|
where: {
|
|
|
|
id: input.scheduleId,
|
|
|
|
},
|
|
|
|
select: {
|
|
|
|
id: true,
|
|
|
|
userId: true,
|
|
|
|
name: true,
|
|
|
|
availability: true,
|
|
|
|
timeZone: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
if (!schedule || schedule.userId !== user.id) {
|
|
|
|
throw new TRPCError({
|
|
|
|
code: "UNAUTHORIZED",
|
|
|
|
});
|
|
|
|
}
|
|
|
|
const availability = schedule.availability.reduce(
|
|
|
|
(schedule: Schedule, availability) => {
|
|
|
|
availability.days.forEach((day) => {
|
|
|
|
schedule[day].push({
|
|
|
|
start: new Date(
|
|
|
|
Date.UTC(
|
|
|
|
new Date().getUTCFullYear(),
|
|
|
|
new Date().getUTCMonth(),
|
|
|
|
new Date().getUTCDate(),
|
|
|
|
availability.startTime.getUTCHours(),
|
|
|
|
availability.startTime.getUTCMinutes()
|
|
|
|
)
|
|
|
|
),
|
|
|
|
end: new Date(
|
|
|
|
Date.UTC(
|
|
|
|
new Date().getUTCFullYear(),
|
|
|
|
new Date().getUTCMonth(),
|
|
|
|
new Date().getUTCDate(),
|
|
|
|
availability.endTime.getUTCHours(),
|
|
|
|
availability.endTime.getUTCMinutes()
|
|
|
|
)
|
|
|
|
),
|
|
|
|
});
|
|
|
|
});
|
|
|
|
return schedule;
|
|
|
|
},
|
|
|
|
Array.from([...Array(7)]).map(() => [])
|
|
|
|
);
|
|
|
|
return {
|
|
|
|
schedule,
|
|
|
|
availability,
|
|
|
|
timeZone: schedule.timeZone || user.timeZone,
|
|
|
|
isDefault: !user.defaultScheduleId || user.defaultScheduleId === schedule.id,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
})
|
|
|
|
.mutation("schedule.create", {
|
|
|
|
input: z.object({
|
|
|
|
name: z.string(),
|
|
|
|
copyScheduleId: z.number().optional(),
|
|
|
|
schedule: z
|
|
|
|
.array(
|
|
|
|
z.array(
|
|
|
|
z.object({
|
|
|
|
start: z.date(),
|
|
|
|
end: z.date(),
|
|
|
|
})
|
|
|
|
)
|
|
|
|
)
|
|
|
|
.optional(),
|
|
|
|
}),
|
|
|
|
async resolve({ input, ctx }) {
|
|
|
|
const { user, prisma } = ctx;
|
|
|
|
const data: Prisma.ScheduleCreateInput = {
|
|
|
|
name: input.name,
|
|
|
|
user: {
|
|
|
|
connect: {
|
|
|
|
id: user.id,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
if (input.schedule) {
|
|
|
|
const availability = getAvailabilityFromSchedule(input.schedule);
|
|
|
|
data.availability = {
|
|
|
|
createMany: {
|
|
|
|
data: availability.map((schedule) => ({
|
|
|
|
days: schedule.days,
|
|
|
|
startTime: schedule.startTime,
|
|
|
|
endTime: schedule.endTime,
|
|
|
|
})),
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
const schedule = await prisma.schedule.create({
|
|
|
|
data,
|
|
|
|
});
|
|
|
|
return { schedule };
|
|
|
|
},
|
|
|
|
})
|
|
|
|
.mutation("schedule.delete", {
|
|
|
|
input: z.object({
|
|
|
|
scheduleId: z.number(),
|
|
|
|
}),
|
|
|
|
async resolve({ input, ctx }) {
|
|
|
|
const { user, prisma } = ctx;
|
|
|
|
|
|
|
|
if (user.defaultScheduleId === input.scheduleId) {
|
|
|
|
// unset default
|
|
|
|
await prisma.user.update({
|
|
|
|
where: {
|
|
|
|
id: user.id,
|
|
|
|
},
|
|
|
|
data: {
|
|
|
|
defaultScheduleId: undefined,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
await prisma.schedule.delete({
|
|
|
|
where: {
|
|
|
|
id: input.scheduleId,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
},
|
|
|
|
})
|
|
|
|
.mutation("schedule.update", {
|
|
|
|
input: z.object({
|
|
|
|
scheduleId: z.number(),
|
|
|
|
timeZone: z.string().optional(),
|
|
|
|
name: z.string().optional(),
|
|
|
|
isDefault: z.boolean().optional(),
|
|
|
|
schedule: z.array(
|
|
|
|
z.array(
|
|
|
|
z.object({
|
|
|
|
start: z.date(),
|
|
|
|
end: z.date(),
|
|
|
|
})
|
|
|
|
)
|
|
|
|
),
|
|
|
|
}),
|
|
|
|
async resolve({ input, ctx }) {
|
|
|
|
const { user, prisma } = ctx;
|
|
|
|
const availability = getAvailabilityFromSchedule(input.schedule);
|
|
|
|
|
|
|
|
if (input.isDefault) {
|
|
|
|
await prisma.user.update({
|
|
|
|
where: {
|
|
|
|
id: user.id,
|
|
|
|
},
|
|
|
|
data: {
|
|
|
|
defaultScheduleId: input.scheduleId,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-04-12 09:22:29 +00:00
|
|
|
// Not able to update the schedule with userId where clause, so fetch schedule separately and then validate
|
|
|
|
// Bug: https://github.com/prisma/prisma/issues/7290
|
|
|
|
const userSchedule = await prisma.schedule.findUnique({
|
|
|
|
where: {
|
|
|
|
id: input.scheduleId,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!userSchedule || userSchedule.userId !== user.id) {
|
|
|
|
throw new TRPCError({
|
|
|
|
code: "UNAUTHORIZED",
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-03-23 23:23:18 +00:00
|
|
|
const schedule = await prisma.schedule.update({
|
2022-03-17 16:48:23 +00:00
|
|
|
where: {
|
|
|
|
id: input.scheduleId,
|
|
|
|
},
|
|
|
|
data: {
|
|
|
|
timeZone: input.timeZone,
|
|
|
|
name: input.name,
|
|
|
|
availability: {
|
|
|
|
deleteMany: {
|
|
|
|
scheduleId: {
|
|
|
|
equals: input.scheduleId,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
createMany: {
|
|
|
|
data: availability.map((schedule) => ({
|
|
|
|
days: schedule.days,
|
|
|
|
startTime: schedule.startTime,
|
|
|
|
endTime: schedule.endTime,
|
|
|
|
})),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
2022-03-23 23:23:18 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
schedule,
|
|
|
|
};
|
2022-03-17 16:48:23 +00:00
|
|
|
},
|
|
|
|
});
|