proxy-based Twister client written with react-js
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

46 lines
1.3 KiB

var ReactBootstrap = require('react-bootstrap')
, NavItem = ReactBootstrap.NavItem
, Nav = ReactBootstrap.Nav
, ListGroup = ReactBootstrap.ListGroup
, ListGroupItem = ReactBootstrap.ListGroupItem
, Panel = ReactBootstrap.Panel
, Glyphicon = ReactBootstrap.Glyphicon
, Button = ReactBootstrap.Button
var React = require('react');
var ReactCSSTransitionGroup = require('react-addons-css-transition-group');
var Post = require("../common/Post.js");
module.exports = ProfileBoard = React.createClass({
render: function() {
var thisComponent = this;
var profiles = this.props.data.map(function(username, index) {
return (
<MiniProfile username={username} key={"miniprofile:"+username} pollIntervalProfile={thisComponent.props.pollIntervalProfile}/>
);
});
if (this.props.loading) {
var spinner = (
<ListGroupItem><p className="text-center"><img src="img/bouncing_ball.gif"/></p></ListGroupItem>
);
} else {
var spinner = (<span/>);
}
return (
<ListGroup fill>
{this.props.header}
{spinner}
<ReactCSSTransitionGroup transitionName="item" transitionEnterTimeout={500} transitionLeaveTimeout={300}>
{profiles}
</ReactCSSTransitionGroup>
</ListGroup>
);
}
});