mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
eb366887d7
* fix: workspace settings pages authorization * chore: user cannot add a member with a higher role than theirs * chore: update workspace general settings auth
59 lines
1.9 KiB
TypeScript
59 lines
1.9 KiB
TypeScript
import { observer } from "mobx-react-lite";
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
import { WorkspaceSettingLayout } from "layouts/settings-layout";
|
|
// component
|
|
import { WorkspaceSettingHeader } from "components/headers";
|
|
// ui
|
|
import { Button } from "@plane/ui";
|
|
// types
|
|
import { NextPageWithLayout } from "types/app";
|
|
// constants
|
|
import { EUserWorkspaceRoles } from "constants/workspace";
|
|
|
|
const BillingSettingsPage: NextPageWithLayout = observer(() => {
|
|
const {
|
|
user: { currentWorkspaceRole },
|
|
} = useMobxStore();
|
|
|
|
const isAdmin = currentWorkspaceRole === EUserWorkspaceRoles.ADMIN;
|
|
|
|
if (!isAdmin)
|
|
return (
|
|
<div className="h-full w-full flex justify-center mt-10 p-4">
|
|
<p className="text-custom-text-300 text-sm">You are not authorized to access this page.</p>
|
|
</div>
|
|
);
|
|
|
|
return (
|
|
<section className="pr-9 py-8 w-full overflow-y-auto">
|
|
<div>
|
|
<div className="flex items-center py-3.5 border-b border-custom-border-100">
|
|
<h3 className="text-xl font-medium">Billing & Plans</h3>
|
|
</div>
|
|
</div>
|
|
<div className="px-4 py-6">
|
|
<div>
|
|
<h4 className="text-md mb-1 leading-6">Current plan</h4>
|
|
<p className="mb-3 text-sm text-custom-text-200">You are currently using the free plan</p>
|
|
<a href="https://plane.so/pricing" target="_blank" rel="noreferrer">
|
|
<Button variant="neutral-primary">View Plans</Button>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
});
|
|
|
|
BillingSettingsPage.getLayout = function getLayout(page: React.ReactElement) {
|
|
return (
|
|
<AppLayout header={<WorkspaceSettingHeader title="Billing & Plans Settings" />}>
|
|
<WorkspaceSettingLayout>{page}</WorkspaceSettingLayout>
|
|
</AppLayout>
|
|
);
|
|
};
|
|
|
|
export default BillingSettingsPage;
|