Skip to content

Commit 532b78a

Browse files
authored
added empty screen for missing platform plan (#15467)
1 parent 1251091 commit 532b78a

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import { EmptyScreen, Button } from "@calcom/ui";
2+
3+
export default function NoPlatformPlan() {
4+
return (
5+
<EmptyScreen
6+
Icon="credit-card"
7+
headline="Subscription needed"
8+
description="You are not subscribed to a Platform plan."
9+
buttonRaw={
10+
<div className="flex gap-2">
11+
<Button href="https://cal.com/platform/pricing">Go to Pricing</Button>
12+
<Button color="secondary" href="https://cal.com/pricing">
13+
Contact Sales
14+
</Button>
15+
</div>
16+
}
17+
/>
18+
);
19+
}

apps/web/pages/settings/platform/index.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import { useDeleteOAuthClient } from "@lib/hooks/settings/platform/oauth-clients
1212

1313
import PageWrapper from "@components/PageWrapper";
1414
import { HelpCards } from "@components/settings/platform/dashboard/HelpCards";
15+
import NoPlatformPlan from "@components/settings/platform/dashboard/NoPlatformPlan";
1516
import { ManagedUserList } from "@components/settings/platform/dashboard/managed-user-list";
1617
import { OAuthClientsList } from "@components/settings/platform/dashboard/oauth-clients-list";
1718
import { useGetUserAttributes } from "@components/settings/platform/hooks/useGetUserAttributes";
@@ -98,7 +99,7 @@ export default function Platform() {
9899
hideHeadingOnMobile
99100
withoutMain={false}
100101
SidebarContainer={<></>}>
101-
You are not subscribed to a Platform plan.
102+
<NoPlatformPlan />
102103
</Shell>
103104
</div>
104105
);

apps/web/pages/settings/platform/oauth-clients/[clientId]/edit/index.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import { useOAuthClient } from "@lib/hooks/settings/platform/oauth-clients/useOA
1010
import { useUpdateOAuthClient } from "@lib/hooks/settings/platform/oauth-clients/usePersistOAuthClient";
1111

1212
import PageWrapper from "@components/PageWrapper";
13+
import NoPlatformPlan from "@components/settings/platform/dashboard/NoPlatformPlan";
1314
import { useGetUserAttributes } from "@components/settings/platform/hooks/useGetUserAttributes";
1415
import type { FormValues } from "@components/settings/platform/oauth-clients/oauth-client-form";
1516
import { OAuthClientForm as EditOAuthClientForm } from "@components/settings/platform/oauth-clients/oauth-client-form";
@@ -124,7 +125,7 @@ export default function EditOAuthClient() {
124125
return (
125126
<div>
126127
<Shell isPlatformUser={true} hideHeadingOnMobile withoutMain={false} SidebarContainer={<></>}>
127-
You are not subscribed to a Platform plan.
128+
<NoPlatformPlan />
128129
</Shell>
129130
</div>
130131
);

apps/web/pages/settings/platform/oauth-clients/create.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import { showToast } from "@calcom/ui";
99
import { useCreateOAuthClient } from "@lib/hooks/settings/platform/oauth-clients/usePersistOAuthClient";
1010

1111
import PageWrapper from "@components/PageWrapper";
12+
import NoPlatformPlan from "@components/settings/platform/dashboard/NoPlatformPlan";
1213
import { useGetUserAttributes } from "@components/settings/platform/hooks/useGetUserAttributes";
1314
import type { FormValues } from "@components/settings/platform/oauth-clients/oauth-client-form";
1415
import { OAuthClientForm } from "@components/settings/platform/oauth-clients/oauth-client-form";
@@ -82,7 +83,7 @@ export default function CreateOAuthClient() {
8283
return (
8384
<div>
8485
<Shell isPlatformUser={true} hideHeadingOnMobile withoutMain={false} SidebarContainer={<></>}>
85-
You are not subscribed to a Platform plan.
86+
<NoPlatformPlan />
8687
</Shell>
8788
</div>
8889
);

0 commit comments

Comments
 (0)