Merge branch 'develop' into bugfix/67422

This commit is contained in:
Alexey Safronov 2024-08-07 11:55:57 +04:00
commit 32cb80dd66
29 changed files with 365 additions and 70 deletions

View File

@ -43,6 +43,7 @@ import { DeviceType, IndexedDBStores } from "@docspace/shared/enums";
import indexedDbHelper from "@docspace/shared/utils/indexedDBHelper";
import { useThemeDetector } from "@docspace/shared/hooks/useThemeDetector";
import { sendToastReport } from "@docspace/shared/utils/crashReport";
import { combineUrl } from "@docspace/shared/utils/combineUrl";
import config from "PACKAGE_FILE";
@ -77,6 +78,7 @@ const Shell = ({ items = [], page = "home", ...rest }) => {
userTheme,
//user,
userId,
userLoginEventId,
currentDeviceType,
timezone,
showArticleLoader,
@ -134,6 +136,7 @@ const Shell = ({ items = [], page = "home", ...rest }) => {
command: "subscribe",
data: { roomParts: "backup-restore" },
});
socketHelper.on("restore-backup", () => {
getRestoreProgress()
.then((response) => {
@ -159,7 +162,27 @@ const Shell = ({ items = [], page = "home", ...rest }) => {
command: "subscribe",
data: { roomParts: "QUOTA", individual: true },
});
}, [socketHelper]);
socketHelper.emit({
command: "subscribe",
data: { roomParts: userId },
});
socketHelper.on("s:logout-session", (loginEventId) => {
console.log(`[WS] "logout-session"`, loginEventId, userLoginEventId);
if (userLoginEventId === loginEventId || loginEventId === 0) {
window.location.replace(
combineUrl(window.ClientConfig?.proxy?.url, "/login"),
);
}
});
}, [
socketHelper,
userLoginEventId,
setPreparationPortalDialogVisible,
userId,
]);
const { t, ready } = useTranslation(["Common"]); //TODO: if enable banner ["Common", "SmartBanner"]
@ -533,6 +556,7 @@ const ShellWrapper = inject(
setSnackbarExist,
userTheme: isFrame ? frameConfig?.theme : userTheme,
userId: userStore?.user?.id,
userLoginEventId: userStore?.user?.loginEventId,
currentDeviceType,
showArticleLoader: clientLoadingStore.showArticleLoader,
setPortalTariff,

View File

@ -75,19 +75,16 @@ export const getDescription = (
if (isFolder) {
return match([parentRoomType, folderType, access])
.with([P._, FolderType.Done, P._], () =>
t("Files:EmptyFormFolderDoneHeaderText"),
t("Files:EmptyFormFolderDoneDescriptionText"),
)
.with([P._, FolderType.InProgress, P._], () =>
t("Files:EmptyFormFolderProgressHeaderText"),
t("Files:EmptyFormFolderProgressDescriptionText"),
)
.with(
[
P._,
P.union(FolderType.SubFolderDone, FolderType.SubFolderInProgress),
P._,
],
() => t("Files:EmptyFormSubFolderHeaderText"),
.with([P._, FolderType.SubFolderDone, P._], () =>
t("Files:EmptyFormSubFolderDoneDescriptionText"),
)
.with([P._, FolderType.SubFolderInProgress, P._], () =>
t("Files:EmptyFormSubFolderProgressDescriptionText"),
)
.with(
[
@ -130,16 +127,19 @@ export const getTitle = (
if (isFolder) {
return match([parentRoomType, folderType, access])
.with([P._, FolderType.Done, P._], () =>
t("Files:EmptyFormFolderDoneDescriptionText"),
t("Files:EmptyFormFolderDoneHeaderText"),
)
.with([P._, FolderType.InProgress, P._], () =>
t("Files:EmptyFormFolderProgressDescriptionText"),
t("Files:EmptyFormFolderProgressHeaderText"),
)
.with([P._, FolderType.SubFolderDone, P._], () =>
t("Files:EmptyFormSubFolderDoneDescriptionText"),
)
.with([P._, FolderType.SubFolderInProgress, P._], () =>
t("Files:EmptyFormSubFolderProgressDescriptionText"),
.with(
[
P._,
P.union(FolderType.SubFolderDone, FolderType.SubFolderInProgress),
P._,
],
() => t("Files:EmptyFormSubFolderHeaderText"),
)
.with(
[

View File

@ -110,7 +110,7 @@ export const enum PluginComponents {
export const enum PluginUsersType {
owner = "Owner",
docSpaceAdmin = "DocspaceAdmin",
docSpaceAdmin = "DocSpaceAdmin",
roomAdmin = "RoomAdmin",
collaborator = "Collaborator",
user = "User",

View File

@ -37,9 +37,9 @@ const OfficialDocumentation = ({ dataBackupUrl }) => {
const { t } = useTranslation("PaymentsEnterprise");
const dockerLink =
"https://helpcenter.onlyoffice.com/installation/docspace-enterprise-install-docker.aspx";
"https://helpcenter.onlyoffice.com/installation/docspace-enterprise-install-script.aspx";
const linuxDocker =
"https://helpcenter.onlyoffice.com/installation/docspace-enterprise-install-linux.aspx";
"https://helpcenter.onlyoffice.com/installation/docspace-enterprise-install-script.aspx";
const windowsDocker =
"https://helpcenter.onlyoffice.com/installation/docspace-enterprise-install-windows.aspx";

View File

@ -55,7 +55,7 @@ const LanguageComboboxWrapper = (props: TLanguageCombobox) => {
onSelectLanguage={onLanguageSelect}
cultures={cultures}
selectedCulture={currentCultureName}
withBorder={false}
withBorder={!isMobileView}
/>
);
};

View File

@ -141,25 +141,17 @@ class PeopleTableHeader extends React.Component {
const { filter, setFilter, setIsLoading, navigate, location } = this.props;
const newFilter = filter.clone();
if (newFilter.sortBy === sortBy && sortBy !== "AZ") {
if (
newFilter.sortBy === sortBy ||
(sortBy === "AZ" && newFilter.sortBy === "firstname")
) {
newFilter.sortOrder =
newFilter.sortOrder === "ascending" ? "descending" : "ascending";
} else {
newFilter.sortBy = sortBy;
if (sortBy === "AZ") {
if (
newFilter.sortBy !== "lastname" &&
newFilter.sortBy !== "firstname"
) {
newFilter.sortBy = "firstname";
} else if (newFilter.sortBy === "lastname") {
newFilter.sortBy = "firstname";
} else {
newFilter.sortBy = "lastname";
}
newFilter.sortOrder =
newFilter.sortOrder === "ascending" ? "descending" : "ascending";
newFilter.sortBy = "firstname";
}
}

View File

@ -605,6 +605,7 @@ const PeopleTableRow = (props) => {
onClick={onEmailClick}
isTextOverflow
dir="auto"
enableUserSelect
>
{email}
</Link>

View File

@ -196,6 +196,7 @@ const InfiniteGrid = (props) => {
key={key}
className={`tiles-loader ${type}`}
isFolder={type === "isFolder"}
isRoom={type === "isRoom"}
/>,
);
}

View File

@ -2504,6 +2504,9 @@ class FilesActionStore {
const { clearFiles, setBufferSelection } = this.filesStore;
const { clearInsideGroup, insideGroupBackUrl } =
this.peopleStore.groupsStore;
const { isLoading } = this.clientLoadingStore;
if (isLoading) return;
setBufferSelection(null);

View File

@ -103,6 +103,7 @@ const Root = ({
const { filesSettings } = useFilesSettings({});
const { socketHelper } = useSocketHelper({
socketUrl: user ? settings?.socketUrl ?? "" : "",
user,
});
const {
onSDKRequestSaveAs,

View File

@ -29,12 +29,14 @@
import React from "react";
import SocketIOHelper from "@docspace/shared/utils/socket";
import { combineUrl } from "@docspace/shared/utils/combineUrl";
import { getRestoreProgress } from "@docspace/shared/api/portal";
import { getUser } from "@docspace/shared/api/people";
import { EDITOR_ID } from "@docspace/shared/constants";
import { UseSocketHelperProps } from "@/types";
const useSocketHelper = ({ socketUrl }: UseSocketHelperProps) => {
const useSocketHelper = ({ socketUrl, user }: UseSocketHelperProps) => {
const [socketHelper, setSocketHelper] = React.useState<SocketIOHelper | null>(
null,
);
@ -48,6 +50,11 @@ const useSocketHelper = ({ socketUrl }: UseSocketHelperProps) => {
data: { roomParts: "backup-restore" },
});
socketIOHelper.emit({
command: "subscribe",
data: { roomParts: user?.id || "" },
});
socketIOHelper.on("restore-backup", async () => {
try {
const response = await getRestoreProgress();
@ -69,6 +76,24 @@ const useSocketHelper = ({ socketUrl }: UseSocketHelperProps) => {
}
});
socketIOHelper.on("s:logout-session", async (loginEventId) => {
console.log(`[WS] "logout-session"`, loginEventId, user?.loginEventId);
if (
Number(loginEventId) === user?.loginEventId ||
Number(loginEventId) === 0
) {
const docEditor =
typeof window !== "undefined" &&
window.DocEditor?.instances[EDITOR_ID];
docEditor?.requestClose();
window.location.replace(
combineUrl(window.ClientConfig?.proxy?.url, "/login"),
);
}
});
setSocketHelper(socketIOHelper);
}, [socketHelper, socketUrl]);
@ -76,4 +101,3 @@ const useSocketHelper = ({ socketUrl }: UseSocketHelperProps) => {
};
export default useSocketHelper;

View File

@ -334,6 +334,7 @@ export interface SelectFileDialogProps {
export interface UseSocketHelperProps {
socketUrl: string;
user?: TUser;
}
export interface UseEventsProps {

View File

@ -70,7 +70,7 @@ const LanguageComboboxWrapper = () => {
onSelectLanguage={onLanguageSelect}
cultures={cultures}
selectedCulture={currentCulture}
withBorder={false}
withBorder={!isMobileView}
isMobileView={isMobileView}
/>
);

View File

@ -71,6 +71,7 @@ export type TUser = {
cultureName?: string;
groups?: TUserGroup[];
shared?: boolean;
loginEventId?: number;
};
export type TGetUserList = {

View File

@ -28,7 +28,7 @@ import { List } from "react-virtualized";
import styled, { css } from "styled-components";
import { Base } from "../../themes";
import { mobile, tablet } from "../../utils";
import { desktop, mobile, tablet } from "../../utils";
import { TViewAs } from "../../types";
const StyledScroll = styled.div`
@ -155,4 +155,28 @@ StyledScroll.defaultProps = {
theme: Base,
};
export { StyledScroll, StyledList };
const paddingCss = css`
@media ${desktop} {
margin-inline-start: 1px;
padding-inline-end: 0;
}
@media ${tablet} {
margin-inline-start: -1px;
}
`;
const StyledItem = styled.div`
display: grid;
grid-template-columns: repeat(auto-fill, minmax(216px, 1fr));
gap: 14px 16px;
width: 100%;
@media ${tablet} {
gap: 14px;
}
${paddingCss};
`;
export { StyledScroll, StyledList, StyledItem };

View File

@ -24,27 +24,66 @@
// 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 from "react";
import { useState, useEffect } from "react";
import { isMobile } from "../../utils";
import ListComponent from "./sub-components/List";
import GridComponent from "./sub-components/Grid";
import { InfiniteLoaderProps } from "./InfiniteLoader.types";
import { MAX_INFINITE_LOADER_SHIFT } from "../../utils/device";
const InfiniteLoaderComponent = (props: InfiniteLoaderProps) => {
const { viewAs, isLoading } = props;
const [scrollTop, setScrollTop] = useState(0);
const [showSkeleton, setShowSkeleton] = useState(false);
const scroll = isMobile()
? document.querySelector("#customScrollBar .scroll-wrapper > .scroller")
: document.querySelector("#sectionScroll .scroll-wrapper > .scroller");
const onScroll = (e: Event) => {
const eventTarget = e.target as HTMLElement;
const currentScrollTop = eventTarget.scrollTop;
setScrollTop(currentScrollTop ?? 0);
const scrollShift = scrollTop - currentScrollTop;
if (
scrollShift > MAX_INFINITE_LOADER_SHIFT ||
scrollShift < -MAX_INFINITE_LOADER_SHIFT
) {
setShowSkeleton(true);
setTimeout(() => {
setShowSkeleton(false);
}, 200);
}
};
useEffect(() => {
if (scroll) scroll.addEventListener("scroll", onScroll);
return () => {
if (scroll) scroll.removeEventListener("scroll", onScroll);
};
});
if (isLoading) return null;
return viewAs === "tile" ? (
<GridComponent scroll={scroll ?? window} {...props} />
<GridComponent
scroll={scroll ?? window}
showSkeleton={showSkeleton}
{...props}
/>
) : (
<ListComponent scroll={scroll ?? window} {...props} />
<ListComponent
scroll={scroll ?? window}
showSkeleton={showSkeleton}
{...props}
/>
);
};

View File

@ -42,6 +42,7 @@ export interface InfiniteLoaderProps {
className?: string;
infoPanelVisible?: boolean;
countTilesInRow?: number;
showSkeleton?: boolean;
}
export interface ListComponentProps extends InfiniteLoaderProps {

View File

@ -26,8 +26,10 @@
import React, { useCallback, useEffect, useRef } from "react";
import { InfiniteLoader, WindowScroller, List } from "react-virtualized";
import { StyledList } from "../InfiniteLoader.styled";
import { StyledItem, StyledList } from "../InfiniteLoader.styled";
import { GridComponentProps } from "../InfiniteLoader.types";
import { TileSkeleton } from "../../../skeletons/tiles";
import { RectangleSkeleton } from "../../../skeletons";
const GridComponent = ({
hasMoreFiles,
@ -39,12 +41,13 @@ const GridComponent = ({
children,
className,
scroll,
showSkeleton,
}: GridComponentProps) => {
const loaderRef = useRef<InfiniteLoader | null>(null);
const listRef = useRef<List | null>(null);
useEffect(() => {
listRef?.current?.recomputeRowHeights();
// listRef?.current?.recomputeRowHeights(); //TODO: return there will be problems with the height of the tile when clicking on the backspace
});
const isItemLoaded = useCallback(
@ -58,11 +61,50 @@ const GridComponent = ({
index,
style,
key,
isScrolling,
}: {
index: number;
style: React.CSSProperties;
key: string;
isScrolling: boolean;
}) => {
const elem = children[index] as React.ReactElement;
const itemClassNames = elem.props?.className;
const isFolder = itemClassNames?.includes("isFolder");
const isRoom = itemClassNames?.includes("isRoom");
const isHeader =
itemClassNames?.includes("folder_header") ||
itemClassNames?.includes("files_header");
if (isScrolling && showSkeleton) {
const list = [];
let i = 0;
if (isHeader) {
return (
<div key={key} style={style}>
<StyledItem>
<RectangleSkeleton height="22px" width="100px" animate />
</StyledItem>
</div>
);
}
while (i < countTilesInRow) {
list.push(
<TileSkeleton key={key} isFolder={isFolder} isRoom={isRoom} />,
);
i += 1;
}
return (
<div key={key} style={style}>
<StyledItem>{list.map((item) => item)}</StyledItem>
</div>
);
}
return (
<div className="window-item" style={style} key={key}>
{children[index]}

View File

@ -47,6 +47,7 @@ const ListComponent = ({
className,
scroll,
infoPanelVisible,
showSkeleton,
}: ListComponentProps) => {
const loaderRef = useRef<InfiniteLoader | null>(null);
const listRef = useRef<List | null>(null);
@ -89,13 +90,16 @@ const ListComponent = ({
key,
index,
style,
isScrolling,
}: {
key: string;
index: number;
style: React.CSSProperties;
isScrolling: boolean;
}) => {
const isLoaded = isItemLoaded({ index });
if (!isLoaded) return getLoader(style, key);
if (!isLoaded || (isScrolling && showSkeleton))
return getLoader(style, key);
return (
<div className="row-list-item window-item" style={style} key={key}>
@ -108,10 +112,12 @@ const ListComponent = ({
index,
style,
key,
isScrolling,
}: {
index: number;
style: React.CSSProperties;
key: string;
isScrolling: boolean;
}) => {
if (!columnInfoPanelStorageName || !columnStorageName) {
throw new Error("columnStorageName is required for a table view");
@ -122,7 +128,8 @@ const ListComponent = ({
: localStorage.getItem(columnStorageName);
const isLoaded = isItemLoaded({ index });
if (!isLoaded) return getLoader(style, key);
if (!isLoaded || (isScrolling && showSkeleton))
return getLoader(style, key);
return (
<div

View File

@ -111,6 +111,7 @@ export const ImageViewer = ({
const toolbarRef = useRef<ImperativeHandle>(null);
const [scale, setScale] = useState(1);
const [showOriginSrc, setShowOriginSrc] = useState(false);
const [isError, setIsError] = useState<boolean>(false);
const [isLoading, setIsLoading] = useState<boolean>(false);
const [backgroundBlack, setBackgroundBlack] = useState<boolean>(() => false);
@ -854,18 +855,19 @@ export const ImageViewer = ({
}
};
const onError = useCallback(
(e: SyntheticEvent<HTMLImageElement, Event>) => {
if (window.ClientConfig?.imageThumbnails && thumbnailSrc && src) {
// if thumbnailSrc is unavailable, try to load original image
e.currentTarget.src = src;
return;
}
const onError = useCallback(() => {
if (
window.ClientConfig?.imageThumbnails &&
thumbnailSrc &&
(src || isTiff)
) {
// if thumbnailSrc is unavailable, try to load original image
setShowOriginSrc(true);
return;
}
setIsError(true);
},
[src, thumbnailSrc],
);
setIsError(true);
}, [src, thumbnailSrc, isTiff]);
const model = React.useMemo(() => contextModel(true), [contextModel]);
@ -951,6 +953,16 @@ export const ImageViewer = ({
};
}, []);
useLayoutEffect(() => {
return () => {
if (imgRef.current) {
// abort img loading
// eslint-disable-next-line react-hooks/exhaustive-deps
imgRef.current.src = "";
}
};
}, []);
return (
<>
{isMobile && !backgroundBlack && mobileDetails}
@ -973,7 +985,9 @@ export const ImageViewer = ({
<Image
draggable="false"
src={
window.ClientConfig?.imageThumbnails && thumbnailSrc
window.ClientConfig?.imageThumbnails &&
thumbnailSrc &&
!showOriginSrc
? `${thumbnailSrc}&size=3840x2160`
: src
}

View File

@ -63,7 +63,7 @@ const StyledSelector = styled.div`
overflow: hidden;
`;
const StyledHeader = styled.div<{ withoutBorder: boolean }>`
const StyledHeader = styled.div<{ withoutBorder?: boolean }>`
width: calc(100% - 32px);
min-height: 53px;
height: 53px;

View File

@ -47,7 +47,7 @@ type THeaderBackButton =
| {
onBackClick?: undefined;
withoutBackButton?: undefined;
withoutBorder: undefined;
withoutBorder?: undefined;
};
export type TInfoBarData = {

View File

@ -175,7 +175,6 @@ const LinkRow = ({
{!isArchiveFolder && (
<IconButton
size={16}
className="link-row_copy-icon"
iconName={CopyIcon}
onClick={() => onCopyLink(link)}
title={t("Common:CreateAndCopy")}
@ -221,6 +220,7 @@ const LinkRow = ({
type="onlyIcon"
isDisabled={isExpiredLink || isLoaded}
manualWidth="fit-content"
withBackdrop={false}
/>
)}
</div>

View File

@ -44,6 +44,7 @@ const useLoadersHelper = () => {
const [isFirstLoad, setIsFirstLoad] = React.useState(true);
const startLoader = React.useRef<Date | null>(new Date());
const loaderTimeout = React.useRef<NodeJS.Timeout | null>(null);
const breadCrumbsLoaderTimeout = React.useRef<NodeJS.Timeout | null>(null);
const breadCrumbsStartLoader = React.useRef<Date | null>(new Date());
@ -59,9 +60,10 @@ const useLoadersHelper = () => {
const calculateLoader = React.useCallback(() => {
if (isFirstLoad) {
setShowLoader(true);
startLoader.current = new Date();
loaderTimeout.current = setTimeout(() => {
startLoader.current = new Date();
if (isMount.current) setShowLoader(true);
}, SHOW_LOADER_TIMER);
} else if (startLoader.current) {
const currentDate = new Date();
@ -80,6 +82,11 @@ const useLoadersHelper = () => {
setShowLoader(false);
}
}, MIN_LOADER_TIMER - ms);
loaderTimeout.current = null;
} else if (loaderTimeout.current) {
clearTimeout(loaderTimeout.current);
loaderTimeout.current = null;
}
}, [isFirstLoad]);

View File

@ -238,7 +238,7 @@ const FilesSelectorComponent = ({
setSelectedItemType(undefined);
getRootData();
} else {
setItems([]);
// setItems([]);
setBreadCrumbs((bc) => {
const idx = bc.findIndex(
@ -302,7 +302,7 @@ const FilesSelectorComponent = ({
if (item.isFolder) {
setIsFirstLoad(true);
setItems([]);
// setItems([]);
setBreadCrumbs((value) => [
...value,
{
@ -445,7 +445,14 @@ const FilesSelectorComponent = ({
selectedFileInfo,
);
},
[breadCrumbs, selectedFileInfo, selectedItemId, selectedTreeNode, onSubmit],
[
breadCrumbs,
rootFolderType,
onSubmit,
selectedItemId,
selectedTreeNode,
selectedFileInfo,
],
);
React.useEffect(() => {
@ -499,7 +506,7 @@ const FilesSelectorComponent = ({
submitButtonLabel,
submitButtonId,
disableSubmitButton: getIsDisabled(
isFirstLoad,
isFirstLoad && showLoader,
isSelectedParentFolder,
selectedItemId,
selectedItemType,

View File

@ -27,11 +27,19 @@
import React from "react";
import { RectangleSkeleton } from "@docspace/shared/skeletons";
import { StyledTile, StyledBottom, StyledMainContent } from "./Tiles.styled";
import {
StyledTile,
StyledBottom,
StyledMainContent,
StyledRoomTile,
StyledRoomTileTopContent,
StyledRoomTileBottomContent,
} from "./Tiles.styled";
import type { TileSkeletonProps } from "./Tiles.types";
export const TileSkeleton = ({
isFolder,
isRoom,
title,
borderRadius,
backgroundColor,
@ -84,6 +92,79 @@ export const TileSkeleton = ({
/>
</StyledBottom>
</StyledTile>
) : isRoom ? (
<StyledTile {...rest}>
<StyledRoomTile>
<StyledRoomTileTopContent>
<RectangleSkeleton
className="first-content"
title={title}
width="32px"
height="32px"
borderRadius={borderRadius}
backgroundColor={backgroundColor}
foregroundColor={foregroundColor}
backgroundOpacity={backgroundOpacity}
foregroundOpacity={foregroundOpacity}
speed={speed}
animate
/>
<RectangleSkeleton
className="second-content"
title={title}
height="22px"
borderRadius={borderRadius}
backgroundColor={backgroundColor}
foregroundColor={foregroundColor}
backgroundOpacity={backgroundOpacity}
foregroundOpacity={foregroundOpacity}
speed={speed}
animate
/>
<RectangleSkeleton
className="option-button"
title={title}
height="16px"
width="16px"
borderRadius={borderRadius}
backgroundColor={backgroundColor}
foregroundColor={foregroundColor}
backgroundOpacity={backgroundOpacity}
foregroundOpacity={foregroundOpacity}
speed={speed}
animate
/>
</StyledRoomTileTopContent>
<StyledRoomTileBottomContent>
<RectangleSkeleton
className="main-content"
title={title}
height="24px"
width="50px"
borderRadius={borderRadius}
backgroundColor={backgroundColor}
foregroundColor={foregroundColor}
backgroundOpacity={backgroundOpacity}
foregroundOpacity={foregroundOpacity}
speed={speed}
animate
/>
<RectangleSkeleton
className="main-content"
title={title}
height="24px"
width="50px"
borderRadius={borderRadius}
backgroundColor={backgroundColor}
foregroundColor={foregroundColor}
backgroundOpacity={backgroundOpacity}
foregroundOpacity={foregroundOpacity}
speed={speed}
animate
/>
</StyledRoomTileBottomContent>
</StyledRoomTile>
</StyledTile>
) : (
<StyledTile {...rest}>
<StyledMainContent>

View File

@ -114,3 +114,26 @@ export const StyledTilesWrapper = styled.div`
grid-template-columns: 1fr;
grid-gap: 16px;
`;
export const StyledRoomTile = styled.div`
border: ${(props) => props.theme.filesSection.tilesView.tile.border};
border-radius: 6px;
height: 120px;
`;
export const StyledRoomTileTopContent = styled.div`
display: grid;
grid-template-columns: 32px 1fr 24px;
gap: 8px;
align-items: center;
height: 61px;
border-bottom: ${(props) => props.theme.filesSection.tilesView.tile.border};
padding: 0 8px 0 16px;
`;
export const StyledRoomTileBottomContent = styled.div`
display: flex;
align-items: center;
padding: 16px;
gap: 4px;
`;

View File

@ -38,4 +38,5 @@ export interface StyledBottomProps {
export interface TileSkeletonProps extends RectangleSkeletonProps {
isFolder?: boolean;
isRoom?: boolean;
}

View File

@ -26,6 +26,7 @@
export const INFO_PANEL_WIDTH = 400;
export const TABLE_HEADER_HEIGHT = 40;
export const MAX_INFINITE_LOADER_SHIFT = 800;
export function checkIsSSR() {
return typeof window === "undefined";