Fixed Bug 69489 - Rooms: Show progress for repeated request Documents, Rooms, Archive and Trash folders

This commit is contained in:
Ilya Oleshko 2024-08-01 14:08:31 +03:00
parent a1d4ad5e34
commit 285997a8ab

View File

@ -44,6 +44,7 @@ import { CategoryType } from "SRC_DIR/helpers/constants";
import { ArticleFolderLoader } from "@docspace/shared/skeletons/article"; import { ArticleFolderLoader } from "@docspace/shared/skeletons/article";
import { MEDIA_VIEW_URL } from "@docspace/shared/constants"; import { MEDIA_VIEW_URL } from "@docspace/shared/constants";
import { combineUrl } from "@docspace/shared/utils/combineUrl"; import { combineUrl } from "@docspace/shared/utils/combineUrl";
import { showProgress } from "@docspace/shared/utils/common";
import { openingNewTab } from "@docspace/shared/utils/openingNewTab"; import { openingNewTab } from "@docspace/shared/utils/openingNewTab";
const ArticleBodyContent = (props) => { const ArticleBodyContent = (props) => {
@ -187,6 +188,7 @@ const ArticleBodyContent = (props) => {
setSelection && setSelection([]); setSelection && setSelection([]);
setIsLoading(true, withTimer); setIsLoading(true, withTimer);
navigate(path, { state }); navigate(path, { state });
if (currentDeviceType === DeviceType.mobile) { if (currentDeviceType === DeviceType.mobile) {
@ -314,6 +316,8 @@ export default inject(
const setIsLoading = (param, withTimer) => { const setIsLoading = (param, withTimer) => {
setIsSectionFilterLoading(param, withTimer); setIsSectionFilterLoading(param, withTimer);
if (param && withTimer) showProgress();
}; };
const { roomsFolderId, archiveFolderId, myFolderId, recycleBinFolderId } = const { roomsFolderId, archiveFolderId, myFolderId, recycleBinFolderId } =