/* * Copyright 2007-2017 Charles du Jeu - Abstrium SAS * This file is part of Pydio. * * Pydio is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Pydio is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with Pydio. If not, see . * * The latest code can be found at . */ import {RoleMessagesConsumerMixin} from '../util/MessagesMixin' export default React.createClass({ mixins:[RoleMessagesConsumerMixin], propTypes: { availableRoles: React.PropTypes.array, rolesDetails: React.PropTypes.object, currentRoles:React.PropTypes.array, controller: React.PropTypes.object }, onChange: function(e, selectedIndex, menuItem){ var newRole = menuItem.payload; if(newRole == -1) return; var newRoles = this.props.currentRoles.slice(); newRoles.push(newRole); this.props.controller.updateUserRoles(newRoles); }, remove: function(roleId){ var newRoles = LangUtils.arrayWithout(this.props.currentRoles, this.props.currentRoles.indexOf(roleId)); this.props.controller.updateUserRoles(newRoles); }, orderUpdated:function(oldId, newId, currentValues){ var ordered = currentValues.map(function(o){return o.payload;}); this.props.controller.orderUserRoles(ordered); }, render: function(){ var groups=[], manual=[], users=[]; var currentRoles = this.props.currentRoles; var details = this.props.rolesDetails; currentRoles.map(function(r){ if(r.startsWith('AJXP_GRP_/')){ if(r == 'AJXP_GRP_/') { groups.push('/ ' + this.context.getMessage('user.25', 'ajxp_admin')); }else { groups.push(this.context.getMessage('user.26', 'ajxp_admin').replace('%s', r.substr('AJXP_GRP_'.length))); } }else if(r.startsWith('AJXP_USR_/')){ users.push(this.context.getMessage('user.27', 'ajxp_admin')); }else{ if(!details[r]){ return; } let label = details[r].label; if(details[r].sticky) label += ' [' + this.context.getMessage('19') + ']'; // always overrides manual.push({payload:r, text:label}); } }.bind(this)); var addableRoles = [{text:this.context.getMessage('20'), payload:-1}]; this.props.availableRoles.map(function(r){ if(currentRoles.indexOf(r) == -1) addableRoles.push({text:details[r].label, payload:r}); }); return (

Manage roles {this.props.loadingMessage ? ' ('+this.context.getMessage('21')+')':''}

{groups.map(function(g){ return
{g}
; })} {users.map(function(u){ return
{u}
; })}
); } });