* add endpoint to fetch managed user from client id * update typings * minor tweaks * custom hook to fetch managed users from client id * add translations for platform onboarding * add isPlatformOrg boolean to figure out which is platform and which is not * set isPlatform hook based on data obtained from org * add limitWidth prop to control component width * add props to shell to make sidebar display different tabs based on if the shell isPlattform or not * platform related pages * fix merge conflicts * fix merge conflicts * platform oauth client form and card * remove everything related to platform from organization * update oauth client card and form * fixup * fix imports and remove logs * fixup * update redirect url * split oauth client form into separate update and create forms * separate forms for create and edit oauth clients * fixup * fixup * dynamic routes for oauth client edit page * fixup fixup * fix to not show error when redirect uri is empty * refactor create handler for org * cleaup comments * add custom hook to check user billing * export managed user type * refactor platform index page * refactor edit and create pages * dashboard component containing oauth client list and managed user * common oauth client form used for create and edit form * platform pricing helper * platform pricing component * fix typing and data response for billing * use custom hook to check team billing info * fix type checks * upgrade conditional rendering for upgrade to org banner * add isLoading prop to check button loading state * pass in button handler * add custom hook to subscribe to stripe and typings * update typings * fix incorrect endpoint * pass in team id as prop * fix type check * update stripe success and cancel redirect url * add and pass redirect url param to custom hook * custom hooks for platform * cleanup * update imports * fix merge conflicts * fixup * fixup fixup * fixup * merge conflicts fixup * merge conlficts battle :( * minor fixes * skip admin checks for a platform client * fix typo * append slug with _platform for a platform user * PR feedback * dashboard refactor * bring back org form to its orginal state * add platform folder to ee * update typings * use new create platform form * fixup * fix typo and update plans * simplifying rendering * remove managed users endpoint since it already exists * url for endpoint * rename tabs * pr feedback * managed users endpoint * update endpoint * remove form --------- Co-authored-by: Morgan <33722304+ThyMinimalDev@users.noreply.github.com> Co-authored-by: exception <erik@erosemberg.com> Co-authored-by: Carina Wollendorfer <30310907+CarinaWolli@users.noreply.github.com> Co-authored-by: Keith Williams <keithwillcode@gmail.com> Co-authored-by: Peer Richelsen <peeroke@gmail.com>
176 lines
6.4 KiB
TypeScript
176 lines
6.4 KiB
TypeScript
import type { SessionContextValue } from "next-auth/react";
|
|
import { useSession, signIn } from "next-auth/react";
|
|
import { useRouter } from "next/navigation";
|
|
import { useState } from "react";
|
|
import { Controller, useForm } from "react-hook-form";
|
|
|
|
import { deriveOrgNameFromEmail } from "@calcom/ee/organizations/components/CreateANewOrganizationForm";
|
|
import { deriveSlugFromEmail } from "@calcom/ee/organizations/components/CreateANewOrganizationForm";
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import slugify from "@calcom/lib/slugify";
|
|
import { telemetryEventTypes, useTelemetry } from "@calcom/lib/telemetry";
|
|
import { UserPermissionRole } from "@calcom/prisma/enums";
|
|
import { trpc } from "@calcom/trpc/react";
|
|
import type { Ensure } from "@calcom/types/utils";
|
|
import { Alert, Form, TextField, Button } from "@calcom/ui";
|
|
|
|
export const CreateANewPlatformForm = () => {
|
|
const session = useSession();
|
|
if (!session.data) {
|
|
return null;
|
|
}
|
|
return <CreateANewPlatformFormChild session={session} />;
|
|
};
|
|
|
|
const CreateANewPlatformFormChild = ({ session }: { session: Ensure<SessionContextValue, "data"> }) => {
|
|
const { t } = useLocale();
|
|
const router = useRouter();
|
|
const telemetry = useTelemetry();
|
|
const [serverErrorMessage, setServerErrorMessage] = useState<string | null>(null);
|
|
const isAdmin = session.data.user.role === UserPermissionRole.ADMIN;
|
|
const defaultOrgOwnerEmail = session.data.user.email ?? "";
|
|
const newOrganizationFormMethods = useForm<{
|
|
name: string;
|
|
slug: string;
|
|
orgOwnerEmail: string;
|
|
isPlatform: boolean;
|
|
}>({
|
|
defaultValues: {
|
|
slug: !isAdmin ? deriveSlugFromEmail(defaultOrgOwnerEmail) : undefined,
|
|
orgOwnerEmail: !isAdmin ? defaultOrgOwnerEmail : undefined,
|
|
name: !isAdmin ? deriveOrgNameFromEmail(defaultOrgOwnerEmail) : undefined,
|
|
isPlatform: true,
|
|
},
|
|
});
|
|
|
|
const createOrganizationMutation = trpc.viewer.organizations.create.useMutation({
|
|
onSuccess: async (data) => {
|
|
telemetry.event(telemetryEventTypes.org_created);
|
|
// This is necessary so that server token has the updated upId
|
|
await session.update({
|
|
upId: data.upId,
|
|
});
|
|
if (isAdmin && data.userId !== session.data?.user.id) {
|
|
// Impersonate the user chosen as the organization owner(if the admin user isn't the owner himself), so that admin can now configure the organisation on his behalf.
|
|
// He won't need to have access to the org directly in this way.
|
|
signIn("impersonation-auth", {
|
|
username: data.email,
|
|
callbackUrl: `/settings/platform`,
|
|
});
|
|
}
|
|
router.push("/settings/platform");
|
|
},
|
|
onError: (err) => {
|
|
if (err.message === "organization_url_taken") {
|
|
newOrganizationFormMethods.setError("slug", { type: "custom", message: t("url_taken") });
|
|
} else if (err.message === "domain_taken_team" || err.message === "domain_taken_project") {
|
|
newOrganizationFormMethods.setError("slug", {
|
|
type: "custom",
|
|
message: t("problem_registering_domain"),
|
|
});
|
|
} else {
|
|
setServerErrorMessage(err.message);
|
|
}
|
|
},
|
|
});
|
|
|
|
return (
|
|
<>
|
|
<Form
|
|
form={newOrganizationFormMethods}
|
|
className="space-y-5"
|
|
id="createOrg"
|
|
handleSubmit={(v) => {
|
|
if (!createOrganizationMutation.isPending) {
|
|
setServerErrorMessage(null);
|
|
createOrganizationMutation.mutate({
|
|
...v,
|
|
slug: `${v.name.toLocaleLowerCase()}_platform`,
|
|
});
|
|
}
|
|
}}>
|
|
<div>
|
|
{serverErrorMessage && (
|
|
<div className="mb-4">
|
|
<Alert severity="error" message={serverErrorMessage} />
|
|
</div>
|
|
)}
|
|
<Controller
|
|
name="orgOwnerEmail"
|
|
control={newOrganizationFormMethods.control}
|
|
rules={{
|
|
required: t("must_enter_organization_admin_email"),
|
|
}}
|
|
render={({ field: { value } }) => (
|
|
<div className="flex">
|
|
<TextField
|
|
containerClassName="w-full"
|
|
placeholder="john@acme.com"
|
|
name="orgOwnerEmail"
|
|
disabled={!isAdmin}
|
|
label={t("platform_admin_email")}
|
|
defaultValue={value}
|
|
onChange={(e) => {
|
|
const email = e?.target.value;
|
|
const slug = deriveSlugFromEmail(email);
|
|
newOrganizationFormMethods.setValue("orgOwnerEmail", email.trim());
|
|
if (newOrganizationFormMethods.getValues("slug") === "") {
|
|
newOrganizationFormMethods.setValue("slug", slug);
|
|
}
|
|
newOrganizationFormMethods.setValue("name", deriveOrgNameFromEmail(email));
|
|
}}
|
|
autoComplete="off"
|
|
/>
|
|
</div>
|
|
)}
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<Controller
|
|
name="name"
|
|
control={newOrganizationFormMethods.control}
|
|
defaultValue=""
|
|
rules={{
|
|
required: t("must_enter_organization_name"),
|
|
}}
|
|
render={({ field: { value } }) => (
|
|
<>
|
|
<TextField
|
|
className="mt-2"
|
|
placeholder="Acme"
|
|
name="name"
|
|
label={t("platform_name")}
|
|
defaultValue={value}
|
|
onChange={(e) => {
|
|
newOrganizationFormMethods.setValue("name", e?.target.value.trim());
|
|
if (newOrganizationFormMethods.formState.touchedFields["slug"] === undefined) {
|
|
newOrganizationFormMethods.setValue("slug", slugify(e?.target.value));
|
|
}
|
|
}}
|
|
autoComplete="off"
|
|
/>
|
|
</>
|
|
)}
|
|
/>
|
|
</div>
|
|
|
|
<div className="flex space-x-2 rtl:space-x-reverse">
|
|
<Button
|
|
disabled={
|
|
newOrganizationFormMethods.formState.isSubmitting || createOrganizationMutation.isPending
|
|
}
|
|
color="primary"
|
|
EndIcon="arrow-right"
|
|
type="submit"
|
|
form="createOrg"
|
|
className="w-full justify-center">
|
|
{t("continue")}
|
|
</Button>
|
|
</div>
|
|
<div />
|
|
</Form>
|
|
</>
|
|
);
|
|
};
|