Files
calendar/apps/web/modules/ee/teams/components/InternalNotePresetsView.tsx
T
Benny JooGitHubDevin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
b3430c8efc refactor: remove 10 trpc imports from features package by moving 16 tRPC-driven components to apps/web/modules (#27336)
* refactor: move Segment, BookerLayoutSelector, CreateLicenseKeyForm from packages/features to apps/web/modules

Co-Authored-By: benny@cal.com <sldisek783@gmail.com>

* fix: update relative imports to absolute paths in moved files

Co-Authored-By: benny@cal.com <sldisek783@gmail.com>

* refactor: move useBookingLocation and blocklist components from packages/features to apps/web/modules

Co-Authored-By: benny@cal.com <sldisek783@gmail.com>

* refactor: move EmbedTabs and embed hooks from packages/features to apps/web/modules

Co-Authored-By: benny@cal.com <sldisek783@gmail.com>

* fix

* migrate useBookerUrl

* migrate embed tabs

* fix

* fix

* fix

* mv ThemeLabel

* mv settings headers to webn

* update imports

* clean up

---------

Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-01-30 04:55:50 -03:00

188 lines
6.5 KiB
TypeScript

"use client";
import { useAutoAnimate } from "@formkit/auto-animate/react";
import { useMemo } from "react";
import { useForm, useFieldArray, Controller } from "react-hook-form";
import { checkAdminOrOwner } from "@calcom/features/auth/lib/checkAdminOrOwner";
import SectionBottomActions from "@calcom/web/modules/settings/components/SectionBottomActions";
import { useLocale } from "@calcom/lib/hooks/useLocale";
import { trpc } from "@calcom/trpc/react";
import type { RouterOutputs } from "@calcom/trpc/react";
import classNames from "@calcom/ui/classNames";
import { Button } from "@calcom/ui/components/button";
import { Form, Input, SettingsToggle } from "@calcom/ui/components/form";
import { Icon } from "@calcom/ui/components/icon";
import { showToast } from "@calcom/ui/components/toast";
interface ProfileViewProps {
team: RouterOutputs["viewer"]["teams"]["get"];
}
const OTHER_FIELD_ID = -1;
const InternalNotePresetsView = ({ team }: ProfileViewProps) => {
const { t } = useLocale();
const utils = trpc.useUtils();
const { data: _loadedPresets } = trpc.viewer.teams.getInternalNotesPresets.useQuery({
teamId: team?.id as number,
});
const loadedPresets = useMemo(() => {
return (_loadedPresets ?? []).map((preset) => ({
...preset,
cancellationReason: preset.cancellationReason ?? undefined,
}));
}, [_loadedPresets]);
const hasExistingPresets = loadedPresets.length > 0;
type FormValues = {
presets: { id: number; name: string; cancellationReason?: string | undefined }[];
};
const form = useForm<FormValues>({
values: {
presets: loadedPresets,
},
});
const { fields, append, remove, replace } = useFieldArray({
control: form.control,
name: "presets",
});
const addNewPreset = () => {
append({ id: OTHER_FIELD_ID, name: "" });
};
const updatePresetsMutation = trpc.viewer.teams.updateInternalNotesPresets.useMutation({
onSuccess: () => {
showToast(t("internal_note_presets_updated_successfully"), "success");
utils.viewer.teams.getInternalNotesPresets.invalidate();
},
onError: (error) => {
showToast(error.message || t("something_went_wrong"), "error");
},
});
const onSubmit = async (data: FormValues) => {
if (!team?.id) return;
updatePresetsMutation.mutate({
teamId: team.id,
presets: data.presets,
});
};
const [animateRef] = useAutoAnimate<HTMLDivElement>();
const isAdmin = team && checkAdminOrOwner(team.membership.role);
if (!isAdmin) {
return (
<div className="border-subtle rounded-md border p-5">
<span className="text-default text-sm">{t("only_owner_change")}</span>
</div>
);
}
return (
<Form form={form} handleSubmit={(e) => onSubmit(e)}>
<Controller
name="presets"
render={({ field: { value } }) => {
const isChecked = hasExistingPresets || (value && value.length > 0);
return (
<SettingsToggle
toggleSwitchAtTheEnd={true}
labelClassName="text-sm"
title={t("internal_note_presets")}
description={t("internal_note_presets_description")}
checked={isChecked}
childrenClassName="lg:ml-0"
onCheckedChange={async (active) => {
if (active && !value?.length) {
append({ id: OTHER_FIELD_ID, name: "" });
} else {
replace([]);
if (!active && team?.id && hasExistingPresets) {
updatePresetsMutation.mutate({
teamId: team.id,
presets: [],
});
}
}
}}
switchContainerClassName={classNames(
"border-subtle mt-6 rounded-lg border py-6 px-4 sm:px-6",
isChecked && "rounded-b-none"
)}>
<div className="border-subtle border border-y-0 p-6">
<div className="flex flex-col stack-y-4" ref={animateRef}>
{fields.map((field, index) => (
<div key={field.id} className="stack-y-2">
<div className="flex items-center space-x-2">
<Controller
name={`presets.${index}.name`}
control={form.control}
render={({ field }) => (
<Input
type="text"
{...field}
placeholder={t("internal_booking_note")}
className="mb-0!"
/>
)}
/>
<Button
type="button"
color="destructive"
variant="icon"
onClick={() => remove(index)}
disabled={fields.length === 1}>
<Icon name="trash" className="h-4 w-5" />
</Button>
</div>
<div className="flex items-center gap-2">
<Icon name="corner-down-right" className="h-4 w-4" />
<Controller
name={`presets.${index}.cancellationReason`}
control={form.control}
render={({ field }) => (
<Input
type="text"
{...field}
placeholder={t("internal_note_cancellation_reason")}
className="mb-0!"
/>
)}
/>
</div>
</div>
))}
</div>
<Button
type="button"
color="minimal"
StartIcon="plus"
onClick={addNewPreset}
className="mt-4">
{t("add_preset")}
</Button>
</div>
<SectionBottomActions align="end">
<Button type="submit" color="primary" loading={updatePresetsMutation.isPending}>
{t("update")}
</Button>
</SectionBottomActions>
</SettingsToggle>
);
}}
/>
</Form>
);
};
export default InternalNotePresetsView;