/* * 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 . */ 'use strict'; exports.__esModule = true; var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var _avatarUserAvatar = require('../avatar/UserAvatar'); var _avatarUserAvatar2 = _interopRequireDefault(_avatarUserAvatar); var React = require('react'); var _require$requireLib = require('pydio').requireLib('boot'); var AsyncComponent = _require$requireLib.AsyncComponent; /** * Card presentation of a user. Relies on the UserAvatar object, * plus the PydioForm.UserCreationForm when in edit mode. */ var UserCard = (function (_React$Component) { _inherits(UserCard, _React$Component); function UserCard(props, context) { _classCallCheck(this, UserCard); _React$Component.call(this, props, context); this.state = { editForm: false }; } UserCard.prototype.render = function render() { var _this = this; var item = this.props.item; var editableProps = {}, editForm = undefined; if (item._parent && item._parent.id === 'ext') { editableProps = { userEditable: true, onDeleteAction: function onDeleteAction() { _this.props.onDeleteAction(item._parent, [item]); }, onEditAction: function onEditAction() { _this.setState({ editForm: true }); }, reloadAction: function reloadAction() { _this.props.onUpdateAction(item); } }; } if (this.state.editForm) { editForm = React.createElement(AsyncComponent, { namespace: 'PydioForm', componentName: 'UserCreationForm', pydio: this.props.pydio, zDepth: 0, style: { height: 500 }, newUserName: item.id, editMode: true, userData: item, onUserCreated: function () { _this.props.onUpdateAction(item);_this.setState({ editForm: false }); }, onCancel: function () { _this.setState({ editForm: false }); } }); } return React.createElement( 'div', null, React.createElement( _avatarUserAvatar2['default'], _extends({ userId: this.props.item.id, richCard: true, pydio: this.props.pydio, cardSize: this.props.style.width }, editableProps), editForm ) ); }; return UserCard; })(React.Component); UserCard.propTypes = { /** * Pydio instance */ pydio: React.PropTypes.instanceOf(Pydio), /** * Team data object */ item: React.PropTypes.object, /** * Applied to root container */ style: React.PropTypes.object, /** * Called to dismiss the popover */ onRequestClose: React.PropTypes.func, /** * Delete current team */ onDeleteAction: React.PropTypes.func, /** * Update current team */ onUpdateAction: React.PropTypes.func }; exports['default'] = UserCard; module.exports = exports['default'];