2023-03-21 10:43:07 +00:00
|
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
2023-02-10 09:53:03 +00:00
|
|
|
import { useEffect, useState } from "react";
|
2022-12-07 20:15:15 +00:00
|
|
|
import { useForm } from "react-hook-form";
|
2023-03-21 10:43:07 +00:00
|
|
|
import { z } from "zod";
|
2022-09-06 22:58:16 +00:00
|
|
|
|
|
|
|
import dayjs from "@calcom/dayjs";
|
2023-03-21 10:43:07 +00:00
|
|
|
import { FULL_NAME_LENGTH_MAX_LIMIT } from "@calcom/lib/constants";
|
2022-09-06 22:58:16 +00:00
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
2023-02-10 09:53:03 +00:00
|
|
|
import { telemetryEventTypes, useTelemetry } from "@calcom/lib/telemetry";
|
2022-09-06 22:58:16 +00:00
|
|
|
import { trpc } from "@calcom/trpc/react";
|
2022-11-23 02:55:25 +00:00
|
|
|
import { Button, TimezoneSelect } from "@calcom/ui";
|
2023-05-17 12:47:44 +00:00
|
|
|
import { ArrowRight } from "@calcom/ui/components/icon";
|
2022-09-06 22:58:16 +00:00
|
|
|
|
2022-12-07 20:15:15 +00:00
|
|
|
import { UsernameAvailabilityField } from "@components/ui/UsernameAvailability";
|
2022-09-06 22:58:16 +00:00
|
|
|
|
|
|
|
interface IUserSettingsProps {
|
|
|
|
nextStep: () => void;
|
2023-07-24 21:11:25 +00:00
|
|
|
hideUsername?: boolean;
|
2022-09-06 22:58:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const UserSettings = (props: IUserSettingsProps) => {
|
feat: Organizations (#8993)
* Initial commit
* Adding feature flag
* feat: Orgs Schema Changing `scopedMembers` to `orgUsers` (#9209)
* Change scopedMembers to orgMembers
* Change to orgUsers
* Letting duplicate slugs for teams to support orgs
* Covering null on unique clauses
* Supporting having the orgId in the session cookie
* feat: organization event type filter (#9253)
Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
* Missing changes to support orgs schema changes
* feat: Onboarding process to create an organization (#9184)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* feedback
* Making sure we check requestedSlug now
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* feat: [CAL-1816] Organization subdomain support (#9345)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* Covering users and subteams, excluding non-org users
* Unpublished teams shows correctly
* Create subdomain in Vercel
* feedback
* Renaming Vercel env vars
* Vercel domain check before creation
* Supporting cal-staging.com
* Change to have vercel detect it
* vercel domain check data message error
* Remove check domain
* Making sure we check requestedSlug now
* Feedback and unneeded code
* Reverting unneeded changes
* Unneeded changes
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* Vercel subdomain creation in PROD only
* Making sure we let localhost still work
* Feedback
* Type check fixes
* feat: Organization branding in side menu (#9279)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Org branding provider used in shell sidebar
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Using org avatar (temp)
* Not showing org logo if not set
* User onboarding with org branding (slug)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* feedback
* Feedback
* Org public profile
* Public profiles for team event types
* Added setup profile alert
* Using org avatar on subteams avatar
* Making sure we show the set up profile on org only
* Profile username availability rely on org hook
* Update apps/web/pages/team/[slug].tsx
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* Update apps/web/pages/team/[slug].tsx
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* feat: Organization support for event types page (#9449)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Org branding provider used in shell sidebar
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Using org avatar (temp)
* Not showing org logo if not set
* User onboarding with org branding (slug)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* feedback
* Feedback
* Org public profile
* Public profiles for team event types
* Added setup profile alert
* Using org avatar on subteams avatar
* Processing orgs and children as profile options
* Reverting change not belonging to this PR
* Making sure we show the set up profile on org only
* Removing console.log
* Comparing memberships to choose the highest one
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* Type errors
* Refactor and type fixes
* Update orgDomains.ts
* Feedback
* Reverting
* NIT
* fix issue getting org slug from domain
* Improving orgDomains util
* Host comes with port
* Update useRouterQuery.ts
* Feedback
* Feedback
* Feedback
* Feedback: SSR for user event-types to have org context
* chore: Cache node_modules (#9492)
* Adding check for cache hit
* Adding a separate install step first
* Put the restore cache steps back
* Revert the uses type for restoring cache
* Added step to restore nm cache
* Removed the cache-hit check
* Comments and naming
* Removed extra install command
* Updated the name of the linting step to be more clear
* Removes the need for useEffect here
* Feedback
* Feedback
* Cookie domain needs a dot
* Type fix
* Update apps/web/public/static/locales/en/common.json
Co-authored-by: Omar López <zomars@me.com>
* Update packages/emails/src/templates/OrganizationAccountVerifyEmail.tsx
* Feedback
---------
Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com>
Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com>
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
Co-authored-by: zomars <zomars@me.com>
Co-authored-by: Efraín Rochín <roae.85@gmail.com>
Co-authored-by: Keith Williams <keithwillcode@gmail.com>
2023-06-14 21:40:20 +00:00
|
|
|
const { nextStep } = props;
|
|
|
|
const [user] = trpc.viewer.me.useSuspenseQuery();
|
2022-09-06 22:58:16 +00:00
|
|
|
const { t } = useLocale();
|
2023-01-12 16:17:57 +00:00
|
|
|
const [selectedTimeZone, setSelectedTimeZone] = useState(dayjs.tz.guess());
|
2023-02-10 09:53:03 +00:00
|
|
|
const telemetry = useTelemetry();
|
2023-03-21 10:43:07 +00:00
|
|
|
const userSettingsSchema = z.object({
|
|
|
|
name: z
|
|
|
|
.string()
|
|
|
|
.min(1)
|
|
|
|
.max(FULL_NAME_LENGTH_MAX_LIMIT, {
|
|
|
|
message: t("max_limit_allowed_hint", { limit: FULL_NAME_LENGTH_MAX_LIMIT }),
|
|
|
|
}),
|
|
|
|
});
|
2022-11-08 16:36:14 +00:00
|
|
|
const {
|
|
|
|
register,
|
|
|
|
handleSubmit,
|
|
|
|
formState: { errors },
|
2023-03-21 10:43:07 +00:00
|
|
|
} = useForm<z.infer<typeof userSettingsSchema>>({
|
2022-09-06 22:58:16 +00:00
|
|
|
defaultValues: {
|
2022-11-08 16:36:14 +00:00
|
|
|
name: user?.name || "",
|
2022-09-06 22:58:16 +00:00
|
|
|
},
|
|
|
|
reValidateMode: "onChange",
|
2023-03-21 10:43:07 +00:00
|
|
|
resolver: zodResolver(userSettingsSchema),
|
2022-09-06 22:58:16 +00:00
|
|
|
});
|
2023-02-10 09:53:03 +00:00
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
telemetry.event(telemetryEventTypes.onboardingStarted);
|
|
|
|
}, [telemetry]);
|
|
|
|
|
2022-09-06 22:58:16 +00:00
|
|
|
const utils = trpc.useContext();
|
|
|
|
const onSuccess = async () => {
|
2022-11-10 23:40:01 +00:00
|
|
|
await utils.viewer.me.invalidate();
|
2022-09-06 22:58:16 +00:00
|
|
|
nextStep();
|
|
|
|
};
|
2022-11-10 23:40:01 +00:00
|
|
|
const mutation = trpc.viewer.updateProfile.useMutation({
|
2022-09-06 22:58:16 +00:00
|
|
|
onSuccess: onSuccess,
|
|
|
|
});
|
2022-12-07 19:55:47 +00:00
|
|
|
|
2022-09-06 22:58:16 +00:00
|
|
|
const onSubmit = handleSubmit((data) => {
|
|
|
|
mutation.mutate({
|
|
|
|
name: data.name,
|
|
|
|
timeZone: selectedTimeZone,
|
|
|
|
});
|
|
|
|
});
|
2022-11-08 16:36:14 +00:00
|
|
|
|
2022-09-06 22:58:16 +00:00
|
|
|
return (
|
|
|
|
<form onSubmit={onSubmit}>
|
2022-09-07 01:34:33 +00:00
|
|
|
<div className="space-y-6">
|
2023-07-24 21:11:25 +00:00
|
|
|
{/* Username textfield: when not coming from signup */}
|
|
|
|
{!props.hideUsername && <UsernameAvailabilityField />}
|
2022-09-06 22:58:16 +00:00
|
|
|
|
|
|
|
{/* Full name textfield */}
|
|
|
|
<div className="w-full">
|
2023-04-05 18:14:46 +00:00
|
|
|
<label htmlFor="name" className="text-default mb-2 block text-sm font-medium">
|
2022-09-06 22:58:16 +00:00
|
|
|
{t("full_name")}
|
|
|
|
</label>
|
|
|
|
<input
|
2023-03-21 10:43:07 +00:00
|
|
|
{...register("name", {
|
|
|
|
required: true,
|
|
|
|
})}
|
2022-09-06 22:58:16 +00:00
|
|
|
id="name"
|
|
|
|
name="name"
|
|
|
|
type="text"
|
|
|
|
autoComplete="off"
|
|
|
|
autoCorrect="off"
|
2023-04-05 18:14:46 +00:00
|
|
|
className="border-default w-full rounded-md border text-sm"
|
2022-09-06 22:58:16 +00:00
|
|
|
/>
|
|
|
|
{errors.name && (
|
2022-10-01 21:01:41 +00:00
|
|
|
<p data-testid="required" className="py-2 text-xs text-red-500">
|
2023-03-21 10:43:07 +00:00
|
|
|
{errors.name.message}
|
2022-09-06 22:58:16 +00:00
|
|
|
</p>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
{/* Timezone select field */}
|
|
|
|
<div className="w-full">
|
2023-04-05 18:14:46 +00:00
|
|
|
<label htmlFor="timeZone" className="text-default block text-sm font-medium">
|
2022-09-06 22:58:16 +00:00
|
|
|
{t("timezone")}
|
|
|
|
</label>
|
|
|
|
|
|
|
|
<TimezoneSelect
|
|
|
|
id="timeZone"
|
|
|
|
value={selectedTimeZone}
|
|
|
|
onChange={({ value }) => setSelectedTimeZone(value)}
|
|
|
|
className="mt-2 w-full rounded-md text-sm"
|
|
|
|
/>
|
|
|
|
|
2023-04-05 18:14:46 +00:00
|
|
|
<p className="text-subtle dark:text-inverted mt-3 flex flex-row font-sans text-xs leading-tight">
|
2022-09-07 01:34:33 +00:00
|
|
|
{t("current_time")} {dayjs().tz(selectedTimeZone).format("LT").toString().toLowerCase()}
|
2022-09-06 22:58:16 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<Button
|
|
|
|
type="submit"
|
|
|
|
className="mt-8 flex w-full flex-row justify-center"
|
|
|
|
disabled={mutation.isLoading}>
|
|
|
|
{t("next_step_text")}
|
2023-05-17 12:47:44 +00:00
|
|
|
<ArrowRight className="ml-2 h-4 w-4 self-center" aria-hidden="true" />
|
2022-09-06 22:58:16 +00:00
|
|
|
</Button>
|
|
|
|
</form>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export { UserSettings };
|