-
Notifications
You must be signed in to change notification settings - Fork 9.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: New Organization Schema along with the ability to invite existing users to an organization #13002
feat: New Organization Schema along with the ability to invite existing users to an organization #13002
Changes from 66 commits
2e03d9a
04b91da
367ede5
cb94c67
442d430
3e06263
6ae0c24
deb6e03
0a2d343
c5010e9
82529e0
8a38cf9
99ba771
7f69117
cf7273d
03d9bae
11d4c6c
dca50b6
04c40f3
abe419c
e119472
2fc8cc0
7cebdc1
ffbd8a0
40dc7bf
ade3a02
bf296f9
c58ded3
bf9d7ac
16bf486
63f56ff
3267566
50d1e33
0f823e2
179f7af
d3cc068
a3cd4b8
09774a5
5d74142
1a9b3f9
44c755f
6dea2f1
6d41df2
ccdf507
bd4c04c
fd8c3f9
a4bfb8e
b559b30
1f39f5a
1688ca4
ebb1abb
c12a9c8
cb9b3be
1a86f2f
2729778
423ee4f
7cc3153
9dd96f2
2c777e9
b781030
4783b48
9d657f2
82018db
f387434
1247de4
72cea47
07bc2eb
c626a8e
8ffb0a1
f74ba88
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this get into main? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We would still need Team migrations. So, till the time we implement the new team -> Organization import, it is needed. |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -729,17 +729,17 @@ const EventTypeListHeading = ({ | |
return ( | ||
<div className="mb-4 flex items-center space-x-2"> | ||
<Avatar | ||
alt={profile?.name || ""} | ||
alt={profile.name || ""} | ||
href={teamId ? `/settings/teams/${teamId}/profile` : "/settings/my-account/profile"} | ||
imageSrc={`${bookerUrl}${teamId ? "/team" : ""}/${profile.slug}/avatar.png`} | ||
imageSrc={profile.image} | ||
size="md" | ||
className="mt-1 inline-flex justify-center" | ||
/> | ||
<div> | ||
<Link | ||
href={teamId ? `/settings/teams/${teamId}/profile` : "/settings/my-account/profile"} | ||
className="text-emphasis font-bold"> | ||
{profile?.name || ""} | ||
{profile.name || ""} | ||
</Link> | ||
{membershipCount && teamId && ( | ||
<span className="text-subtle relative -top-px me-2 ms-2 text-xs"> | ||
|
@@ -751,13 +751,13 @@ const EventTypeListHeading = ({ | |
</Link> | ||
</span> | ||
)} | ||
{profile?.slug && ( | ||
{profile.slug && ( | ||
<Link href={`${bookerUrl}/${profile.slug}`} className="text-subtle block text-xs"> | ||
{`${bookerUrl.replace("https://", "").replace("http://", "")}/${profile.slug}`} | ||
</Link> | ||
)} | ||
</div> | ||
{!profile?.slug && !!teamId && ( | ||
{!profile.slug && !!teamId && ( | ||
<button onClick={() => publishTeamMutation.mutate({ teamId })}> | ||
<Badge variant="gray" className="-ml-2 mb-1"> | ||
{t("upgrade")} | ||
|
@@ -816,7 +816,7 @@ const CTA = ({ data }: { data: GetByViewerResponse }) => { | |
const Actions = () => { | ||
return ( | ||
<div className="hidden items-center md:flex"> | ||
<TeamsFilter popoverTriggerClassNames="mb-0" showVerticalDivider={true} /> | ||
<TeamsFilter useProfileFilter popoverTriggerClassNames="mb-0" showVerticalDivider={true} /> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It is a way to opt-in to profile based DB querying. As event-type supports profileId now. |
||
</div> | ||
); | ||
}; | ||
|
@@ -853,7 +853,6 @@ const Main = ({ | |
}) => { | ||
const isMobile = useMediaQuery("(max-width: 768px)"); | ||
const searchParams = useCompatSearchParams(); | ||
const orgBranding = useOrgBranding(); | ||
|
||
if (!data || status === "pending") { | ||
return <SkeletonLoader />; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
User already has profile now which has the organization