mirror of
https://github.com/stolksdorf/homebrewery.git
synced 2025-12-12 23:45:57 +00:00
77 lines
1.7 KiB
JavaScript
77 lines
1.7 KiB
JavaScript
const React = require('react');
|
|
const createClass = require('create-react-class');
|
|
const _ = require('lodash');
|
|
const cx = require('classnames');
|
|
|
|
const Nav = require('naturalcrit/nav/nav.jsx');
|
|
const Navbar = require('../../navbar/navbar.jsx');
|
|
|
|
const RecentNavItem = require('../../navbar/recent.navitem.jsx');
|
|
const Account = require('../../navbar/account.navitem.jsx');
|
|
const BrewItem = require('./brewItem/brewItem.jsx');
|
|
|
|
// const brew = {
|
|
// title : 'SUPER Long title woah now',
|
|
// authors : []
|
|
// };
|
|
|
|
//const BREWS = _.times(25, ()=>{ return brew;});
|
|
|
|
|
|
const UserPage = createClass({
|
|
getDefaultProps : function() {
|
|
return {
|
|
username : '',
|
|
brews : []
|
|
};
|
|
},
|
|
|
|
renderBrews : function(brews){
|
|
if(!brews || !brews.length) return <div className='noBrews'>No Brews.</div>;
|
|
|
|
const sortedBrews = _.sortBy(brews, (brew)=>{ return brew.title; });
|
|
|
|
return _.map(sortedBrews, (brew, idx)=>{
|
|
return <BrewItem brew={brew} key={idx}/>;
|
|
});
|
|
},
|
|
|
|
getSortedBrews : function(){
|
|
return _.groupBy(this.props.brews, (brew)=>{
|
|
return (brew.published ? 'published' : 'private');
|
|
});
|
|
},
|
|
|
|
renderPrivateBrews : function(privateBrews){
|
|
if(!privateBrews || !privateBrews.length) return;
|
|
|
|
return [
|
|
<h1>{this.props.username}'s unpublished brews</h1>,
|
|
this.renderBrews(privateBrews)
|
|
];
|
|
},
|
|
|
|
render : function(){
|
|
const brews = this.getSortedBrews();
|
|
|
|
return <div className='userPage page'>
|
|
<Navbar>
|
|
<Nav.section>
|
|
<RecentNavItem.both />
|
|
<Account />
|
|
</Nav.section>
|
|
</Navbar>
|
|
|
|
<div className='content'>
|
|
<div className='phb'>
|
|
<h1>{this.props.username}'s brews</h1>
|
|
{this.renderBrews(brews.published)}
|
|
{this.renderPrivateBrews(brews.private)}
|
|
</div>
|
|
</div>
|
|
</div>;
|
|
}
|
|
});
|
|
|
|
module.exports = UserPage;
|