mirror of
https://github.com/haiwen/seahub.git
synced 2025-07-19 09:37:51 +00:00
1079 lines
37 KiB
JavaScript
1079 lines
37 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import classnames from 'classnames';
|
|
import MediaQuery from 'react-responsive';
|
|
import { v4 as uuidv4 } from 'uuid';
|
|
import dayjs from 'dayjs';
|
|
import { Dropdown, DropdownToggle, DropdownItem } from 'reactstrap';
|
|
import { gettext, siteRoot, mediaUrl, username, useGoFileserver, fileServerRoot, enableVideoThumbnail, enablePDFThumbnail } from '../../utils/constants';
|
|
import { Utils } from '../../utils/utils';
|
|
import { seafileAPI } from '../../utils/seafile-api';
|
|
import URLDecorator from '../../utils/url-decorator';
|
|
import { imageThumbnailCenter, videoThumbnailCenter } from '../../utils/thumbnail-center';
|
|
import ItemDropdownMenu from '../dropdown-menu/item-dropdown-menu';
|
|
import Rename from '../rename';
|
|
import ModalPortal from '../modal-portal';
|
|
import MoveDirentDialog from '../dialog/move-dirent-dialog';
|
|
import CopyDirentDialog from '../dialog/copy-dirent-dialog';
|
|
import ShareDialog from '../dialog/share-dialog';
|
|
import ZipDownloadDialog from '../dialog/zip-download-dialog';
|
|
import EditFileTagDialog from '../dialog/edit-filetag-dialog';
|
|
import EditFileTagPopover from '../popover/edit-filetag-popover';
|
|
import LibSubFolderPermissionDialog from '../dialog/lib-sub-folder-permission-dialog';
|
|
import FileAccessLog from '../dialog/file-access-log';
|
|
import toaster from '../toast';
|
|
import FileTag from './file-tag';
|
|
|
|
import '../../css/dirent-list-item.css';
|
|
|
|
const propTypes = {
|
|
path: PropTypes.string.isRequired,
|
|
repoID: PropTypes.string.isRequired,
|
|
isItemFreezed: PropTypes.bool.isRequired,
|
|
dirent: PropTypes.object.isRequired,
|
|
onItemClick: PropTypes.func.isRequired,
|
|
freezeItem: PropTypes.func.isRequired,
|
|
unfreezeItem: PropTypes.func.isRequired,
|
|
onItemRenameToggle: PropTypes.func.isRequired,
|
|
onItemSelected: PropTypes.func.isRequired,
|
|
onItemDelete: PropTypes.func.isRequired,
|
|
onItemRename: PropTypes.func.isRequired,
|
|
onItemMove: PropTypes.func.isRequired,
|
|
onItemCopy: PropTypes.func.isRequired,
|
|
onItemConvert: PropTypes.func.isRequired,
|
|
onDirentClick: PropTypes.func.isRequired,
|
|
updateDirent: PropTypes.func.isRequired,
|
|
showImagePopup: PropTypes.func.isRequired,
|
|
currentRepoInfo: PropTypes.object,
|
|
isRepoOwner: PropTypes.bool,
|
|
isAdmin: PropTypes.bool.isRequired,
|
|
repoEncrypted: PropTypes.bool.isRequired,
|
|
isGroupOwnedRepo: PropTypes.bool.isRequired,
|
|
onItemMouseDown: PropTypes.func.isRequired,
|
|
onItemContextMenu: PropTypes.func.isRequired,
|
|
selectedDirentList: PropTypes.array.isRequired,
|
|
activeDirent: PropTypes.object,
|
|
getDirentItemMenuList: PropTypes.func.isRequired,
|
|
repoTags: PropTypes.array.isRequired,
|
|
onFileTagChanged: PropTypes.func,
|
|
enableDirPrivateShare: PropTypes.bool.isRequired,
|
|
showDirentDetail: PropTypes.func.isRequired,
|
|
onItemsMove: PropTypes.func.isRequired,
|
|
onShowDirentsDraggablePreview: PropTypes.func,
|
|
loadDirentList: PropTypes.func,
|
|
};
|
|
|
|
class DirentListItem extends React.Component {
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
let { dirent } = this.props;
|
|
const { isCustomPermission, customPermission } = Utils.getUserPermission(dirent.permission);
|
|
this.isCustomPermission = isCustomPermission;
|
|
this.customPermission = customPermission;
|
|
this.canPreview = true;
|
|
this.canDrag = dirent.permission === 'rw';
|
|
if (isCustomPermission) {
|
|
const { preview, modify } = customPermission.permission;
|
|
this.canPreview = preview || modify;
|
|
this.canDrag = modify;
|
|
}
|
|
|
|
this.state = {
|
|
dirent,
|
|
isOperationShow: false,
|
|
highlight: false,
|
|
isZipDialogOpen: false,
|
|
isFileAccessLogDialogOpen: false,
|
|
isMoveDialogShow: false,
|
|
isCopyDialogShow: false,
|
|
isShareDialogShow: false,
|
|
isMultipleOperation: false,
|
|
canDrag: this.canDrag,
|
|
isShowTagTooltip: false,
|
|
isDragTipShow: false,
|
|
isDropTipshow: false,
|
|
isEditFileTagShow: false,
|
|
isPermissionDialogOpen: false,
|
|
isOpMenuOpen: false // for mobile
|
|
};
|
|
this.tagListTitleID = `tag-list-title-${uuidv4()}`;
|
|
this.isGeneratingThumbnail = false;
|
|
this.thumbnailCenter = null;
|
|
}
|
|
|
|
componentDidMount() {
|
|
const { repoID, path } = this.props;
|
|
const { dirent } = this.state;
|
|
if (this.checkGenerateThumbnail(dirent)) {
|
|
this.isGeneratingThumbnail = true;
|
|
this.thumbnailCenter.createThumbnail({
|
|
repoID,
|
|
path: [path, dirent.name].join('/'),
|
|
callback: this.updateDirentThumbnail,
|
|
});
|
|
}
|
|
}
|
|
|
|
UNSAFE_componentWillReceiveProps(nextProps) {
|
|
if (nextProps.dirent && this.state.dirent) {
|
|
if (nextProps.dirent.name !== this.state.dirent.name) {
|
|
this.setState({
|
|
dirent: nextProps.dirent,
|
|
}, () => {
|
|
if (this.checkGenerateThumbnail(nextProps.dirent)) {
|
|
const { repoID, path } = nextProps;
|
|
this.isGeneratingThumbnail = true;
|
|
this.thumbnailCenter.createThumbnail({
|
|
repoID,
|
|
path: [path, nextProps.dirent.name].join('/'),
|
|
callback: this.updateDirentThumbnail,
|
|
});
|
|
}
|
|
});
|
|
}
|
|
|
|
if (
|
|
nextProps.dirent.is_locked !== this.state.dirent.is_locked ||
|
|
nextProps.dirent.starred !== this.state.dirent.starred
|
|
) {
|
|
this.setState({ dirent: nextProps.dirent });
|
|
}
|
|
}
|
|
}
|
|
|
|
componentDidUpdate(prevProps) {
|
|
const { isItemFreezed, activeDirent, dirent } = this.props;
|
|
|
|
if (prevProps.isItemFreezed !== isItemFreezed && !isItemFreezed) {
|
|
this.setState({
|
|
highlight: false,
|
|
isOperationShow: activeDirent && activeDirent.name === dirent.name,
|
|
});
|
|
}
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
if (this.isGeneratingThumbnail) {
|
|
const { dirent } = this.state;
|
|
const { repoID, path } = this.props;
|
|
this.thumbnailCenter.cancelThumbnail({
|
|
repoID,
|
|
path: [path, dirent.name].join('/'),
|
|
});
|
|
this.thumbnailCenter = null;
|
|
}
|
|
this.setState = () => {};
|
|
}
|
|
|
|
checkGenerateThumbnail = (dirent) => {
|
|
if (this.props.repoEncrypted || dirent.encoded_thumbnail_src) {
|
|
return false;
|
|
}
|
|
if (enableVideoThumbnail && Utils.videoCheck(dirent.name)) {
|
|
this.thumbnailCenter = videoThumbnailCenter;
|
|
return true;
|
|
}
|
|
if (Utils.imageCheck(dirent.name) || (enablePDFThumbnail && Utils.pdfCheck(dirent.name))) {
|
|
this.thumbnailCenter = imageThumbnailCenter;
|
|
return true;
|
|
}
|
|
return false;
|
|
};
|
|
|
|
updateDirentThumbnail = (encoded_thumbnail_src) => {
|
|
this.isGeneratingThumbnail = false;
|
|
let dirent = this.state.dirent;
|
|
dirent.encoded_thumbnail_src = encoded_thumbnail_src;
|
|
this.setState({ dirent });
|
|
};
|
|
|
|
toggleOpMenu = () => {
|
|
this.setState({
|
|
isOpMenuOpen: !this.state.isOpMenuOpen
|
|
});
|
|
};
|
|
|
|
// UI Interactive
|
|
onMouseEnter = () => {
|
|
if (!this.props.isItemFreezed) {
|
|
this.setState({
|
|
highlight: true,
|
|
isOperationShow: true,
|
|
});
|
|
}
|
|
if (this.state.canDrag) {
|
|
this.setState({ isDragTipShow: true });
|
|
}
|
|
};
|
|
|
|
onMouseOver = () => {
|
|
if (!this.props.isItemFreezed) {
|
|
this.setState({
|
|
highlight: true,
|
|
isOperationShow: true,
|
|
});
|
|
}
|
|
if (this.state.canDrag) {
|
|
this.setState({ isDragTipShow: true });
|
|
}
|
|
};
|
|
|
|
onMouseLeave = () => {
|
|
if (!this.props.isItemFreezed) {
|
|
this.setState({
|
|
highlight: false,
|
|
isOperationShow: false,
|
|
});
|
|
}
|
|
this.setState({ isDragTipShow: false });
|
|
};
|
|
|
|
unfreezeItem = () => {
|
|
this.setState({
|
|
highlight: false,
|
|
isOperationShow: false,
|
|
});
|
|
this.props.unfreezeItem();
|
|
};
|
|
|
|
// buiness handler
|
|
onItemSelected = (event) => {
|
|
event.stopPropagation();
|
|
this.props.onItemSelected(this.state.dirent, event);
|
|
};
|
|
|
|
onItemStarred = (e) => {
|
|
let dirent = this.state.dirent;
|
|
let repoID = this.props.repoID;
|
|
let filePath = this.getDirentPath(dirent);
|
|
|
|
if (dirent.starred) {
|
|
seafileAPI.unstarItem(repoID, filePath).then(() => {
|
|
this.props.updateDirent(this.state.dirent, 'starred', false);
|
|
}).catch(error => {
|
|
let errMessage = Utils.getErrorMsg(error);
|
|
toaster.danger(errMessage);
|
|
});
|
|
} else {
|
|
seafileAPI.starItem(repoID, filePath).then(() => {
|
|
this.props.updateDirent(this.state.dirent, 'starred', true);
|
|
}).catch(error => {
|
|
let errMessage = Utils.getErrorMsg(error);
|
|
toaster.danger(errMessage);
|
|
});
|
|
}
|
|
};
|
|
|
|
// on '<tr>'
|
|
onDirentClick = (e) => {
|
|
// '<td>' is clicked
|
|
e.stopPropagation();
|
|
if (e.target.tagName == 'TD') {
|
|
this.props.onDirentClick(this.state.dirent, e);
|
|
}
|
|
};
|
|
|
|
onItemClick = (e) => {
|
|
e.preventDefault();
|
|
const dirent = this.state.dirent;
|
|
if (this.state.isRenameing) {
|
|
return;
|
|
}
|
|
|
|
if (dirent.isDir()) {
|
|
this.props.onItemClick(dirent);
|
|
return;
|
|
}
|
|
|
|
if (!this.canPreview) {
|
|
return;
|
|
}
|
|
|
|
if (Utils.imageCheck(dirent.name)) {
|
|
this.props.showImagePopup(dirent);
|
|
} else {
|
|
this.props.onItemClick(dirent);
|
|
}
|
|
};
|
|
|
|
onItemDelete = (e) => {
|
|
e.preventDefault();
|
|
e.nativeEvent.stopImmediatePropagation(); // for document event
|
|
this.props.onItemDelete(this.state.dirent);
|
|
};
|
|
|
|
onItemShare = (e) => {
|
|
e.preventDefault();
|
|
e.nativeEvent.stopImmediatePropagation(); // for document event
|
|
this.setState({ isShareDialogShow: !this.state.isShareDialogShow });
|
|
};
|
|
|
|
exportDocx = () => {
|
|
const serviceUrl = window.app.config.serviceURL;
|
|
let repoID = this.props.repoID;
|
|
let filePath = this.getDirentPath(this.state.dirent);
|
|
let exportToDocxUrl = serviceUrl + '/repo/sdoc_export_to_docx/' + repoID + '/?file_path=' + filePath;
|
|
window.location.href = exportToDocxUrl;
|
|
};
|
|
|
|
exportSdoc = () => {
|
|
const serviceUrl = window.app.config.serviceURL;
|
|
let repoID = this.props.repoID;
|
|
let filePath = this.getDirentPath(this.state.dirent);
|
|
let exportToSdocUrl = serviceUrl + '/lib/' + repoID + '/file/' + filePath + '?dl=1';
|
|
window.location.href = exportToSdocUrl;
|
|
};
|
|
|
|
closeSharedDialog = () => {
|
|
this.setState({ isShareDialogShow: !this.state.isShareDialogShow });
|
|
};
|
|
|
|
onMobileMenuItemClick = (e) => {
|
|
const operation = e.target.getAttribute('data-op');
|
|
this.onMenuItemClick(operation, e);
|
|
};
|
|
|
|
onMenuItemClick = (operation, event) => {
|
|
switch (operation) {
|
|
case 'Download':
|
|
this.onItemDownload(event);
|
|
break;
|
|
case 'Share':
|
|
this.onItemShare(event);
|
|
break;
|
|
case 'Delete':
|
|
this.onItemDelete(event);
|
|
break;
|
|
case 'Rename':
|
|
this.onItemRenameToggle();
|
|
break;
|
|
case 'Move':
|
|
this.onItemMoveToggle();
|
|
break;
|
|
case 'Copy':
|
|
this.onItemCopyToggle();
|
|
break;
|
|
case 'Tags':
|
|
this.onEditFileTagToggle();
|
|
break;
|
|
case 'Permission':
|
|
this.onPermissionItem();
|
|
break;
|
|
case 'Unlock':
|
|
this.onUnlockItem();
|
|
break;
|
|
case 'Lock':
|
|
this.onLockItem();
|
|
break;
|
|
case 'Unfreeze Document':
|
|
this.onUnlockItem();
|
|
break;
|
|
case 'Freeze Document':
|
|
this.onFreezeDocument();
|
|
break;
|
|
case 'Convert to Markdown':
|
|
this.onItemConvert(event, 'markdown');
|
|
break;
|
|
case 'Convert to docx':
|
|
this.onItemConvert(event, 'docx');
|
|
break;
|
|
case 'Export docx':
|
|
this.exportDocx();
|
|
break;
|
|
case 'Export sdoc':
|
|
this.exportSdoc();
|
|
break;
|
|
case 'Convert to sdoc':
|
|
this.onItemConvert(event, 'sdoc');
|
|
break;
|
|
case 'History':
|
|
this.onHistory();
|
|
break;
|
|
case 'Access Log':
|
|
this.toggleFileAccessLogDialog();
|
|
break;
|
|
case 'Properties':
|
|
this.props.onDirentClick(this.state.dirent);
|
|
this.props.showDirentDetail('info');
|
|
break;
|
|
case 'Open via Client':
|
|
this.onOpenViaClient();
|
|
break;
|
|
case 'Convert with ONLYOFFICE':
|
|
this.onConvertWithONLYOFFICE();
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
};
|
|
|
|
onItemConvert = (e, dstType) => {
|
|
e.preventDefault();
|
|
e.nativeEvent.stopImmediatePropagation(); // for document event
|
|
this.props.onItemConvert(this.state.dirent, dstType);
|
|
};
|
|
|
|
onEditFileTagToggle = () => {
|
|
this.setState({
|
|
isEditFileTagShow: !this.state.isEditFileTagShow
|
|
});
|
|
};
|
|
|
|
onFileTagChanged = () => {
|
|
let direntPath = this.getDirentPath(this.state.dirent);
|
|
this.props.onFileTagChanged(this.state.dirent, direntPath);
|
|
};
|
|
|
|
onItemRenameToggle = () => {
|
|
this.props.onItemRenameToggle(this.state.dirent);
|
|
this.setState({
|
|
isOperationShow: false,
|
|
isRenameing: true,
|
|
canDrag: false
|
|
});
|
|
};
|
|
|
|
onRenameConfirm = (newName) => {
|
|
this.props.onItemRename(this.state.dirent, newName);
|
|
this.onRenameCancel();
|
|
};
|
|
|
|
onRenameCancel = () => {
|
|
this.setState({
|
|
isRenameing: false,
|
|
canDrag: this.canDrag // set it back to the initial value
|
|
});
|
|
this.unfreezeItem();
|
|
};
|
|
|
|
onItemMoveToggle = () => {
|
|
this.setState({ isMoveDialogShow: !this.state.isMoveDialogShow });
|
|
};
|
|
|
|
onItemCopyToggle = () => {
|
|
this.setState({ isCopyDialogShow: !this.state.isCopyDialogShow });
|
|
};
|
|
|
|
onPermissionItem = () => {
|
|
this.setState({ isPermissionDialogOpen: !this.state.isPermissionDialogOpen });
|
|
};
|
|
|
|
onLockItem = () => {
|
|
let repoID = this.props.repoID;
|
|
let dirent = this.state.dirent;
|
|
let filePath = this.getDirentPath(dirent);
|
|
seafileAPI.lockfile(repoID, filePath).then(() => {
|
|
this.props.updateDirent(dirent, 'is_locked', true);
|
|
this.props.updateDirent(dirent, 'locked_by_me', true);
|
|
let lockName = username.split('@');
|
|
this.props.updateDirent(dirent, 'lock_owner_name', lockName[0]);
|
|
}).catch(error => {
|
|
let errMessage = Utils.getErrorMsg(error);
|
|
toaster.danger(errMessage);
|
|
});
|
|
};
|
|
|
|
onFreezeDocument = () => {
|
|
let repoID = this.props.repoID;
|
|
let dirent = this.state.dirent;
|
|
let filePath = this.getDirentPath(dirent);
|
|
seafileAPI.lockfile(repoID, filePath, -1).then(() => {
|
|
this.props.updateDirent(dirent, 'is_freezed', true);
|
|
this.props.updateDirent(dirent, 'is_locked', true);
|
|
this.props.updateDirent(dirent, 'locked_by_me', true);
|
|
let lockName = username.split('@');
|
|
this.props.updateDirent(dirent, 'lock_owner_name', lockName[0]);
|
|
}).catch(error => {
|
|
let errMessage = Utils.getErrorMsg(error);
|
|
toaster.danger(errMessage);
|
|
});
|
|
};
|
|
|
|
onUnlockItem = () => {
|
|
let repoID = this.props.repoID;
|
|
let dirent = this.state.dirent;
|
|
let filePath = this.getDirentPath(dirent);
|
|
seafileAPI.unlockfile(repoID, filePath).then(() => {
|
|
this.props.updateDirent(dirent, 'is_locked', false);
|
|
this.props.updateDirent(dirent, 'locked_by_me', false);
|
|
this.props.updateDirent(dirent, 'lock_owner_name', '');
|
|
}).catch(error => {
|
|
let errMessage = Utils.getErrorMsg(error);
|
|
toaster.danger(errMessage);
|
|
});
|
|
};
|
|
|
|
onHistory = () => {
|
|
let filePath = this.getDirentPath(this.state.dirent);
|
|
let url = URLDecorator.getUrl({ type: 'file_revisions', repoID: this.props.repoID, filePath: filePath });
|
|
location.href = url;
|
|
};
|
|
|
|
toggleFileAccessLogDialog = () => {
|
|
this.setState({
|
|
isFileAccessLogDialogOpen: !this.state.isFileAccessLogDialogOpen
|
|
});
|
|
};
|
|
|
|
onOpenViaClient = () => {
|
|
let repoID = this.props.repoID;
|
|
let filePath = this.getDirentPath(this.state.dirent);
|
|
let url = URLDecorator.getUrl({ type: 'open_via_client', repoID: repoID, filePath: filePath });
|
|
location.href = url;
|
|
};
|
|
|
|
onConvertWithONLYOFFICE = () => {
|
|
let repoID = this.props.repoID;
|
|
let filePath = this.getDirentPath(this.state.dirent);
|
|
seafileAPI.onlyofficeConvert(repoID, filePath).then(res => {
|
|
this.props.loadDirentList(res.data.parent_dir);
|
|
}).catch(error => {
|
|
let errMessage = Utils.getErrorMsg(error);
|
|
toaster.danger(errMessage);
|
|
});
|
|
};
|
|
|
|
onItemDownload = (e) => {
|
|
e.preventDefault();
|
|
e.nativeEvent.stopImmediatePropagation();
|
|
let dirent = this.state.dirent;
|
|
let repoID = this.props.repoID;
|
|
let direntPath = this.getDirentPath(dirent);
|
|
if (dirent.type === 'dir') {
|
|
if (!useGoFileserver) {
|
|
this.setState({
|
|
isZipDialogOpen: true
|
|
});
|
|
} else {
|
|
seafileAPI.zipDownload(repoID, this.props.path, this.state.dirent.name).then((res) => {
|
|
const zipToken = res.data['zip_token'];
|
|
location.href = `${fileServerRoot}zip/${zipToken}`;
|
|
}).catch((error) => {
|
|
let errorMsg = Utils.getErrorMsg(error);
|
|
this.setState({
|
|
isLoading: false,
|
|
errorMsg: errorMsg
|
|
});
|
|
});
|
|
}
|
|
} else {
|
|
let url = URLDecorator.getUrl({ type: 'download_file_url', repoID: repoID, filePath: direntPath });
|
|
location.href = url;
|
|
}
|
|
};
|
|
|
|
closeZipDialog = () => {
|
|
this.setState({
|
|
isZipDialogOpen: false
|
|
});
|
|
};
|
|
|
|
getDirentPath = (dirent) => {
|
|
let path = this.props.path;
|
|
return path === '/' ? path + dirent.name : path + '/' + dirent.name;
|
|
};
|
|
|
|
onTagTooltipToggle = (e) => {
|
|
e.stopPropagation();
|
|
this.setState({ isShowTagTooltip: !this.state.isShowTagTooltip });
|
|
};
|
|
|
|
onItemMove = (destRepo, dirent, selectedPath, currentPath) => {
|
|
this.props.onItemMove(destRepo, dirent, selectedPath, currentPath);
|
|
};
|
|
|
|
onItemDragStart = (e) => {
|
|
if (Utils.isIEBrowser() || !this.state.canDrag) {
|
|
return false;
|
|
}
|
|
e.dataTransfer.effectAllowed = 'move';
|
|
let { selectedDirentList } = this.props;
|
|
if (selectedDirentList.length > 0 && selectedDirentList.includes(this.state.dirent)) { // drag items and selectedDirentList include item
|
|
this.props.onShowDirentsDraggablePreview();
|
|
e.dataTransfer.setDragImage(this.refs.empty_content, 0, 0); // Show an empty content
|
|
let selectedList = selectedDirentList.map(item => {
|
|
let nodeRootPath = this.getDirentPath(item);
|
|
let dragStartItemData = { nodeDirent: item, nodeParentPath: this.props.path, nodeRootPath: nodeRootPath };
|
|
return dragStartItemData;
|
|
});
|
|
selectedList = JSON.stringify(selectedList);
|
|
e.dataTransfer.setData('application/drag-item-info', selectedList);
|
|
return ;
|
|
}
|
|
|
|
if (e.dataTransfer && e.dataTransfer.setDragImage) {
|
|
e.dataTransfer.setDragImage(this.refs.drag_icon, 15, 15);
|
|
}
|
|
|
|
let nodeRootPath = this.getDirentPath(this.state.dirent);
|
|
let dragStartItemData = { nodeDirent: this.state.dirent, nodeParentPath: this.props.path, nodeRootPath: nodeRootPath };
|
|
dragStartItemData = JSON.stringify(dragStartItemData);
|
|
|
|
e.dataTransfer.setData('application/drag-item-info', dragStartItemData);
|
|
};
|
|
|
|
onItemDragEnter = (e) => {
|
|
if (Utils.isIEBrowser() || !this.state.canDrag) {
|
|
return false;
|
|
}
|
|
if (this.state.dirent.type === 'dir') {
|
|
e.stopPropagation();
|
|
this.setState({ isDropTipshow: true });
|
|
}
|
|
};
|
|
|
|
onItemDragOver = (e) => {
|
|
if (Utils.isIEBrowser() || !this.state.canDrag) {
|
|
return false;
|
|
}
|
|
if (e.dataTransfer.dropEffect === 'copy') {
|
|
return;
|
|
}
|
|
e.preventDefault();
|
|
e.dataTransfer.dropEffect = 'move';
|
|
};
|
|
|
|
onItemDragLeave = (e) => {
|
|
if (Utils.isIEBrowser() || !this.state.canDrag) {
|
|
return false;
|
|
}
|
|
|
|
if (this.state.dirent.type === 'dir') {
|
|
e.stopPropagation();
|
|
}
|
|
this.setState({ isDropTipshow: false });
|
|
};
|
|
|
|
onItemDragDrop = (e) => {
|
|
if (Utils.isIEBrowser() || !this.state.canDrag) {
|
|
return false;
|
|
}
|
|
this.setState({ isDropTipshow: false });
|
|
if (e.dataTransfer.files.length) { // uploaded files
|
|
return;
|
|
}
|
|
if (this.state.dirent.type === 'dir') {
|
|
e.stopPropagation();
|
|
} else {
|
|
return;
|
|
}
|
|
let dragStartItemData = e.dataTransfer.getData('application/drag-item-info');
|
|
dragStartItemData = JSON.parse(dragStartItemData);
|
|
if (Array.isArray(dragStartItemData)) { // move items
|
|
let direntPaths = dragStartItemData.map(draggedItem => {
|
|
return draggedItem.nodeRootPath;
|
|
});
|
|
|
|
let selectedPath = Utils.joinPath(this.props.path, this.state.dirent.name);
|
|
|
|
if (direntPaths.some(direntPath => { return direntPath === selectedPath;})) { // eg; A/B, A/C --> A/B
|
|
return;
|
|
}
|
|
|
|
this.props.onItemsMove(this.props.currentRepoInfo, selectedPath);
|
|
return ;
|
|
}
|
|
|
|
let { nodeDirent, nodeParentPath, nodeRootPath } = dragStartItemData;
|
|
let dropItemData = this.state.dirent;
|
|
|
|
if (nodeDirent.name === dropItemData.name) {
|
|
return;
|
|
}
|
|
|
|
// copy the dirent to it's child. eg: A/B -> A/B/C
|
|
if (dropItemData.type === 'dir' && nodeDirent.type === 'dir') {
|
|
if (nodeParentPath !== this.props.path) {
|
|
if (this.props.path.indexOf(nodeRootPath) !== -1) {
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
let selectedPath = Utils.joinPath(this.props.path, this.state.dirent.name);
|
|
this.onItemMove(this.props.currentRepoInfo, nodeDirent, selectedPath, nodeParentPath);
|
|
};
|
|
|
|
onItemMouseDown = (event) => {
|
|
this.props.onItemMouseDown(event);
|
|
};
|
|
|
|
onItemContextMenu = (event) => {
|
|
this.props.onItemContextMenu(event, this.state.dirent);
|
|
};
|
|
|
|
getDirentHref = () => {
|
|
let { path, repoID } = this.props;
|
|
let dirent = this.state.dirent;
|
|
let direntPath = Utils.joinPath(path, dirent.name);
|
|
let dirHref = '';
|
|
if (this.props.currentRepoInfo) {
|
|
dirHref = siteRoot + 'library/' + repoID + '/' + this.props.currentRepoInfo.repo_name + Utils.encodePath(direntPath);
|
|
}
|
|
let fileHref = siteRoot + 'lib/' + repoID + '/file' + Utils.encodePath(direntPath);
|
|
if (dirent.is_sdoc_revision && dirent.revision_id) {
|
|
fileHref = siteRoot + 'lib/' + repoID + '/revisions/' + dirent.revision_id + '/';
|
|
}
|
|
return dirent.type === 'dir' ? dirHref : fileHref;
|
|
};
|
|
|
|
renderItemOperation = () => {
|
|
let { currentRepoInfo, selectedDirentList } = this.props;
|
|
let dirent = this.state.dirent;
|
|
let canDownload = true;
|
|
let canDelete = true;
|
|
const { isCustomPermission, customPermission } = this;
|
|
if (isCustomPermission) {
|
|
const { permission } = customPermission;
|
|
canDownload = permission.download;
|
|
canDelete = permission.delete;
|
|
}
|
|
|
|
// https://dev.seafile.com/seahub/lib/d6f300e7-bb2b-4722-b83e-cf45e370bfbc/file/seaf-server%20%E5%8A%9F%E8%83%BD%E8%AE%BE%E8%AE%A1/%E6%9D%83%E9%99%90%E7%9B%B8%E5%85%B3/%E8%B5%84%E6%96%99%E5%BA%93%E6%9D%83%E9%99%90%E8%A7%84%E8%8C%83.md
|
|
let showShareBtn = Utils.isHasPermissionToShare(currentRepoInfo, dirent.permission, dirent);
|
|
|
|
return (
|
|
<>
|
|
{selectedDirentList.length > 1 ?
|
|
<>
|
|
{this.state.isOperationShow && !dirent.isSelected &&
|
|
<div className="operations">
|
|
{(dirent.permission === 'rw' || dirent.permission === 'r' || (isCustomPermission && canDownload)) && (
|
|
<a href="#" className="op-icon sf3-font sf3-font-download1" title={gettext('Download')} role="button" aria-label={gettext('Download')} onClick={this.onItemDownload}></a>
|
|
)}
|
|
{showShareBtn && (
|
|
<a href="#" className="op-icon sf3-font-share sf3-font" title={gettext('Share')} role="button" aria-label={gettext('Share')} onClick={this.onItemShare}></a>
|
|
)}
|
|
{(dirent.permission === 'rw' || dirent.permission === 'cloud-edit' || (isCustomPermission && canDelete)) && (
|
|
<a href="#" className="op-icon sf3-font-delete1 sf3-font" title={gettext('Delete')} role="button" aria-label={gettext('Delete')} onClick={this.onItemDelete}></a>
|
|
)}
|
|
<ItemDropdownMenu
|
|
item={this.state.dirent}
|
|
isHandleContextMenuEvent={true}
|
|
getMenuList={this.props.getDirentItemMenuList}
|
|
onMenuItemClick={this.onMenuItemClick}
|
|
unfreezeItem={this.unfreezeItem}
|
|
freezeItem={this.props.freezeItem}
|
|
/>
|
|
</div>
|
|
}
|
|
</> :
|
|
<>
|
|
{this.state.isOperationShow &&
|
|
<div className="operations">
|
|
{(dirent.permission === 'rw' || dirent.permission === 'r' || (isCustomPermission && canDownload)) && (
|
|
<a href="#" className="op-icon sf3-font sf3-font-download1" title={gettext('Download')} role="button" aria-label={gettext('Download')} onClick={this.onItemDownload}></a>
|
|
)}
|
|
{showShareBtn && (
|
|
<a href="#" className="op-icon sf3-font-share sf3-font" title={gettext('Share')} role="button" aria-label={gettext('Share')} onClick={this.onItemShare}></a>
|
|
)}
|
|
{(dirent.permission === 'rw' || dirent.permission === 'cloud-edit' || (isCustomPermission && canDelete)) && (
|
|
<a href="#" className="op-icon sf3-font-delete1 sf3-font" title={gettext('Delete')} role="button" aria-label={gettext('Delete')} onClick={this.onItemDelete}></a>
|
|
)}
|
|
<ItemDropdownMenu
|
|
item={this.state.dirent}
|
|
isHandleContextMenuEvent={true}
|
|
getMenuList={this.props.getDirentItemMenuList}
|
|
onMenuItemClick={this.onMenuItemClick}
|
|
unfreezeItem={this.unfreezeItem}
|
|
freezeItem={this.props.freezeItem}
|
|
/>
|
|
</div>
|
|
}
|
|
</>
|
|
}
|
|
</>
|
|
);
|
|
};
|
|
|
|
render() {
|
|
let { path } = this.props;
|
|
let dirent = this.state.dirent;
|
|
let direntPath = Utils.joinPath(path, dirent.name);
|
|
|
|
let iconUrl = Utils.getDirentIcon(dirent);
|
|
|
|
let isSelected = dirent.isSelected;
|
|
|
|
let lockedInfo = dirent.is_freezed ? gettext('Frozen by {name}') : gettext('locked by {name}');
|
|
lockedInfo = lockedInfo.replace('{name}', dirent.lock_owner_name);
|
|
|
|
const isDesktop = Utils.isDesktop();
|
|
const { canDrag } = this.state;
|
|
const lockedImageUrl = `${mediaUrl}img/file-${dirent.is_freezed ? 'freezed-32.svg' : 'locked-32.png'}`;
|
|
const lockedMessage = dirent.is_freezed ? gettext('freezed') : gettext('locked');
|
|
|
|
return (
|
|
<>
|
|
{isDesktop ?
|
|
<tr
|
|
className={classnames(
|
|
{ 'tr-highlight': this.state.highlight },
|
|
{ 'tr-drop-effect': this.state.isDropTipshow },
|
|
{ 'tr-active': isSelected },
|
|
)}
|
|
draggable={canDrag}
|
|
onFocus={this.onMouseEnter}
|
|
onMouseEnter={this.onMouseEnter}
|
|
onMouseOver={this.onMouseOver}
|
|
onMouseLeave={this.onMouseLeave}
|
|
onClick={this.onDirentClick}
|
|
onDragStart={this.onItemDragStart}
|
|
onDragEnter={this.onItemDragEnter}
|
|
onDragOver={this.onItemDragOver}
|
|
onDragLeave={this.onItemDragLeave}
|
|
onDrop={this.onItemDragDrop}
|
|
onMouseDown={this.onItemMouseDown}
|
|
onContextMenu={this.onItemContextMenu}
|
|
>
|
|
<td className={`pl10 pr-2 ${this.state.isDragTipShow ? 'tr-drag-effect' : ''}`}>
|
|
<input
|
|
type="checkbox"
|
|
className="vam"
|
|
onClick={this.onItemSelected}
|
|
style={{ position: 'relative', top: -1 }}
|
|
onChange={() => {}}
|
|
checked={isSelected}
|
|
aria-label={isSelected ? gettext('Unselect this item') : gettext('Select this item')}
|
|
/>
|
|
</td>
|
|
<td className="pl-2 pr-2">
|
|
{dirent.starred !== undefined &&
|
|
<i
|
|
role="button"
|
|
aria-label={dirent.starred ? gettext('Unstar') : gettext('Star')}
|
|
onClick={this.onItemStarred}
|
|
className={`sf3-font ${dirent.starred ? 'sf3-font-star' : 'sf3-font-star-empty'}`}
|
|
>
|
|
</i>
|
|
}
|
|
</td>
|
|
<td className="pl-2 pr-2">
|
|
<div className="dir-icon">
|
|
{(this.canPreview && dirent.encoded_thumbnail_src) ?
|
|
<img ref='drag_icon' src={`${siteRoot}${dirent.encoded_thumbnail_src}`} className="thumbnail cursor-pointer" onClick={this.onItemClick} alt="" /> :
|
|
<img ref='drag_icon' src={iconUrl} width="24" alt='' />
|
|
}
|
|
{dirent.is_locked && <img className="locked" src={lockedImageUrl} alt={lockedMessage} title={lockedInfo}/>}
|
|
<div ref="empty_content" className="empty-content"></div>
|
|
</div>
|
|
</td>
|
|
<td className="name">
|
|
{this.state.isRenameing &&
|
|
<Rename
|
|
hasSuffix={dirent.type !== 'dir'}
|
|
name={dirent.name}
|
|
onRenameConfirm={this.onRenameConfirm}
|
|
onRenameCancel={this.onRenameCancel}
|
|
/>
|
|
}
|
|
{!this.state.isRenameing && (
|
|
<>
|
|
{(!dirent.isDir() && !this.canPreview) ?
|
|
<a className="sf-link" onClick={this.onItemClick}>{dirent.name}</a> :
|
|
<a href={this.getDirentHref()} onClick={this.onItemClick}>{dirent.name}</a>
|
|
}
|
|
</>
|
|
)}
|
|
</td>
|
|
<td className="tag-list-title">
|
|
{(dirent.type !== 'dir' && dirent.file_tags && dirent.file_tags.length > 0) && (
|
|
<div id={this.tagListTitleID} className="dirent-item tag-list tag-list-stacked">
|
|
{dirent.file_tags.map((fileTag, index) => {
|
|
return (
|
|
<FileTag fileTag={fileTag} length={dirent.file_tags.length} key={index} index={index}/>
|
|
);
|
|
})}
|
|
</div>
|
|
)}
|
|
{(dirent.type !== 'dir' && (!dirent.file_tags || dirent.file_tags.length == 0)) &&
|
|
<div id={this.tagListTitleID} className="dirent-item tag-list tag-list-stacked"></div>
|
|
}
|
|
</td>
|
|
<td className="operation">{this.renderItemOperation()}</td>
|
|
<td className="file-size">{dirent.size || ''}</td>
|
|
<td className="last-update" title={dayjs.unix(dirent.mtime).format('dddd, MMMM D, YYYY h:mm:ss A')}>{dirent.mtime_relative}</td>
|
|
</tr>
|
|
:
|
|
<tr>
|
|
<td onClick={this.onItemClick}>
|
|
<div className="dir-icon">
|
|
{(this.canPreview && dirent.encoded_thumbnail_src) ?
|
|
<img src={`${siteRoot}${dirent.encoded_thumbnail_src}`} className="thumbnail cursor-pointer" alt="" /> :
|
|
<img src={iconUrl} width="24" alt="" />
|
|
}
|
|
{dirent.is_locked && <img className="locked" src={lockedImageUrl} alt={lockedMessage} title={lockedInfo}/>}
|
|
</div>
|
|
</td>
|
|
<td onClick={this.onItemClick}>
|
|
{this.state.isRenameing &&
|
|
<Rename
|
|
hasSuffix={dirent.type !== 'dir'}
|
|
name={dirent.name}
|
|
onRenameConfirm={this.onRenameConfirm}
|
|
onRenameCancel={this.onRenameCancel}
|
|
/>
|
|
}
|
|
{!this.state.isRenameing && (
|
|
<>
|
|
{(!dirent.isDir() && !this.canPreview) ?
|
|
<a className="sf-link">{dirent.name}</a> :
|
|
<a href={this.getDirentHref()}>{dirent.name}</a>
|
|
}
|
|
</>
|
|
)}
|
|
<br />
|
|
{dirent.size && <span className="item-meta-info">{dirent.size}</span>}
|
|
<span className="item-meta-info">{dirent.mtime_relative}</span>
|
|
</td>
|
|
<td>
|
|
<Dropdown isOpen={this.state.isOpMenuOpen} toggle={this.toggleOpMenu}>
|
|
<DropdownToggle
|
|
tag="i"
|
|
className="sf-dropdown-toggle sf3-font sf3-font-more-vertical ml-0"
|
|
title={gettext('More operations')}
|
|
aria-label={gettext('More operations')}
|
|
data-toggle="dropdown"
|
|
aria-expanded={this.state.isOpMenuOpen}
|
|
/>
|
|
<div className={this.state.isOpMenuOpen ? '' : 'd-none'} onClick={this.toggleOpMenu}>
|
|
<div className="mobile-operation-menu-bg-layer"></div>
|
|
<div className="mobile-operation-menu">
|
|
{dirent.starred !== undefined &&
|
|
<DropdownItem className="mobile-menu-item" onClick={this.onItemStarred}>
|
|
{dirent.starred ? gettext('Unstar') : gettext('Star')}
|
|
</DropdownItem>
|
|
}
|
|
{this.props.getDirentItemMenuList(dirent, true).map((item, index) => {
|
|
if (item != 'Divider' && item.key != 'Open via Client') {
|
|
return (
|
|
<DropdownItem
|
|
className="mobile-menu-item"
|
|
key={index}
|
|
data-op={item.key}
|
|
onClick={this.onMobileMenuItemClick}
|
|
>
|
|
{item.value}
|
|
</DropdownItem>
|
|
);
|
|
} else {
|
|
return null;
|
|
}
|
|
})}
|
|
</div>
|
|
</div>
|
|
</Dropdown>
|
|
</td>
|
|
</tr>
|
|
}
|
|
{this.state.isMoveDialogShow &&
|
|
<ModalPortal>
|
|
<MoveDirentDialog
|
|
path={this.props.path}
|
|
repoID={this.props.repoID}
|
|
dirent={this.state.dirent}
|
|
isMultipleOperation={this.state.isMultipleOperation}
|
|
onItemMove={this.props.onItemMove}
|
|
onCancelMove={this.onItemMoveToggle}
|
|
repoEncrypted={this.props.repoEncrypted}
|
|
onAddFolder={this.props.onAddFolder}
|
|
/>
|
|
</ModalPortal>
|
|
}
|
|
{this.state.isCopyDialogShow &&
|
|
<ModalPortal>
|
|
<CopyDirentDialog
|
|
path={this.props.path}
|
|
repoID={this.props.repoID}
|
|
dirent={this.state.dirent}
|
|
isMultipleOperation={this.state.isMultipleOperation}
|
|
onItemCopy={this.props.onItemCopy}
|
|
onCancelCopy={this.onItemCopyToggle}
|
|
repoEncrypted={this.props.repoEncrypted}
|
|
onAddFolder={this.props.onAddFolder}
|
|
/>
|
|
</ModalPortal>
|
|
}
|
|
<MediaQuery query="(min-width: 768px)">
|
|
{this.state.isEditFileTagShow &&
|
|
<EditFileTagPopover
|
|
repoID={this.props.repoID}
|
|
repoTags={this.props.repoTags}
|
|
fileTagList={dirent.file_tags}
|
|
filePath={direntPath}
|
|
toggleCancel={this.onEditFileTagToggle}
|
|
onFileTagChanged={this.onFileTagChanged}
|
|
target={this.tagListTitleID}
|
|
isEditFileTagShow={this.state.isEditFileTagShow}
|
|
/>
|
|
}
|
|
</MediaQuery>
|
|
<MediaQuery query="(max-width: 767.8px)">
|
|
{this.state.isEditFileTagShow &&
|
|
<EditFileTagDialog
|
|
repoID={this.props.repoID}
|
|
repoTags={this.props.repoTags}
|
|
fileTagList={dirent.file_tags}
|
|
filePath={direntPath}
|
|
toggleCancel={this.onEditFileTagToggle}
|
|
onFileTagChanged={this.onFileTagChanged}
|
|
/>
|
|
}
|
|
</MediaQuery>
|
|
{this.state.isZipDialogOpen &&
|
|
<ModalPortal>
|
|
<ZipDownloadDialog
|
|
repoID={this.props.repoID}
|
|
path={this.props.path}
|
|
target={this.state.dirent.name}
|
|
toggleDialog={this.closeZipDialog}
|
|
/>
|
|
</ModalPortal>
|
|
}
|
|
{this.state.isShareDialogShow &&
|
|
<ModalPortal>
|
|
<ShareDialog
|
|
itemType={dirent.type}
|
|
itemName={dirent.name}
|
|
itemPath={direntPath}
|
|
userPerm={dirent.permission}
|
|
repoID={this.props.repoID}
|
|
repoEncrypted={this.props.repoEncrypted}
|
|
enableDirPrivateShare={this.props.enableDirPrivateShare}
|
|
isGroupOwnedRepo={this.props.isGroupOwnedRepo}
|
|
toggleDialog={this.closeSharedDialog}
|
|
/>
|
|
</ModalPortal>
|
|
}
|
|
{this.state.isPermissionDialogOpen &&
|
|
<ModalPortal>
|
|
<LibSubFolderPermissionDialog
|
|
toggleDialog={this.onPermissionItem}
|
|
repoID={this.props.repoID}
|
|
folderPath={direntPath}
|
|
folderName={dirent.name}
|
|
isDepartmentRepo={this.props.isGroupOwnedRepo}
|
|
/>
|
|
</ModalPortal>
|
|
}
|
|
{this.state.isFileAccessLogDialogOpen &&
|
|
<ModalPortal>
|
|
<FileAccessLog
|
|
repoID={this.props.repoID}
|
|
filePath={direntPath}
|
|
fileName={dirent.name}
|
|
toggleDialog={this.toggleFileAccessLogDialog}
|
|
/>
|
|
</ModalPortal>
|
|
}
|
|
</>
|
|
);
|
|
}
|
|
}
|
|
|
|
DirentListItem.propTypes = propTypes;
|
|
|
|
export default DirentListItem;
|