-
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
chore: redirect platform users to dashboard #15361
Conversation
Rajiv Sahal seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account. You have signed the CLA already but the status is still pending? Let us recheck it. |
Thank you for following the naming conventions! 🙏 Feel free to join our discord and post your PR link. |
The latest updates on your projects. Learn more about Vercel for Git ↗︎
2 Ignored Deployments
|
Graphite Automations"Add platform team as reviewer" took an action on this PR • (06/06/24)1 reviewer was added to this PR based on Keith Williams's automation. |
is there any way we dont add this much platfrom related code to our core code base? 🤔 |
E2E failing / flaky |
|
||
useEffect(() => { | ||
// is platform user trying to access a non-platform page, redirect to platform dashboard | ||
if (isPlatformUser && pathName && !pathName.startsWith("/settings")) { |
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.
if (isPlatformUser && pathName && !pathName.startsWith("/settings")) { | |
if (!isPlatformUser || !pathName) { | |
return | |
} | |
if(!pathName.startsWith("/settings")) { |
https://handbook.cal.com/engineering/best-practices/prefer-early-returns
@@ -27,6 +30,23 @@ const calFont = localFont({ | |||
weight: "600", | |||
}); | |||
|
|||
const Redirects = () => { |
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.
We should either rename it to convey that it is doing redirects related to platform or we can abstract the platform related logic out of this Component.
const router = useRouter(); | ||
const pathName = usePathname(); | ||
// is the connected user in a platform organization or not | ||
const isPlatformUser = session?.data?.isPlatformUser ?? false; |
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.
getInitialProps
doesn't run on SSG pages AFAIU, so this isn't correctly set there.
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.
Everything looks good, except that the redirect doesn't work on SSG pages it seems.
Note that I am test in production mode(not on dev server)
https://github.com/calcom/cal.com/pull/15361/files#r1648663192
This PR is being marked as stale due to inactivity. |
Closing this PR due to staleness. Please reopen if work is to continue. |
What does this PR do?
Mandatory Tasks (DO NOT REMOVE)
How should this be tested?
Run the webapp on localhost, go to
settings/platform/new
and make a new platform client. Once that is done and billing is setup for platform, if we try to navigate to any of the pages such as /event-types or /availability we should automatically be redirected to /settings/platform