/* * 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 . */ const React = require('react') const Controller = require('pydio/model/controller') import Utils from './Utils' export default function(Component){ class Wrapped extends React.Component{ constructor(props, context){ super(props, context); this.state = { menuItems: this.props.menuItems || [] }; } componentDidMount(){ if(this.props.controller && !this.props.menuItems){ this._observer = () => { const actions = this.props.controller.getContextActions('genericContext', null, this.props.toolbars); const menuItems = Utils.pydioActionsToItems(actions); this.setState({menuItems: menuItems}); }; if(this.props.controller === this.props.pydio.Controller){ this.props.pydio.observe("actions_refreshed", this._observer); }else{ this.props.controller.observe("actions_refreshed", this._observer); } this._observer(); } } componentWillUnmount(){ if(this._observer){ if(this.props.controller === this.props.pydio.Controller){ this.props.pydio.stopObserving("actions_refreshed", this._observer); }else{ this.props.controller.stopObserving("actions_refreshed", this._observer); } } } componentWillReceiveProps(nextProps){ if(nextProps.menuItems && nextProps.menuItems !== this.props.menuItems){ this.setState({menuItems: nextProps.menuItems}); } } render(){ return } } Wrapped.propTypes = { menuItems : React.PropTypes.array, toolbars : React.PropTypes.array, controller : React.PropTypes.instanceOf(Controller), pydio : React.PropTypes.instanceOf(Pydio) }; return Wrapped; }