Fix #38 - Unread indicator when new content appears above the fold
This commit is contained in:
@ -34,7 +34,8 @@ const Column = React.createClass({
|
||||
propTypes: {
|
||||
heading: React.PropTypes.string,
|
||||
icon: React.PropTypes.string,
|
||||
children: React.PropTypes.node
|
||||
children: React.PropTypes.node,
|
||||
active: React.PropTypes.bool
|
||||
},
|
||||
|
||||
mixins: [PureRenderMixin],
|
||||
@ -51,12 +52,12 @@ const Column = React.createClass({
|
||||
},
|
||||
|
||||
render () {
|
||||
const { heading, icon, children } = this.props;
|
||||
const { heading, icon, children, active } = this.props;
|
||||
|
||||
let header = '';
|
||||
|
||||
if (heading) {
|
||||
header = <ColumnHeader icon={icon} type={heading} onClick={this.handleHeaderClick} />;
|
||||
header = <ColumnHeader icon={icon} active={active} type={heading} onClick={this.handleHeaderClick} />;
|
||||
}
|
||||
|
||||
return (
|
||||
|
@ -5,6 +5,7 @@ const ColumnHeader = React.createClass({
|
||||
propTypes: {
|
||||
icon: React.PropTypes.string,
|
||||
type: React.PropTypes.string,
|
||||
active: React.PropTypes.bool,
|
||||
onClick: React.PropTypes.func
|
||||
},
|
||||
|
||||
@ -15,6 +16,8 @@ const ColumnHeader = React.createClass({
|
||||
},
|
||||
|
||||
render () {
|
||||
const { type, active } = this.props;
|
||||
|
||||
let icon = '';
|
||||
|
||||
if (this.props.icon) {
|
||||
@ -22,9 +25,9 @@ const ColumnHeader = React.createClass({
|
||||
}
|
||||
|
||||
return (
|
||||
<div className='column-header' onClick={this.handleClick}>
|
||||
<div className={`column-header ${active ? 'active' : ''}`} onClick={this.handleClick}>
|
||||
{icon}
|
||||
{this.props.type}
|
||||
{type}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user