import React, { Component, Fragment } from 'react';
import PropTypes from 'prop-types';
import { Link } from '@gatsbyjs/reach-router';
import dayjs from 'dayjs';
import { Utils } from '../../../utils/utils';
import { siteRoot, gettext } from '../../../utils/constants';
import EmptyTip from '../../../components/empty-tip';
import Loading from '../../../components/loading';
import Paginator from '../../../components/paginator';
import { systemAdminAPI } from '../../../utils/system-admin-api';
import Selector from '../../../components/single-selector';
import CommonOperationConfirmationDialog from '../../../components/dialog/common-operation-confirmation-dialog';
import UserLink from '../user-link';
import toaster from '../../../components/toast';
const { availableRoles } = window.sysadmin.pageOptions;
class Content extends Component {
constructor(props) {
super(props);
this.state = {
isItemFreezed: false
};
}
toggleItemFreezed = (isFreezed) => {
this.setState({ isItemFreezed: isFreezed });
};
getPreviousPage = () => {
this.props.getListByPage(this.props.currentPage - 1);
};
getNextPage = () => {
this.props.getListByPage(this.props.currentPage + 1);
};
render() {
const { loading, errorMsg, items } = this.props;
if (loading) {
return ;
} else if (errorMsg) {
return
{errorMsg}
;
} else {
const emptyTip = (
);
const table = (
{gettext('Name')} |
{gettext('Creator')} |
{gettext('Status')} |
{gettext('Role')} |
{gettext('Space Used')} |
{gettext('Created At')} |
{/* Operations */} |
{items.map((item, index) => {
return ( );
})}
{this.props.currentPage &&
}
);
return items.length ? table : emptyTip;
}
}
}
Content.propTypes = {
loading: PropTypes.bool.isRequired,
errorMsg: PropTypes.string.isRequired,
getListByPage: PropTypes.func.isRequired,
currentPage: PropTypes.number,
items: PropTypes.array.isRequired,
updateRole: PropTypes.func.isRequired,
updateStatus: PropTypes.func.isRequired,
deleteOrg: PropTypes.func.isRequired,
hasNextPage: PropTypes.bool,
resetPerPage: PropTypes.func,
curPerPage: PropTypes.number,
};
class Item extends Component {
constructor(props) {
super(props);
this.state = {
highlighted: false,
isDeleteDialogOpen: false,
deleteDialogMsg: '',
isConfirmInactiveDialogOpen: false
};
}
handleMouseEnter = () => {
if (this.props.isItemFreezed) return;
this.setState({ highlighted: true });
};
handleMouseLeave = () => {
if (this.props.isItemFreezed) return;
this.setState({ highlighted: false });
};
toggleDeleteDialog = (e) => {
if (e) {
e.preventDefault();
}
this.setState({ isDeleteDialogOpen: !this.state.isDeleteDialogOpen }, () => {
if (this.state.isDeleteDialogOpen) {
systemAdminAPI.sysAdminGetOrg(this.props.item.org_id).then((res) => {
let orgName = '' + Utils.HTMLescape(res.data.org_name) + '';
let userCount = '' + Utils.HTMLescape(res.data.users_count) + '';
let repoCount = '' + Utils.HTMLescape(res.data.repos_count) + '';
let deleteDialogMsg = gettext('Are you sure you want to delete {placeholder} ?')
.replace('{placeholder}', orgName) + '
' +
gettext('{userCount} user(s) and {repoCount} libraries of this organization will also be deleted.')
.replace('{userCount}', userCount)
.replace('{repoCount}', repoCount);
this.setState({ deleteDialogMsg: deleteDialogMsg });
}).catch(error => {
let errorMsg = Utils.getErrorMsg(error);
toaster.danger(errorMsg);
});
}
});
};
toggleConfirmInactiveDialog = () => {
this.setState({ isConfirmInactiveDialogOpen: !this.state.isConfirmInactiveDialogOpen });
};
translateStatus = (status) => {
switch (status) {
case 'active':
return gettext('Active');
case 'inactive':
return gettext('Inactive');
}
};
updateStatus = (statusOption) => {
const isActive = statusOption.value == 'active';
if (isActive) {
toaster.notify(gettext('It may take some time, please wait.'));
}
this.props.updateStatus(this.props.item.org_id, isActive);
};
setOrgInactive = () => {
this.props.updateStatus(this.props.item.org_id, false);
};
translateRole = (role) => {
switch (role) {
case 'default':
return gettext('Default');
case 'guest':
return gettext('Guest');
default:
return role;
}
};
updateRole = (roleOption) => {
this.props.updateRole(this.props.item.org_id, roleOption.value);
};
deleteOrg = () => {
toaster.notify(gettext('It may take some time, please wait.'));
this.props.deleteOrg(this.props.item.org_id);
};
render() {
const { item } = this.props;
const {
highlighted,
isDeleteDialogOpen,
deleteDialogMsg,
isConfirmInactiveDialogOpen
} = this.state;
const { role: curRole } = item;
this.roleOptions = availableRoles.map(item => {
return {
value: item,
text: this.translateRole(item),
isSelected: item == curRole
};
});
const currentSelectedOption = this.roleOptions.filter(item => item.isSelected)[0];
// edit status
const curStatus = item.is_active ? 'active' : 'inactive';
this.statusOptions = ['active', 'inactive'].map(item => {
return {
value: item,
text: this.translateStatus(item),
isSelected: item == curStatus
};
});
const currentSelectedStatusOption = this.statusOptions.filter(item => item.isSelected)[0];
const confirmSetUserInactiveMsg = gettext('Are you sure you want to set {user_placeholder} inactive?').replace('{user_placeholder}', item.org_name);
return (
{item.org_name} |
|
|
|
{`${Utils.bytesToSize(item.quota_usage)} / ${item.quota > 0 ? Utils.bytesToSize(item.quota) : '--'}`} |
{dayjs(item.ctime).format('YYYY-MM-DD HH:mm:ss')} |
|
{isDeleteDialogOpen &&
}
{isConfirmInactiveDialogOpen &&
}
);
}
}
Item.propTypes = {
item: PropTypes.object.isRequired,
updateRole: PropTypes.func.isRequired,
updateStatus: PropTypes.func.isRequired,
deleteOrg: PropTypes.func.isRequired,
isItemFreezed: PropTypes.bool.isRequired,
toggleItemFreezed: PropTypes.func.isRequired
};
export default Content;