mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-02 23:48:47 +00:00
custom share permission (#4967)
* custom share permission * remove path field * add permission manager ui * optimize custom permission manager style * add permission setting * add normalize_custom_permission_name * optimize repo custom permission * delete useless code * optimize code * optimize code * optimize markdown file page * fix a few bugs * add permission control * repair modify permission * optimize style * optimize copyright * add try-except * optimize code * move file&folder * batch operation item * repair batch move item * update copyright * optimize move permission control * optimize code * optimize code * optimize code & fix code wranning * optimize code * delete unsupport permission * optimize code * repair code bug * add pro limit * optimize code * add permission handle for permission editor * repair new file&folder bug * optimize file uploader code * custom permission user can not visit custom permission module * optimize code * forbid comment&detail module * optimize code * optimize modify/preview permission * optimize custom permission share perm * optimize view file module: file-toolbar * optimize custom drag move operation * repair column view bug * optimize drag operation code * repair code bug * optimize code Co-authored-by: shanshuirenjia <978987373@qq.com>
This commit is contained in:
@@ -2,35 +2,132 @@ import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import { Utils } from '../../utils/utils';
|
||||
import SelectEditor from './select-editor';
|
||||
import { seafileAPI } from '../../utils/seafile-api';
|
||||
import CustomPermission from '../../models/custom-permission';
|
||||
import toaster from '../toast';
|
||||
import { isPro } from '../../utils/constants';
|
||||
|
||||
const propTypes = {
|
||||
repoID: PropTypes.string,
|
||||
isTextMode: PropTypes.bool.isRequired,
|
||||
isEditIconShow: PropTypes.bool.isRequired,
|
||||
permissions: PropTypes.array.isRequired,
|
||||
currentPermission: PropTypes.string.isRequired,
|
||||
onPermissionChanged: PropTypes.func.isRequired
|
||||
onPermissionChanged: PropTypes.func.isRequired,
|
||||
enableAddCustomPermission: PropTypes.bool,
|
||||
onAddCustomPermissionToggle: PropTypes.func,
|
||||
};
|
||||
|
||||
class SharePermissionEditor extends React.Component {
|
||||
|
||||
translatePermission = (permission) => {
|
||||
return Utils.sharePerms(permission);
|
||||
constructor(props) {
|
||||
super(props);
|
||||
this.state = {
|
||||
isLoading: true,
|
||||
customPermissions: []
|
||||
};
|
||||
|
||||
this.customPermissions = null;
|
||||
const { repoID } = this.props;
|
||||
this.CACHE_KEY = repoID ? `custom_permissions_${repoID}` : '';
|
||||
}
|
||||
|
||||
componentDidMount() {
|
||||
if (this.props.repoID && isPro) {
|
||||
this.listCustomPermissions();
|
||||
} else {
|
||||
this.setState({
|
||||
isLoading: false,
|
||||
customPermissions: [],
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
componentWillUnmount() {
|
||||
isPro && localStorage.removeItem(this.CACHE_KEY);
|
||||
}
|
||||
|
||||
listCustomPermissions = () => {
|
||||
const { repoID } = this.props;
|
||||
const cacheData = localStorage.getItem(this.CACHE_KEY);
|
||||
if (cacheData) {
|
||||
const { permission_list: permissions } = JSON.parse(cacheData);
|
||||
const customPermissions = permissions.map(item => new CustomPermission(item));
|
||||
this.setState({
|
||||
isLoading: false,
|
||||
customPermissions: customPermissions
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
seafileAPI.listCustomPermissions(repoID).then(res => {
|
||||
const { permission_list: permissions } = res.data;
|
||||
localStorage.setItem(this.CACHE_KEY, JSON.stringify(res.data));
|
||||
const customPermissions = permissions.map(item => new CustomPermission(item));
|
||||
this.setState({
|
||||
isLoading: false,
|
||||
customPermissions: customPermissions
|
||||
});
|
||||
}).catch(error => {
|
||||
let errMessage = Utils.getErrorMsg(error);
|
||||
toaster.danger(errMessage);
|
||||
this.setState({isLoading: false});
|
||||
});
|
||||
}
|
||||
|
||||
translatePermission = (permission) => {
|
||||
let value = Utils.sharePerms(permission);
|
||||
if (!value) {
|
||||
const { customPermissions } = this.state;
|
||||
const item = customPermissions.find(item => item.id + '' === permission);
|
||||
value = item && item.name;
|
||||
}
|
||||
return value;
|
||||
}
|
||||
|
||||
translateExplanation = (explanation) => {
|
||||
return Utils.sharePermsExplanation(explanation);
|
||||
let value = Utils.sharePermsExplanation(explanation);
|
||||
if (!value) {
|
||||
const { customPermissions } = this.state;
|
||||
const item = customPermissions.find(item => item.id + '' === explanation);
|
||||
value = item && item.description;
|
||||
}
|
||||
return value;
|
||||
}
|
||||
|
||||
getPermissions = () => {
|
||||
const { permissions } = this.props;
|
||||
let newPermissions = permissions.slice();
|
||||
const { customPermissions } = this.state;
|
||||
if (!this.customPermissions) {
|
||||
if (customPermissions.length > 0) {
|
||||
customPermissions.forEach(item => {
|
||||
newPermissions.push(item.id + '');
|
||||
});
|
||||
}
|
||||
this.customPermissions = newPermissions;
|
||||
}
|
||||
return this.customPermissions;
|
||||
}
|
||||
|
||||
render() {
|
||||
|
||||
const { isLoading } = this.state;
|
||||
if (isLoading) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return (
|
||||
<SelectEditor
|
||||
isTextMode={this.props.isTextMode}
|
||||
isEditIconShow={this.props.isEditIconShow}
|
||||
options={this.props.permissions}
|
||||
options={this.getPermissions()}
|
||||
currentOption={this.props.currentPermission}
|
||||
onOptionChanged={this.props.onPermissionChanged}
|
||||
translateOption={this.translatePermission}
|
||||
translateExplanation={this.translateExplanation}
|
||||
enableAddCustomPermission={this.props.enableAddCustomPermission}
|
||||
onAddCustomPermissionToggle={this.props.onAddCustomPermissionToggle}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user