1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-05 17:02:47 +00:00
Files
seahub/frontend/src/pages/share-admin/upload-links.js
lian 146c79ba44 clean orphan share/upload links (#5383)
* clean orphan share/upload links

* update style

* [share admin - links] fixup & improvements for 'deleted' tip & 'clean orphan links'

---------

Co-authored-by: llj <lingjun.li1@gmail.com>
2023-03-01 16:51:36 +08:00

317 lines
10 KiB
JavaScript

import React, { Component, Fragment } from 'react';
import PropTypes from 'prop-types';
import { Link } from '@gatsbyjs/reach-router';
import moment from 'moment';
import { Dropdown, DropdownToggle, DropdownItem, Button } from 'reactstrap';
import { gettext, siteRoot, canGenerateShareLink } from '../../utils/constants';
import { seafileAPI } from '../../utils/seafile-api';
import { Utils } from '../../utils/utils';
import toaster from '../../components/toast';
import Loading from '../../components/loading';
import EmptyTip from '../../components/empty-tip';
import UploadLink from '../../models/upload-link';
import ShareAdminLink from '../../components/dialog/share-admin-link';
import CommonOperationConfirmationDialog from '../../components/dialog/common-operation-confirmation-dialog';
import TopToolbar from '../../components/toolbar/top-toolbar';
const contentPropTypes = {
loading: PropTypes.bool.isRequired,
errorMsg: PropTypes.string.isRequired,
items: PropTypes.array.isRequired,
onRemoveLink: PropTypes.func.isRequired
};
class Content extends Component {
render() {
const { loading, errorMsg, items } = this.props;
if (loading) {
return <Loading />;
}
if (errorMsg) {
return <p className="error text-center">{errorMsg}</p>;
}
const emptyTip = (
<EmptyTip>
<h2>{gettext('No upload links')}</h2>
<p>{gettext('You have not created any upload links yet. An upload link allows anyone to upload files to a folder or library. You can create an upload link for a folder or library by clicking the share icon to the right of its name.')}</p>
</EmptyTip>
);
const isDesktop = Utils.isDesktop();
const table = (
<table className={`table-hover ${isDesktop ? '': 'table-thead-hidden'}`}>
<thead>
{isDesktop ? (
<tr>
<th width="4%">{/*icon*/}</th>
<th width="30%">{gettext('Name')}</th>
<th width="24%">{gettext('Library')}</th>
<th width="16%">{gettext('Visits')}</th>
<th width="16%">{gettext('Expiration')}</th>
<th width="10%">{/*Operations*/}</th>
</tr>
) : (
<tr>
<th width="12%"></th>
<th width="80%"></th>
<th width="8%"></th>
</tr>
)}
</thead>
<tbody>
{items.map((item, index) => {
return (<Item key={index} isDesktop={isDesktop} item={item} onRemoveLink={this.props.onRemoveLink}/>);
})}
</tbody>
</table>
);
return items.length ? table : emptyTip;
}
}
Content.propTypes = contentPropTypes;
const itemPropTypes = {
isDesktop: PropTypes.bool.isRequired,
item: PropTypes.object.isRequired,
onRemoveLink: PropTypes.func.isRequired
};
class Item extends Component {
constructor(props) {
super(props);
this.state = {
isOpIconShown: false,
isOpMenuOpen: false, // for mobile
isLinkDialogOpen: false
};
}
toggleOpMenu = () => {
this.setState({
isOpMenuOpen: !this.state.isOpMenuOpen
});
}
toggleLinkDialog = () => {
this.setState({
isLinkDialogOpen: !this.state.isLinkDialogOpen
});
}
handleMouseOver = () => {
this.setState({isOpIconShown: true});
}
handleMouseOut = () => {
this.setState({isOpIconShown: false});
}
viewLink = (e) => {
e.preventDefault();
this.toggleLinkDialog();
}
removeLink = (e) => {
e.preventDefault();
this.props.onRemoveLink(this.props.item);
}
renderExpiration = () => {
const item = this.props.item;
if (!item.expire_date) {
return '--';
}
const expire_date = moment(item.expire_date).format('YYYY-MM-DD');
const expire_time = moment(item.expire_date).format('YYYY-MM-DD HH:mm:ss');
return (<span className={item.is_expired ? 'error' : ''} title={expire_time}>{expire_date}</span>);
}
render() {
let item = this.props.item;
const { isOpIconShown, isLinkDialogOpen } = this.state;
const iconUrl = Utils.getFolderIconUrl(false);
const repoUrl = `${siteRoot}library/${item.repo_id}/${encodeURIComponent(item.repo_name)}`;
const objUrl = `${repoUrl}${Utils.encodePath(item.path)}`;
const deletedTip = item.obj_id === '' ? <span style={{color:'red'}}>{gettext('(deleted)')}</span> : null;
const desktopItem = (
<tr onMouseOver={this.handleMouseOver} onMouseOut={this.handleMouseOut} onFocus={this.handleMouseOver}>
<td><img src={iconUrl} alt="" width="24" /></td>
<td><Link to={objUrl}>{item.obj_name}</Link>{deletedTip}</td>
<td><Link to={repoUrl}>{item.repo_name}</Link></td>
<td>{item.view_cnt}</td>
<td>{this.renderExpiration()}</td>
<td>
{!item.is_expired && <a href="#" className={`sf2-icon-link action-icon ${isOpIconShown ? '' : 'invisible'}`} title={gettext('View')} aria-label={gettext('View')} role="button" onClick={this.viewLink}></a>}
<a href="#" className={`sf2-icon-delete action-icon ${isOpIconShown ? '' : 'invisible'}`} title={gettext('Remove')} aria-label={gettext('Remove')} role="button" onClick={this.removeLink}></a>
</td>
</tr>
);
const mobileItem = (
<tr>
<td><img src={iconUrl} alt="" width="24" /></td>
<td>
<Link to={objUrl}>{item.obj_name}</Link>
<br />
<span>{item.repo_name}</span><br />
<span className="item-meta-info">{gettext('Visits')}: {item.view_cnt}</span>
<span className="item-meta-info">{gettext('Expiration')}: {this.renderExpiration()}</span>
</td>
<td>
<Dropdown isOpen={this.state.isOpMenuOpen} toggle={this.toggleOpMenu}>
<DropdownToggle
tag="i"
className="sf-dropdown-toggle fa fa-ellipsis-v ml-0"
title={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">
{!item.is_expired && <DropdownItem className="mobile-menu-item" onClick={this.viewLink}>{gettext('View')}</DropdownItem>}
<DropdownItem className="mobile-menu-item" onClick={this.removeLink}>{gettext('Remove')}</DropdownItem>
</div>
</div>
</Dropdown>
</td>
</tr>
);
return (
<Fragment>
{this.props.isDesktop ? desktopItem : mobileItem}
{isLinkDialogOpen &&
<ShareAdminLink
link={item.link}
toggleDialog={this.toggleLinkDialog}
/>
}
</Fragment>
);
}
}
Item.propTypes = itemPropTypes;
const propTypes = {
onShowSidePanel: PropTypes.func.isRequired,
onSearchedClick: PropTypes.func.isRequired
};
class ShareAdminUploadLinks extends Component {
constructor(props) {
super(props);
this.state = {
isCleanOrphanUploadLinksDialogOpen: false,
loading: true,
errorMsg: '',
items: []
};
}
componentDidMount() {
this.listUserUploadLinks();
}
listUserUploadLinks() {
seafileAPI.listUserUploadLinks().then((res) => {
let items = res.data.map(item => {
return new UploadLink(item);
});
this.setState({
loading: false,
items: items
});
}).catch((error) => {
this.setState({
loading: false,
errorMsg: Utils.getErrorMsg(error, true) // true: show login tip if 403
});
});
}
onRemoveLink = (item) => {
seafileAPI.deleteUploadLink(item.token).then(() => {
let items = this.state.items.filter(uploadItem => {
return uploadItem.token !== item.token;
});
this.setState({items: items});
const message = gettext('Successfully deleted 1 item.');
toaster.success(message);
}).catch((error) => {
const errMessage = Utils.getErrorMsg(error);
toaster.danger(errMessage);
});
}
toggleCleanOrphanUploadLinksDialog = () => {
this.setState({isCleanOrphanUploadLinksDialogOpen: !this.state.isCleanOrphanUploadLinksDialogOpen});
}
cleanOrphanUploadLinks = () => {
seafileAPI.cleanOrphanUploadLinks().then(res => {
const newItems = this.state.items.filter(item => item.obj_id !== '');
this.setState({items: newItems});
toaster.success(gettext('Successfully cleaned orphan upload links.'));
}).catch(error => {
let errMessage = Utils.getErrorMsg(error);
toaster.danger(errMessage);
});
}
render() {
return (
<Fragment>
<TopToolbar
onShowSidePanel={this.props.onShowSidePanel}
onSearchedClick={this.props.onSearchedClick}
>
<Button className="operation-item d-none d-md-block" onClick={this.toggleCleanOrphanUploadLinksDialog}>{gettext('Clean orphan upload links')}</Button>
</TopToolbar>
<div className="main-panel-center">
<div className="cur-view-container">
<div className="cur-view-path share-upload-nav">
<ul className="nav">
{canGenerateShareLink && (
<li className="nav-item"><Link to={`${siteRoot}share-admin-share-links/`} className="nav-link">{gettext('Share Links')}</Link></li>
)}
<li className="nav-item"><Link to={`${siteRoot}share-admin-upload-links/`} className="nav-link active">{gettext('Upload Links')}</Link></li>
</ul>
</div>
<div className="cur-view-content">
<Content
loading={this.state.loading}
errorMsg={this.state.errorMsg}
items={this.state.items}
onRemoveLink={this.onRemoveLink}
/>
</div>
</div>
</div>
{this.state.isCleanOrphanUploadLinksDialogOpen &&
<CommonOperationConfirmationDialog
title={gettext('Clean orphan upload links')}
message={gettext('Are you sure you want to clean orphan upload links?')}
executeOperation={this.cleanOrphanUploadLinks}
confirmBtnText={gettext('Clean')}
toggleDialog={this.toggleCleanOrphanUploadLinksDialog}
/>
}
</Fragment>
);
}
}
ShareAdminUploadLinks.propTypes = propTypes;
export default ShareAdminUploadLinks;