/* * 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 React from 'react' const styles = { card: { backgroundColor: 'white' } }; /** * Default InfoPanel Card */ let InfoPanelCard = React.createClass({ propTypes: { title:React.PropTypes.string, actions:React.PropTypes.array }, render: function(){ let iconStyle = this.props.iconStyle || {}; iconStyle = {...iconStyle, color:this.props.iconColor, float:'right'}; let icon = this.props.icon ?
: null; let title = this.props.title ?
{icon}{this.props.title}
: null; let actions = this.props.actions ?
{this.props.actions}
: null; let rows, toolBar; if(this.props.standardData){ rows = this.props.standardData.map(function(object){ return (
{object.label}
{object.value}
); }); } if(this.props.primaryToolbars){ const themePalette = this.props.muiTheme.palette; const tBarStyle = { backgroundColor: themePalette.accent2Color }; toolBar = ( ); } return ( {title}
{this.props.children} {rows} {toolBar}
{actions}
); } }); InfoPanelCard = MaterialUI.Style.muiThemeable()(InfoPanelCard); export {InfoPanelCard as default}