DocSpace-client/packages/shared/components/navigation/sub-components/DropBox.tsx

176 lines
5.5 KiB
TypeScript

// (c) Copyright Ascensio System SIA 2009-2024
//
// This program is a free software product.
// You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights.
//
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
//
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
//
// The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
//
// Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks.
//
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
import React, { useCallback } from "react";
import { useTheme } from "styled-components";
import { Direction, VariableSizeList } from "react-window";
import { DeviceType } from "../../../enums";
import { CustomScrollbarsVirtualList } from "../../scrollbar";
import { StyledBox, StyledContainer } from "../Navigation.styled";
import { IDropBoxProps } from "../Navigation.types";
import NavigationLogo from "./LogoBlock";
import ArrowButton from "./ArrowBtn";
import ControlButtons from "./ControlBtn";
import Row from "./Row";
const DropBox = React.forwardRef<HTMLDivElement, IDropBoxProps>(
(
{
sectionHeight,
dropBoxWidth,
isRootFolder,
onBackToParentFolder,
canCreate,
navigationItems,
getContextOptionsFolder,
getContextOptionsPlus,
toggleDropBox,
toggleInfoPanel,
onClickAvailable,
isInfoPanelVisible,
isDesktop,
isDesktopClient,
withLogo,
burgerLogo,
currentDeviceType,
navigationTitleContainerNode,
onCloseDropBox,
},
ref,
) => {
const [dropBoxHeight, setDropBoxHeight] = React.useState(0);
const countItems = navigationItems.length;
const getItemSize = useCallback(
(index: number): number => {
if (index === countItems - 1) return 51;
return currentDeviceType !== DeviceType.desktop ? 36 : 30;
},
[countItems, currentDeviceType],
);
const { interfaceDirection } = useTheme();
React.useEffect(() => {
const itemsHeight = navigationItems.map((item, index) =>
getItemSize(index),
);
const currentHeight = itemsHeight.reduce((a, b) => a + b);
let navHeight = 41;
if (currentDeviceType === DeviceType.tablet) {
navHeight = 49;
}
if (currentDeviceType === DeviceType.mobile) {
navHeight = 45;
}
setDropBoxHeight(
currentHeight + navHeight > sectionHeight
? sectionHeight - navHeight - 20
: currentHeight,
);
}, [sectionHeight, currentDeviceType, navigationItems, getItemSize]);
const isTabletView = currentDeviceType === DeviceType.tablet;
return (
<StyledBox
ref={ref}
height={sectionHeight < dropBoxHeight ? sectionHeight : null}
dropBoxWidth={dropBoxWidth}
withLogo={withLogo}
>
<StyledContainer
isDropBoxComponent
isInfoPanelVisible={isInfoPanelVisible}
isDesktopClient={isDesktopClient}
withLogo={!!withLogo && isTabletView}
isDesktop={isDesktop}
>
{withLogo && (
<NavigationLogo
burgerLogo={burgerLogo}
className="navigation-logo drop-box-logo"
/>
)}
<ArrowButton
isRootFolder={isRootFolder}
onBackToParentFolder={onBackToParentFolder}
/>
{navigationTitleContainerNode}
<ControlButtons
isDesktop={isDesktop}
isMobile={currentDeviceType !== DeviceType.desktop}
isRootFolder={isRootFolder}
canCreate={canCreate}
getContextOptionsFolder={getContextOptionsFolder}
getContextOptionsPlus={getContextOptionsPlus}
toggleInfoPanel={toggleInfoPanel}
toggleDropBox={toggleDropBox}
isInfoPanelVisible={isInfoPanelVisible}
onCloseDropBox={onCloseDropBox}
showTitle
/>
</StyledContainer>
<VariableSizeList
direction={interfaceDirection as Direction}
height={dropBoxHeight}
width="auto"
itemCount={countItems}
itemSize={getItemSize}
itemData={[
navigationItems,
onClickAvailable,
{ withLogo: !!withLogo, currentDeviceType },
]}
outerElementType={CustomScrollbarsVirtualList}
>
{Row}
</VariableSizeList>
</StyledBox>
);
},
);
DropBox.displayName = "DropBox";
export default React.memo(DropBox);