mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-02 23:48:47 +00:00
[dir view] added a confirmation dialog for deleting a folder (#5321)
This commit is contained in:
72
frontend/src/components/dialog/delete-folder-dialog.js
Normal file
72
frontend/src/components/dialog/delete-folder-dialog.js
Normal file
@@ -0,0 +1,72 @@
|
|||||||
|
import React, { Component } from 'react';
|
||||||
|
import PropTypes from 'prop-types';
|
||||||
|
import { seafileAPI } from '../../utils/seafile-api';
|
||||||
|
import { Modal, ModalHeader, ModalBody, ModalFooter, Button } from 'reactstrap';
|
||||||
|
import { gettext } from '../../utils/constants';
|
||||||
|
import { Utils } from '../../utils/utils';
|
||||||
|
|
||||||
|
const propTypes = {
|
||||||
|
repoID: PropTypes.string.isRequired,
|
||||||
|
path: PropTypes.string.isRequired,
|
||||||
|
deleteFolder: PropTypes.func.isRequired,
|
||||||
|
toggleDialog: PropTypes.func.isRequired
|
||||||
|
};
|
||||||
|
|
||||||
|
class DeleteFolderDialog extends Component {
|
||||||
|
|
||||||
|
constructor(props) {
|
||||||
|
super(props);
|
||||||
|
this.state = {
|
||||||
|
sharedToUserCount: 0,
|
||||||
|
sharedToGroupCount: 0
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
componentDidMount() {
|
||||||
|
const { repoID, path } = this.props;
|
||||||
|
seafileAPI.getRepoFolderShareInfo(repoID, path).then((res) => {
|
||||||
|
this.setState({
|
||||||
|
sharedToUserCount: res.data['shared_user_emails'].length,
|
||||||
|
sharedToGroupCount: res.data['shared_group_ids'].length
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
deleteFolder = () => {
|
||||||
|
this.props.deleteFolder();
|
||||||
|
this.props.toggleDialog();
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
const { sharedToUserCount, sharedToGroupCount } = this.state;
|
||||||
|
const { path, toggleDialog } = this.props;
|
||||||
|
const folderName = Utils.getFileName(path);
|
||||||
|
const opTarget = '<span class="op-target">' + Utils.HTMLescape(folderName) + '</span>';
|
||||||
|
const message = gettext('Are you sure you want to delete %s ?').replace('%s', opTarget);
|
||||||
|
|
||||||
|
let alert_message = '';
|
||||||
|
if (sharedToUserCount > 0 || sharedToGroupCount > 0) {
|
||||||
|
alert_message = gettext('This folder has been shared to {user_amount} user(s) and {group_amount} group(s).')
|
||||||
|
.replace('{user_amount}', sharedToUserCount)
|
||||||
|
.replace('{group_amount}', sharedToGroupCount);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Modal isOpen={true} toggle={toggleDialog}>
|
||||||
|
<ModalHeader toggle={toggleDialog}>{gettext('Delete Folder')}</ModalHeader>
|
||||||
|
<ModalBody>
|
||||||
|
<p dangerouslySetInnerHTML={{__html: message}}></p>
|
||||||
|
{alert_message && <p className="error">{alert_message}</p>}
|
||||||
|
</ModalBody>
|
||||||
|
<ModalFooter>
|
||||||
|
<Button color="secondary" onClick={toggleDialog}>{gettext('Cancel')}</Button>
|
||||||
|
<Button color="primary" onClick={this.deleteFolder}>{gettext('Delete')}</Button>
|
||||||
|
</ModalFooter>
|
||||||
|
</Modal>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
DeleteFolderDialog.propTypes = propTypes;
|
||||||
|
|
||||||
|
export default DeleteFolderDialog;
|
@@ -30,7 +30,7 @@ class DeleteRepoDialog extends Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
seafileAPI.getRepoShareInfo(this.props.repo.repo_id).then((res) => {
|
seafileAPI.getRepoFolderShareInfo(this.props.repo.repo_id).then((res) => {
|
||||||
this.setState({
|
this.setState({
|
||||||
sharedToUserCount: res.data['shared_user_emails'].length,
|
sharedToUserCount: res.data['shared_user_emails'].length,
|
||||||
sharedToGroupCount: res.data['shared_group_ids'].length,
|
sharedToGroupCount: res.data['shared_group_ids'].length,
|
||||||
|
@@ -20,6 +20,7 @@ import LibContentToolbar from './lib-content-toolbar';
|
|||||||
import LibContentContainer from './lib-content-container';
|
import LibContentContainer from './lib-content-container';
|
||||||
import FileUploader from '../../components/file-uploader/file-uploader';
|
import FileUploader from '../../components/file-uploader/file-uploader';
|
||||||
import CopyMoveDirentProgressDialog from '../../components/dialog/copy-move-dirent-progress-dialog';
|
import CopyMoveDirentProgressDialog from '../../components/dialog/copy-move-dirent-progress-dialog';
|
||||||
|
import DeleteFolderDialog from '../../components/dialog/delete-folder-dialog';
|
||||||
|
|
||||||
const propTypes = {
|
const propTypes = {
|
||||||
pathPrefix: PropTypes.array.isRequired,
|
pathPrefix: PropTypes.array.isRequired,
|
||||||
@@ -75,6 +76,7 @@ class LibContentView extends React.Component {
|
|||||||
itemsShowLength: 100,
|
itemsShowLength: 100,
|
||||||
isSessionExpired: false,
|
isSessionExpired: false,
|
||||||
isCopyMoveProgressDialogShow: false,
|
isCopyMoveProgressDialogShow: false,
|
||||||
|
isDeleteFolderDialogOpen: false,
|
||||||
asyncCopyMoveTaskId: '',
|
asyncCopyMoveTaskId: '',
|
||||||
asyncOperationType: 'move',
|
asyncOperationType: 'move',
|
||||||
asyncOperationProgress: 0,
|
asyncOperationProgress: 0,
|
||||||
@@ -994,21 +996,33 @@ class LibContentView extends React.Component {
|
|||||||
this.renameDirent(path, newName);
|
this.renameDirent(path, newName);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
toggleDeleteFolderDialog = () => {
|
||||||
|
this.setState({isDeleteFolderDialogOpen: !this.state.isDeleteFolderDialogOpen});
|
||||||
|
}
|
||||||
|
|
||||||
|
deleteFolder = () => {
|
||||||
|
const { repoID } = this.props;
|
||||||
|
const { folderToDelete: path } = this.state;
|
||||||
|
seafileAPI.deleteDir(repoID, path).then(() => {
|
||||||
|
this.deleteItemAjaxCallback(path, true);
|
||||||
|
let name = Utils.getFileName(path);
|
||||||
|
var msg = gettext('Successfully deleted {name}').replace('{name}', name);
|
||||||
|
toaster.success(msg);
|
||||||
|
}).catch((error) => {
|
||||||
|
let errMessage = Utils.getErrorMsg(error);
|
||||||
|
if (errMessage === gettext('Error')) {
|
||||||
|
let name = Utils.getFileName(path);
|
||||||
|
errMessage = gettext('Failed to delete {name}').replace('{name}', name);
|
||||||
|
}
|
||||||
|
toaster.danger(errMessage);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
deleteItem(path, isDir) {
|
deleteItem(path, isDir) {
|
||||||
let repoID = this.props.repoID;
|
let repoID = this.props.repoID;
|
||||||
if (isDir) {
|
if (isDir) {
|
||||||
seafileAPI.deleteDir(repoID, path).then(() => {
|
this.setState({ folderToDelete: path }, () => {
|
||||||
this.deleteItemAjaxCallback(path, isDir);
|
this.toggleDeleteFolderDialog();
|
||||||
let name = Utils.getFileName(path);
|
|
||||||
var msg = gettext('Successfully deleted {name}').replace('{name}', name);
|
|
||||||
toaster.success(msg);
|
|
||||||
}).catch((error) => {
|
|
||||||
let errMessage = Utils.getErrorMsg(error);
|
|
||||||
if (errMessage === gettext('Error')) {
|
|
||||||
let name = Utils.getFileName(path);
|
|
||||||
errMessage = gettext('Failed to delete {name}').replace('{name}', name);
|
|
||||||
}
|
|
||||||
toaster.danger(errMessage);
|
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
seafileAPI.deleteFile(repoID, path).then(() => {
|
seafileAPI.deleteFile(repoID, path).then(() => {
|
||||||
@@ -1790,7 +1804,7 @@ class LibContentView extends React.Component {
|
|||||||
<p className="error mt-6 text-center">{this.state.errorMsg}</p>
|
<p className="error mt-6 text-center">{this.state.errorMsg}</p>
|
||||||
<button type="submit" className="btn btn-primary submit" onClick={this.handleSubmit}>{gettext('Leave Share')}</button>
|
<button type="submit" className="btn btn-primary submit" onClick={this.handleSubmit}>{gettext('Leave Share')}</button>
|
||||||
</Fragment>
|
</Fragment>
|
||||||
)
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!this.state.currentRepoInfo) {
|
if (!this.state.currentRepoInfo) {
|
||||||
@@ -1798,7 +1812,7 @@ class LibContentView extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let enableDirPrivateShare = false;
|
let enableDirPrivateShare = false;
|
||||||
let { currentRepoInfo, userPerm, isCopyMoveProgressDialogShow } = this.state;
|
let { currentRepoInfo, userPerm, isCopyMoveProgressDialogShow, isDeleteFolderDialogOpen } = this.state;
|
||||||
let showShareBtn = Utils.isHasPermissionToShare(currentRepoInfo, userPerm);
|
let showShareBtn = Utils.isHasPermissionToShare(currentRepoInfo, userPerm);
|
||||||
let isRepoOwner = currentRepoInfo.owner_email === username;
|
let isRepoOwner = currentRepoInfo.owner_email === username;
|
||||||
let isVirtual = currentRepoInfo.is_virtual;
|
let isVirtual = currentRepoInfo.is_virtual;
|
||||||
@@ -1819,133 +1833,133 @@ class LibContentView extends React.Component {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Fragment>
|
<Fragment>
|
||||||
<div className="main-panel-north border-left-show">
|
<div className="main-panel-north border-left-show">
|
||||||
<LibContentToolbar
|
<LibContentToolbar
|
||||||
isViewFile={this.state.isViewFile}
|
isViewFile={this.state.isViewFile}
|
||||||
filePermission={this.state.filePermission}
|
filePermission={this.state.filePermission}
|
||||||
isDraft={this.state.isDraft}
|
isDraft={this.state.isDraft}
|
||||||
hasDraft={this.state.hasDraft}
|
hasDraft={this.state.hasDraft}
|
||||||
fileTags={this.state.fileTags}
|
fileTags={this.state.fileTags}
|
||||||
onFileTagChanged={this.onToolbarFileTagChanged}
|
onFileTagChanged={this.onToolbarFileTagChanged}
|
||||||
onSideNavMenuClick={this.props.onMenuClick}
|
onSideNavMenuClick={this.props.onMenuClick}
|
||||||
repoID={this.props.repoID}
|
repoID={this.props.repoID}
|
||||||
|
path={this.state.path}
|
||||||
|
isDirentSelected={this.state.isDirentSelected}
|
||||||
|
selectedDirentList={this.state.selectedDirentList}
|
||||||
|
onItemsMove={this.onMoveItems}
|
||||||
|
onItemsCopy={this.onCopyItems}
|
||||||
|
onItemsDelete={this.onDeleteItems}
|
||||||
|
onItemRename={this.onMainPanelItemRename}
|
||||||
|
direntList={this.state.direntList}
|
||||||
|
repoName={this.state.repoName}
|
||||||
|
repoEncrypted={this.state.repoEncrypted}
|
||||||
|
isGroupOwnedRepo={this.state.isGroupOwnedRepo}
|
||||||
|
userPerm={this.state.userPerm}
|
||||||
|
showShareBtn={showShareBtn}
|
||||||
|
enableDirPrivateShare={enableDirPrivateShare}
|
||||||
|
onAddFile={this.onAddFile}
|
||||||
|
onAddFolder={this.onAddFolder}
|
||||||
|
onUploadFile={this.onUploadFile}
|
||||||
|
onUploadFolder={this.onUploadFolder}
|
||||||
|
currentMode={this.state.currentMode}
|
||||||
|
switchViewMode={this.switchViewMode}
|
||||||
|
onSearchedClick={this.onSearchedClick}
|
||||||
|
isRepoOwner={isRepoOwner}
|
||||||
|
currentRepoInfo={this.state.currentRepoInfo}
|
||||||
|
updateDirent={this.updateDirent}
|
||||||
|
onDirentSelected={this.onDirentSelected}
|
||||||
|
showDirentDetail={this.showDirentDetail}
|
||||||
|
unSelectDirent={this.unSelectDirent}
|
||||||
|
onFilesTagChanged={this.onFileTagChanged}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="main-panel-center flex-row">
|
||||||
|
<LibContentContainer
|
||||||
|
pathPrefix={this.props.pathPrefix}
|
||||||
|
currentMode={this.state.currentMode}
|
||||||
|
path={this.state.path}
|
||||||
|
pathExist={this.state.pathExist}
|
||||||
|
currentRepoInfo={this.state.currentRepoInfo}
|
||||||
|
repoID={this.props.repoID}
|
||||||
|
enableDirPrivateShare={enableDirPrivateShare}
|
||||||
|
userPerm={userPerm}
|
||||||
|
isGroupOwnedRepo={this.state.isGroupOwnedRepo}
|
||||||
|
onTabNavClick={this.props.onTabNavClick}
|
||||||
|
onMainNavBarClick={this.onMainNavBarClick}
|
||||||
|
isViewFile={this.state.isViewFile}
|
||||||
|
hash={this.state.hash}
|
||||||
|
isDraft={this.state.isDraft}
|
||||||
|
hasDraft={this.state.hasDraft}
|
||||||
|
fileTags={this.state.fileTags}
|
||||||
|
goDraftPage={this.goDraftPage}
|
||||||
|
isFileLoading={this.state.isFileLoading}
|
||||||
|
isFileLoadedErr={this.state.isFileLoadedErr}
|
||||||
|
filePermission={this.state.filePermission}
|
||||||
|
content={this.state.content}
|
||||||
|
lastModified={this.state.lastModified}
|
||||||
|
latestContributor={this.state.latestContributor}
|
||||||
|
onLinkClick={this.onLinkClick}
|
||||||
|
isTreeDataLoading={this.state.isTreeDataLoading}
|
||||||
|
treeData={this.state.treeData}
|
||||||
|
currentNode={this.state.currentNode}
|
||||||
|
onNodeClick={this.onTreeNodeClick}
|
||||||
|
onNodeCollapse={this.onTreeNodeCollapse}
|
||||||
|
onNodeExpanded={this.onTreeNodeExpanded}
|
||||||
|
onAddFolderNode={this.onAddFolder}
|
||||||
|
onAddFileNode={this.onAddFile}
|
||||||
|
onRenameNode={this.onRenameTreeNode}
|
||||||
|
onDeleteNode={this.onDeleteTreeNode}
|
||||||
|
draftCounts={this.state.draftCounts}
|
||||||
|
usedRepoTags={this.state.usedRepoTags}
|
||||||
|
readmeMarkdown={this.state.readmeMarkdown}
|
||||||
|
updateUsedRepoTags={this.updateUsedRepoTags}
|
||||||
|
isDirentListLoading={this.state.isDirentListLoading}
|
||||||
|
direntList={direntItemsList}
|
||||||
|
fullDirentList={this.state.direntList}
|
||||||
|
sortBy={this.state.sortBy}
|
||||||
|
sortOrder={this.state.sortOrder}
|
||||||
|
sortItems={this.sortItems}
|
||||||
|
updateDirent={this.updateDirent}
|
||||||
|
onDirentClick={this.onDirentClick}
|
||||||
|
onItemClick={this.onItemClick}
|
||||||
|
onItemSelected={this.onDirentSelected}
|
||||||
|
onItemDelete={this.onMainPanelItemDelete}
|
||||||
|
onItemRename={this.onMainPanelItemRename}
|
||||||
|
onItemMove={this.onMoveItem}
|
||||||
|
onItemCopy={this.onCopyItem}
|
||||||
|
onAddFolder={this.onAddFolder}
|
||||||
|
onAddFile={this.onAddFile}
|
||||||
|
onFileTagChanged={this.onFileTagChanged}
|
||||||
|
isDirentSelected={this.state.isDirentSelected}
|
||||||
|
isAllDirentSelected={this.state.isAllDirentSelected}
|
||||||
|
onAllDirentSelected={this.onAllDirentSelected}
|
||||||
|
isDirentDetailShow={this.state.isDirentDetailShow}
|
||||||
|
selectedDirent={this.state.selectedDirentList && this.state.selectedDirentList[0]}
|
||||||
|
selectedDirentList={this.state.selectedDirentList}
|
||||||
|
onItemsMove={this.onMoveItems}
|
||||||
|
onItemsCopy={this.onCopyItems}
|
||||||
|
onItemsDelete={this.onDeleteItems}
|
||||||
|
closeDirentDetail={this.closeDirentDetail}
|
||||||
|
showDirentDetail={this.showDirentDetail}
|
||||||
|
direntDetailPanelTab={this.state.direntDetailPanelTab}
|
||||||
|
onDeleteRepoTag={this.onDeleteRepoTag}
|
||||||
|
onToolbarFileTagChanged={this.onToolbarFileTagChanged}
|
||||||
|
updateDetail={this.state.updateDetail}
|
||||||
|
onListContainerScroll={this.onListContainerScroll}
|
||||||
|
loadDirentList={this.loadDirentList}
|
||||||
|
/>
|
||||||
|
{canUpload && this.state.pathExist && !this.state.isViewFile && (
|
||||||
|
<FileUploader
|
||||||
|
ref={uploader => this.uploader = uploader}
|
||||||
|
dragAndDrop={true}
|
||||||
path={this.state.path}
|
path={this.state.path}
|
||||||
isDirentSelected={this.state.isDirentSelected}
|
repoID={this.props.repoID}
|
||||||
selectedDirentList={this.state.selectedDirentList}
|
|
||||||
onItemsMove={this.onMoveItems}
|
|
||||||
onItemsCopy={this.onCopyItems}
|
|
||||||
onItemsDelete={this.onDeleteItems}
|
|
||||||
onItemRename={this.onMainPanelItemRename}
|
|
||||||
direntList={this.state.direntList}
|
direntList={this.state.direntList}
|
||||||
repoName={this.state.repoName}
|
onFileUploadSuccess={this.onFileUploadSuccess}
|
||||||
repoEncrypted={this.state.repoEncrypted}
|
isCustomPermission={isCustomPermission}
|
||||||
isGroupOwnedRepo={this.state.isGroupOwnedRepo}
|
|
||||||
userPerm={this.state.userPerm}
|
|
||||||
showShareBtn={showShareBtn}
|
|
||||||
enableDirPrivateShare={enableDirPrivateShare}
|
|
||||||
onAddFile={this.onAddFile}
|
|
||||||
onAddFolder={this.onAddFolder}
|
|
||||||
onUploadFile={this.onUploadFile}
|
|
||||||
onUploadFolder={this.onUploadFolder}
|
|
||||||
currentMode={this.state.currentMode}
|
|
||||||
switchViewMode={this.switchViewMode}
|
|
||||||
onSearchedClick={this.onSearchedClick}
|
|
||||||
isRepoOwner={isRepoOwner}
|
|
||||||
currentRepoInfo={this.state.currentRepoInfo}
|
|
||||||
updateDirent={this.updateDirent}
|
|
||||||
onDirentSelected={this.onDirentSelected}
|
|
||||||
showDirentDetail={this.showDirentDetail}
|
|
||||||
unSelectDirent={this.unSelectDirent}
|
|
||||||
onFilesTagChanged={this.onFileTagChanged}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
)}
|
||||||
<div className="main-panel-center flex-row">
|
</div>
|
||||||
<LibContentContainer
|
|
||||||
pathPrefix={this.props.pathPrefix}
|
|
||||||
currentMode={this.state.currentMode}
|
|
||||||
path={this.state.path}
|
|
||||||
pathExist={this.state.pathExist}
|
|
||||||
currentRepoInfo={this.state.currentRepoInfo}
|
|
||||||
repoID={this.props.repoID}
|
|
||||||
enableDirPrivateShare={enableDirPrivateShare}
|
|
||||||
userPerm={userPerm}
|
|
||||||
isGroupOwnedRepo={this.state.isGroupOwnedRepo}
|
|
||||||
onTabNavClick={this.props.onTabNavClick}
|
|
||||||
onMainNavBarClick={this.onMainNavBarClick}
|
|
||||||
isViewFile={this.state.isViewFile}
|
|
||||||
hash={this.state.hash}
|
|
||||||
isDraft={this.state.isDraft}
|
|
||||||
hasDraft={this.state.hasDraft}
|
|
||||||
fileTags={this.state.fileTags}
|
|
||||||
goDraftPage={this.goDraftPage}
|
|
||||||
isFileLoading={this.state.isFileLoading}
|
|
||||||
isFileLoadedErr={this.state.isFileLoadedErr}
|
|
||||||
filePermission={this.state.filePermission}
|
|
||||||
content={this.state.content}
|
|
||||||
lastModified={this.state.lastModified}
|
|
||||||
latestContributor={this.state.latestContributor}
|
|
||||||
onLinkClick={this.onLinkClick}
|
|
||||||
isTreeDataLoading={this.state.isTreeDataLoading}
|
|
||||||
treeData={this.state.treeData}
|
|
||||||
currentNode={this.state.currentNode}
|
|
||||||
onNodeClick={this.onTreeNodeClick}
|
|
||||||
onNodeCollapse={this.onTreeNodeCollapse}
|
|
||||||
onNodeExpanded={this.onTreeNodeExpanded}
|
|
||||||
onAddFolderNode={this.onAddFolder}
|
|
||||||
onAddFileNode={this.onAddFile}
|
|
||||||
onRenameNode={this.onRenameTreeNode}
|
|
||||||
onDeleteNode={this.onDeleteTreeNode}
|
|
||||||
draftCounts={this.state.draftCounts}
|
|
||||||
usedRepoTags={this.state.usedRepoTags}
|
|
||||||
readmeMarkdown={this.state.readmeMarkdown}
|
|
||||||
updateUsedRepoTags={this.updateUsedRepoTags}
|
|
||||||
isDirentListLoading={this.state.isDirentListLoading}
|
|
||||||
direntList={direntItemsList}
|
|
||||||
fullDirentList={this.state.direntList}
|
|
||||||
sortBy={this.state.sortBy}
|
|
||||||
sortOrder={this.state.sortOrder}
|
|
||||||
sortItems={this.sortItems}
|
|
||||||
updateDirent={this.updateDirent}
|
|
||||||
onDirentClick={this.onDirentClick}
|
|
||||||
onItemClick={this.onItemClick}
|
|
||||||
onItemSelected={this.onDirentSelected}
|
|
||||||
onItemDelete={this.onMainPanelItemDelete}
|
|
||||||
onItemRename={this.onMainPanelItemRename}
|
|
||||||
onItemMove={this.onMoveItem}
|
|
||||||
onItemCopy={this.onCopyItem}
|
|
||||||
onAddFolder={this.onAddFolder}
|
|
||||||
onAddFile={this.onAddFile}
|
|
||||||
onFileTagChanged={this.onFileTagChanged}
|
|
||||||
isDirentSelected={this.state.isDirentSelected}
|
|
||||||
isAllDirentSelected={this.state.isAllDirentSelected}
|
|
||||||
onAllDirentSelected={this.onAllDirentSelected}
|
|
||||||
isDirentDetailShow={this.state.isDirentDetailShow}
|
|
||||||
selectedDirent={this.state.selectedDirentList && this.state.selectedDirentList[0]}
|
|
||||||
selectedDirentList={this.state.selectedDirentList}
|
|
||||||
onItemsMove={this.onMoveItems}
|
|
||||||
onItemsCopy={this.onCopyItems}
|
|
||||||
onItemsDelete={this.onDeleteItems}
|
|
||||||
closeDirentDetail={this.closeDirentDetail}
|
|
||||||
showDirentDetail={this.showDirentDetail}
|
|
||||||
direntDetailPanelTab={this.state.direntDetailPanelTab}
|
|
||||||
onDeleteRepoTag={this.onDeleteRepoTag}
|
|
||||||
onToolbarFileTagChanged={this.onToolbarFileTagChanged}
|
|
||||||
updateDetail={this.state.updateDetail}
|
|
||||||
onListContainerScroll={this.onListContainerScroll}
|
|
||||||
loadDirentList={this.loadDirentList}
|
|
||||||
/>
|
|
||||||
{canUpload && this.state.pathExist && !this.state.isViewFile && (
|
|
||||||
<FileUploader
|
|
||||||
ref={uploader => this.uploader = uploader}
|
|
||||||
dragAndDrop={true}
|
|
||||||
path={this.state.path}
|
|
||||||
repoID={this.props.repoID}
|
|
||||||
direntList={this.state.direntList}
|
|
||||||
onFileUploadSuccess={this.onFileUploadSuccess}
|
|
||||||
isCustomPermission={isCustomPermission}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
{isCopyMoveProgressDialogShow && (
|
{isCopyMoveProgressDialogShow && (
|
||||||
<CopyMoveDirentProgressDialog
|
<CopyMoveDirentProgressDialog
|
||||||
type={this.state.asyncOperationType}
|
type={this.state.asyncOperationType}
|
||||||
@@ -1954,6 +1968,14 @@ class LibContentView extends React.Component {
|
|||||||
toggleDialog={this.onMoveProgressDialogToggle}
|
toggleDialog={this.onMoveProgressDialogToggle}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
{isDeleteFolderDialogOpen && (
|
||||||
|
<DeleteFolderDialog
|
||||||
|
repoID={this.props.repoID}
|
||||||
|
path={this.state.folderToDelete}
|
||||||
|
deleteFolder={this.deleteFolder}
|
||||||
|
toggleDialog={this.toggleDeleteFolderDialog}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
</Fragment>
|
</Fragment>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user