Coed split PR for custom environments [EE PR](https://github.com/appsmithorg/appsmith-ee/pull/2207)
165 lines
4.9 KiB
TypeScript
165 lines
4.9 KiB
TypeScript
import React, { useEffect, useState } from "react";
|
|
import { useLocation, useParams } from "react-router-dom";
|
|
import { getCurrentWorkspace } from "@appsmith/selectors/workspaceSelectors";
|
|
import { useSelector, useDispatch } from "react-redux";
|
|
import styled from "styled-components";
|
|
import { getAllApplications } from "@appsmith/actions/applicationActions";
|
|
import { useMediaQuery } from "react-responsive";
|
|
import { BackButton, StickyHeader } from "components/utils/helperComponents";
|
|
import WorkspaceInviteUsersForm from "pages/workspace/WorkspaceInviteUsersForm";
|
|
import { SettingsPageHeader } from "./SettingsPageHeader";
|
|
import {
|
|
isPermitted,
|
|
PERMISSION_TYPE,
|
|
} from "@appsmith/utils/permissionHelpers";
|
|
import {
|
|
createMessage,
|
|
DOCUMENTATION,
|
|
INVITE_USERS_PLACEHOLDER,
|
|
SEARCH_USERS,
|
|
} from "@appsmith/constants/messages";
|
|
import FormDialogComponent from "components/editorComponents/form/FormDialogComponent";
|
|
import { debounce } from "lodash";
|
|
import { WorkspaceSettingsTabs } from "@appsmith/components/WorkspaceSettingsTabs";
|
|
import { useFeatureFlag } from "utils/hooks/useFeatureFlag";
|
|
import { FEATURE_FLAG } from "@appsmith/entities/FeatureFlag";
|
|
|
|
const SettingsWrapper = styled.div<{
|
|
isMobile?: boolean;
|
|
}>`
|
|
width: ${(props) => (props.isMobile ? "345px" : "978px")};
|
|
margin: var(--ads-v2-spaces-7) auto;
|
|
height: 100%;
|
|
padding-left: var(--ads-v2-spaces-7);
|
|
overflow: hidden;
|
|
padding-left: ${(props) =>
|
|
props.isMobile ? "0" : "var(--ads-v2-spaces-7);"};
|
|
&::-webkit-scrollbar {
|
|
width: 0px;
|
|
}
|
|
.tabs-wrapper {
|
|
height: 100%;
|
|
${({ isMobile }) =>
|
|
!isMobile &&
|
|
`
|
|
padding: 106px 0 0;
|
|
`}
|
|
}
|
|
`;
|
|
|
|
const StyledStickyHeader = styled(StickyHeader)<{ isMobile?: boolean }>`
|
|
/* padding-top: 24px; */
|
|
${({ isMobile }) =>
|
|
!isMobile &&
|
|
`
|
|
top: 72px;
|
|
position: fixed;
|
|
width: 954px;
|
|
`}
|
|
`;
|
|
|
|
enum TABS {
|
|
GENERAL = "general",
|
|
MEMBERS = "members",
|
|
}
|
|
|
|
export default function Settings() {
|
|
const { workspaceId } = useParams<{ workspaceId: string }>();
|
|
const currentWorkspace = useSelector(getCurrentWorkspace).filter(
|
|
(el) => el.id === workspaceId,
|
|
)[0];
|
|
const location = useLocation();
|
|
const dispatch = useDispatch();
|
|
|
|
const [showModal, setShowModal] = useState(false);
|
|
const [searchValue, setSearchValue] = useState("");
|
|
|
|
const [pageTitle, setPageTitle] = useState<string>("");
|
|
const [tabArrLen, setTabArrLen] = useState<number>(0);
|
|
|
|
const isGACEnabled = useFeatureFlag(FEATURE_FLAG.license_gac_enabled);
|
|
|
|
const currentTab = location.pathname.split("/").pop();
|
|
|
|
const isMemberofTheWorkspace = isPermitted(
|
|
currentWorkspace?.userPermissions || [],
|
|
PERMISSION_TYPE.INVITE_USER_TO_WORKSPACE,
|
|
);
|
|
const hasManageWorkspacePermissions = isPermitted(
|
|
currentWorkspace?.userPermissions,
|
|
PERMISSION_TYPE.MANAGE_WORKSPACE,
|
|
);
|
|
const showMembersTab =
|
|
isMemberofTheWorkspace && hasManageWorkspacePermissions;
|
|
|
|
const onButtonClick = () => {
|
|
setShowModal(true);
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (!currentWorkspace) {
|
|
dispatch(getAllApplications());
|
|
} else {
|
|
setPageTitle(`${currentWorkspace?.name}`);
|
|
}
|
|
}, [dispatch, currentWorkspace]);
|
|
|
|
const pageMenuItems: any[] = [
|
|
{
|
|
icon: "book-line",
|
|
className: "documentation-page-menu-item",
|
|
onSelect: () => {},
|
|
text: createMessage(DOCUMENTATION),
|
|
},
|
|
];
|
|
|
|
const isMembersPage = tabArrLen > 1 && currentTab === TABS.MEMBERS;
|
|
|
|
const onSearch = debounce((search: string) => {
|
|
if (search.trim().length > 0) {
|
|
setSearchValue(search);
|
|
} else {
|
|
setSearchValue("");
|
|
}
|
|
}, 300);
|
|
|
|
const isMobile: boolean = useMediaQuery({ maxWidth: 767 });
|
|
return (
|
|
<>
|
|
<SettingsWrapper data-testid="t--settings-wrapper" isMobile={isMobile}>
|
|
<StyledStickyHeader isMobile={isMobile}>
|
|
<BackButton goTo="/applications" />
|
|
<SettingsPageHeader
|
|
buttonText="Add users"
|
|
onButtonClick={onButtonClick}
|
|
onSearch={onSearch}
|
|
pageMenuItems={pageMenuItems}
|
|
searchPlaceholder={createMessage(SEARCH_USERS, !isGACEnabled)}
|
|
showMoreOptions={false}
|
|
showSearchNButton={isMembersPage}
|
|
title={pageTitle}
|
|
/>
|
|
</StyledStickyHeader>
|
|
<WorkspaceSettingsTabs
|
|
currentTab={currentTab}
|
|
hasManageWorkspacePermissions={hasManageWorkspacePermissions}
|
|
isMemberofTheWorkspace={showMembersTab}
|
|
searchValue={searchValue}
|
|
setTabArrLen={setTabArrLen}
|
|
workspacePermissions={currentWorkspace?.userPermissions}
|
|
/>
|
|
</SettingsWrapper>
|
|
{currentWorkspace && (
|
|
<FormDialogComponent
|
|
Form={WorkspaceInviteUsersForm}
|
|
hideDefaultTrigger
|
|
isOpen={showModal}
|
|
onClose={() => setShowModal(false)}
|
|
placeholder={createMessage(INVITE_USERS_PLACEHOLDER, !isGACEnabled)}
|
|
workspace={currentWorkspace}
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
}
|