PromucFlow_constructor/app/client/src/pages/workspace/settings.tsx

203 lines
5.3 KiB
TypeScript
Raw Normal View History

import React, { useCallback, useEffect, useState } from "react";
import {
useRouteMatch,
useLocation,
useParams,
Route,
useHistory,
} from "react-router-dom";
import { getCurrentWorkspace } from "@appsmith/selectors/workspaceSelectors";
import { useSelector, useDispatch } from "react-redux";
import { TabComponent, TabProp } from "components/ads/Tabs";
import { MenuItemProps } from "design-system";
import styled from "styled-components";
import MemberSettings from "./Members";
import { GeneralSettings } from "./General";
import * as Sentry from "@sentry/react";
import { getAllApplications } from "actions/applicationActions";
import { useMediaQuery } from "react-responsive";
import { BackButton, StickyHeader } from "components/utils/helperComponents";
import { debounce } from "lodash";
import FormDialogComponent from "components/editorComponents/form/FormDialogComponent";
import WorkspaceInviteUsersForm from "@appsmith/pages/workspace/WorkspaceInviteUsersForm";
import { SettingsPageHeader } from "./SettingsPageHeader";
import { navigateToTab } from "@appsmith/pages/workspace/helpers";
const SentryRoute = Sentry.withSentryRouting(Route);
const SettingsWrapper = styled.div<{
isMobile?: boolean;
}>`
width: ${(props) => (props.isMobile ? "345px" : "916px")};
Homepage redesign with themes (#482) * Updating homepage body color * WIP: Fixing scrolls and adding anchors * Removing divider from bottom of the page. * Adding hover background color to app card * Changing edit and launch icons. * Fixing app name paddding in card. * Fixing workspaces overflow * Adding right padding to applications view * Adding share icon to share btn * Fixing Application card styles. * Fixing text decoration in button. * Adding new workspace button * Fixing new workspace and new app styles. * Adding icon sizes. * Fixing Org Name and Org settings menu. * Application menu working * Fixing overlay visibility on app card * Fixing settings page content width. * Fixing workspace icon * Changing app card colors. * Removing debugger * Adding app icon. * Fixing the spaces in application card * Adding storybook-static folder to gitignore. * Adding other storybook files. * Adding menu items for app * Removing cypress selector from text. * Menu width issue fixed * Default app icon color added * Removing hardcoded colors * Removing hardcoded colors. * Light Mode on! * Showing correct icon and color in menu * Update color working properly. * Updating appIcon * Editable text working. * Adding validator * Adding edit permissions to menu * Removing box shadow on app card. * Fixing context menu fill color * Fixing Menu hover issues. * Fixing menu open close hover issues. * Fixing settings pages * Changed Workspace to org. * Fix: State management in EditableText Component (#540) * Error state height is fixed as per design * savingState prop condition fixed * Fixing createnew. * Fixing saving state for application card. * Fixed application card editable text error. * Fixing issue caused during merge. * Fixing tests in create org. * Removing commented code. * Removing unwanted vars. * Fixing delete duplicate tests. * Latest color palette. * Fixing form and table widget. * Removing switcher from header * Removing unused files * Fixing app card context dropdown * Show overlay fix * Adding localStorage support to theme. * Making dark mode the default. Co-authored-by: Rohit Kumawat <rohit.kumawat@primathon.in>
2020-09-16 11:50:47 +00:00
margin: 0 auto;
height: 100%;
&::-webkit-scrollbar {
width: 0px;
}
.tabs-wrapper {
height: 100%;
${({ isMobile }) =>
!isMobile &&
`
padding: 104px 0 0;
`}
}
`;
const StyledStickyHeader = styled(StickyHeader)<{ isMobile?: boolean }>`
padding-top: 24px;
${({ isMobile }) =>
!isMobile &&
`
top: 48px;
position: fixed;
width: 916px;
`}
`;
export const TabsWrapper = styled.div`
.react-tabs {
margin-left: 8px;
}
.react-tabs__tab-list {
border-bottom: 1px solid var(--appsmith-color-black-200);
padding: 36px 0 0;
width: 908px;
}
.react-tabs__tab-panel {
height: calc(100% - 76px);
}
Homepage redesign with themes (#482) * Updating homepage body color * WIP: Fixing scrolls and adding anchors * Removing divider from bottom of the page. * Adding hover background color to app card * Changing edit and launch icons. * Fixing app name paddding in card. * Fixing workspaces overflow * Adding right padding to applications view * Adding share icon to share btn * Fixing Application card styles. * Fixing text decoration in button. * Adding new workspace button * Fixing new workspace and new app styles. * Adding icon sizes. * Fixing Org Name and Org settings menu. * Application menu working * Fixing overlay visibility on app card * Fixing settings page content width. * Fixing workspace icon * Changing app card colors. * Removing debugger * Adding app icon. * Fixing the spaces in application card * Adding storybook-static folder to gitignore. * Adding other storybook files. * Adding menu items for app * Removing cypress selector from text. * Menu width issue fixed * Default app icon color added * Removing hardcoded colors * Removing hardcoded colors. * Light Mode on! * Showing correct icon and color in menu * Update color working properly. * Updating appIcon * Editable text working. * Adding validator * Adding edit permissions to menu * Removing box shadow on app card. * Fixing context menu fill color * Fixing Menu hover issues. * Fixing menu open close hover issues. * Fixing settings pages * Changed Workspace to org. * Fix: State management in EditableText Component (#540) * Error state height is fixed as per design * savingState prop condition fixed * Fixing createnew. * Fixing saving state for application card. * Fixed application card editable text error. * Fixing issue caused during merge. * Fixing tests in create org. * Removing commented code. * Removing unwanted vars. * Fixing delete duplicate tests. * Latest color palette. * Fixing form and table widget. * Removing switcher from header * Removing unused files * Fixing app card context dropdown * Show overlay fix * Adding localStorage support to theme. * Making dark mode the default. Co-authored-by: Rohit Kumawat <rohit.kumawat@primathon.in>
2020-09-16 11:50:47 +00:00
`;
export default function Settings() {
const { workspaceId } = useParams<{ workspaceId: string }>();
const currentWorkspace = useSelector(getCurrentWorkspace).filter(
(el) => el.id === workspaceId,
)[0];
const { path } = useRouteMatch();
const location = useLocation();
const dispatch = useDispatch();
const [showModal, setShowModal] = useState(false);
const [searchValue, setSearchValue] = useState("");
const [pageTitle, setPageTitle] = useState<string>("");
const history = useHistory();
const onButtonClick = () => {
setShowModal(true);
};
useEffect(() => {
if (currentWorkspace) {
setPageTitle(`Members in ${currentWorkspace.name}`);
}
}, [currentWorkspace]);
useEffect(() => {
if (!currentWorkspace) {
dispatch(getAllApplications());
}
}, [dispatch, currentWorkspace]);
const SettingsRenderer = (
<>
<SentryRoute
component={GeneralSettings}
location={location}
path={`${path}/general`}
/>
<SentryRoute
component={useCallback(
(props: any) => (
<MemberSettings {...props} searchValue={searchValue} />
),
[location, searchValue],
)}
location={location}
path={`${path}/members`}
/>
</>
);
const onSearch = debounce((search: string) => {
if (search.trim().length > 0) {
setSearchValue(search);
} else {
setSearchValue("");
}
}, 300);
const tabArr: TabProp[] = [
{
key: "members",
title: "Members",
panelComponent: SettingsRenderer,
// icon: "gear",
// iconSize: IconSize.XL,
},
{
key: "general",
title: "General Settings",
panelComponent: SettingsRenderer,
// icon: "user-2",
// iconSize: IconSize.XL,
},
];
const pageMenuItems: MenuItemProps[] = [
{
icon: "book-line",
className: "documentation-page-menu-item",
onSelect: () => {
/*console.log("hello onSelect")*/
},
text: "Documentation",
},
];
const isMembersPage = location.pathname.indexOf("members") !== -1;
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="Search"
showMoreOptions={false}
title={pageTitle}
/>
</StyledStickyHeader>
<TabsWrapper
className="tabs-wrapper"
data-testid="t--user-edit-tabs-wrapper"
>
<TabComponent
onSelect={(index: number) =>
navigateToTab(tabArr[index].key, location, history)
}
selectedIndex={isMembersPage ? 0 : 1}
tabs={tabArr}
/>
</TabsWrapper>
</SettingsWrapper>
<FormDialogComponent
Form={WorkspaceInviteUsersForm}
canOutsideClickClose
isOpen={showModal}
onClose={() => setShowModal(false)}
title={`Invite Users to ${currentWorkspace?.name}`}
trigger
workspaceId={workspaceId}
/>
</>
);
}