Skip to content
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

Closed
wants to merge 20 commits into from

Conversation

Ryukemeister
Copy link
Contributor

@Ryukemeister Ryukemeister commented Jun 6, 2024

What does this PR do?

  • This PR adds a redirect for all platform clients to make sure that a platform user is not able to access any of the consumer related pages.

Mandatory Tasks (DO NOT REMOVE)

  • I have self-reviewed the code (A decent size PR without self-review might be rejected)
  • I have added a Docs issue here if this PR makes changes that would require a documentation change
  • I have added or modified automated tests that prove my fix is effective or that my feature works (PRs might be rejected if logical changes are not properly tested)

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

@CLAassistant
Copy link

CLAassistant commented Jun 6, 2024

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you all sign our Contributor License Agreement before we can accept your contribution.
3 out of 4 committers have signed the CLA.

✅ ThyMinimalDev
✅ keithwillcode
✅ Ryukemeister
❌ Rajiv Sahal


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.

Copy link
Contributor

github-actions bot commented Jun 6, 2024

Thank you for following the naming conventions! 🙏 Feel free to join our discord and post your PR link.

@keithwillcode keithwillcode added core area: core, team members only platform Anything related to our platform plan labels Jun 6, 2024
@graphite-app graphite-app bot requested a review from a team June 6, 2024 19:45
Copy link

vercel bot commented Jun 6, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
ai ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 27, 2024 9:39pm
2 Ignored Deployments
Name Status Preview Comments Updated (UTC)
cal ⬜️ Ignored (Inspect) Visit Preview Jun 27, 2024 9:39pm
calcom-web-canary ⬜️ Ignored (Inspect) Visit Preview Jun 27, 2024 9:39pm

Copy link

graphite-app bot commented Jun 6, 2024

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.

@PeerRich
Copy link
Member

PeerRich commented Jun 7, 2024

is there any way we dont add this much platfrom related code to our core code base? 🤔

@ThyMinimalDev ThyMinimalDev enabled auto-merge June 13, 2024 15:15
@ThyMinimalDev ThyMinimalDev added this pull request to the merge queue Jun 13, 2024
@github-merge-queue github-merge-queue bot removed this pull request from the merge queue due to failed status checks Jun 13, 2024
@PeerRich
Copy link
Member

E2E failing / flaky

@PeerRich PeerRich added this pull request to the merge queue Jun 13, 2024
@github-merge-queue github-merge-queue bot removed this pull request from the merge queue due to failed status checks Jun 13, 2024
@keithwillcode keithwillcode modified the milestones: v4.2, v4.3 Jun 17, 2024
@PeerRich PeerRich added this pull request to the merge queue Jun 19, 2024
@github-merge-queue github-merge-queue bot removed this pull request from the merge queue due to failed status checks Jun 19, 2024

useEffect(() => {
// is platform user trying to access a non-platform page, redirect to platform dashboard
if (isPlatformUser && pathName && !pathName.startsWith("/settings")) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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 = () => {
Copy link
Member

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;
Copy link
Member

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.

https://www.loom.com/share/21300c444d934f63915f9c57f2325d52

Copy link
Member

@hariombalhara hariombalhara left a 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

Copy link
Contributor

This PR is being marked as stale due to inactivity.

@github-actions github-actions bot added the Stale label Jul 12, 2024
@keithwillcode keithwillcode modified the milestones: v4.3, v4.4 Jul 16, 2024
@github-actions github-actions bot removed the Stale label Jul 17, 2024
@keithwillcode
Copy link
Contributor

Closing this PR due to staleness. Please reopen if work is to continue.

@dosubot dosubot bot removed this from the v4.4 milestone Jul 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
core area: core, team members only Medium priority Created by Linear-GitHub Sync platform Anything related to our platform plan
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants