/* * 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; }; var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; } 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 _react = require('react'); var _redux = require('redux'); var _materialUi = require('material-ui'); var _utils = require('./utils'); var getDisplayName = function getDisplayName(WrappedComponent) { return WrappedComponent.displayName || WrappedComponent.name || 'Component'; }; var withMenu = function withMenu(WrappedComponent) { return (function (_Component) { _inherits(_class, _Component); function _class() { _classCallCheck(this, _class); _Component.apply(this, arguments); } _class.prototype.getControlsFromObject = function getControlsFromObject(controls, group) { var _this = this; return Object.keys(controls).map(function (type) { var _props = _this.props; var disabled = _props['' + group + _utils.toTitleCase(type) + 'Disabled']; var handler = _props['on' + _utils.toTitleCase(group) + _utils.toTitleCase(type)]; var props = _objectWithoutProperties(_props, ['' + group + _utils.toTitleCase(type) + 'Disabled', 'on' + _utils.toTitleCase(group) + _utils.toTitleCase(type)]); if (typeof handler !== "function") return null; return React.cloneElement(controls[type](handler), { disabled: disabled }); }).filter(function (element) { return element; }); }; _class.prototype.render = function render() { var _this2 = this; var _props2 = this.props; var id = _props2.id; var controls = _props2.controls; var dispatch = _props2.dispatch; var remainingProps = _objectWithoutProperties(_props2, ['id', 'controls', 'dispatch']); var groups = Object.keys(controls); var toolbarGroups = groups.map(function (group) { return controls[group] instanceof Array ? controls[group] : _this2.getControlsFromObject(controls[group], group); }).filter(function (el) { return el.length > 0; }).map(function (controls, index) { return React.createElement( _materialUi.ToolbarGroup, { firstChild: index === 0, lastChild: index === groups.length - 1 }, controls ); }); return React.createElement( 'div', { style: { display: "flex", flexDirection: "column", flex: 1, overflow: "auto" } }, toolbarGroups.length > 0 && React.createElement( _materialUi.Toolbar, { style: { flexShrink: 0 } }, toolbarGroups ), React.createElement(WrappedComponent, remainingProps) ); }; _createClass(_class, null, [{ key: 'displayName', get: function get() { return 'WithMenu(' + getDisplayName(WrappedComponent) + ')'; } }, { key: 'defaultProps', get: function get() { return { controls: [] }; } }]); return _class; })(_react.Component); }; /*static get propTypes() { return Object.keys(newControls).map(type => ({ [`${type}Disabled`]: React.PropTypes.bool, [`on${toTitleCase(type)}`]: React.PropTypes.func })) } static get defaultProps() { return Object.keys(newControls).map(type => ({ [`${type}Disabled`]: false })) }*/ var withControls = function withControls() { var newControls = arguments.length <= 0 || arguments[0] === undefined ? {} : arguments[0]; return function (WrappedComponent) { return (function (_Component2) { _inherits(_class2, _Component2); function _class2() { _classCallCheck(this, _class2); _Component2.apply(this, arguments); } _class2.prototype.render = function render() { var _props3 = this.props; var _props3$controls = _props3.controls; var controls = _props3$controls === undefined ? {} : _props3$controls; var remainingProps = _objectWithoutProperties(_props3, ['controls']); return React.createElement(WrappedComponent, _extends({}, remainingProps, { controls: _extends({}, newControls, controls) })); }; _createClass(_class2, null, [{ key: 'displayName', get: function get() { return 'WithControls(' + getDisplayName(WrappedComponent) + ')'; } }]); return _class2; })(_react.Component); }; }; exports.withControls = withControls; exports.withMenu = withMenu;