Merge pull request #541 from vector-im/kegan/archived-rooms
Add more props to RoomSubList
This commit is contained in:
commit
59f419b310
3 changed files with 37 additions and 14 deletions
|
@ -61,20 +61,34 @@ var RoomSubList = React.createClass({
|
||||||
tagName: React.PropTypes.string,
|
tagName: React.PropTypes.string,
|
||||||
editable: React.PropTypes.bool,
|
editable: React.PropTypes.bool,
|
||||||
order: React.PropTypes.string.isRequired,
|
order: React.PropTypes.string.isRequired,
|
||||||
bottommost: React.PropTypes.bool,
|
|
||||||
selectedRoom: React.PropTypes.string.isRequired,
|
selectedRoom: React.PropTypes.string.isRequired,
|
||||||
activityMap: React.PropTypes.object.isRequired,
|
activityMap: React.PropTypes.object.isRequired,
|
||||||
|
startAsHidden: React.PropTypes.bool,
|
||||||
|
showSpinner: React.PropTypes.bool, // true to show a spinner if 0 elements when expanded
|
||||||
|
|
||||||
|
// TODO: Fix the name of this. This is too easily confused with the
|
||||||
|
// "hidden" state which is the expanded (or not) view of the list of rooms.
|
||||||
|
// What this prop *really* does is control whether the room name is displayed
|
||||||
|
// so it should be named as such.
|
||||||
collapsed: React.PropTypes.bool.isRequired,
|
collapsed: React.PropTypes.bool.isRequired,
|
||||||
incomingCall: React.PropTypes.object,
|
onHeaderClick: React.PropTypes.func,
|
||||||
|
alwaysShowHeader: React.PropTypes.bool,
|
||||||
|
incomingCall: React.PropTypes.object
|
||||||
},
|
},
|
||||||
|
|
||||||
getInitialState: function() {
|
getInitialState: function() {
|
||||||
return {
|
return {
|
||||||
hidden: false,
|
hidden: this.props.startAsHidden || false,
|
||||||
sortedList: [],
|
sortedList: [],
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
|
getDefaultProps: function() {
|
||||||
|
return {
|
||||||
|
onHeaderClick: function() {} // NOP
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
componentWillMount: function() {
|
componentWillMount: function() {
|
||||||
this.sortList(this.props.list, this.props.order);
|
this.sortList(this.props.list, this.props.order);
|
||||||
},
|
},
|
||||||
|
@ -86,7 +100,9 @@ var RoomSubList = React.createClass({
|
||||||
},
|
},
|
||||||
|
|
||||||
onClick: function(ev) {
|
onClick: function(ev) {
|
||||||
this.setState({ hidden : !this.state.hidden });
|
var isHidden = !this.state.hidden;
|
||||||
|
this.setState({ hidden : isHidden });
|
||||||
|
this.props.onHeaderClick(isHidden);
|
||||||
},
|
},
|
||||||
|
|
||||||
tsOfNewestEvent: function(room) {
|
tsOfNewestEvent: function(room) {
|
||||||
|
@ -247,6 +263,17 @@ var RoomSubList = React.createClass({
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
_getHeaderJsx: function() {
|
||||||
|
return (
|
||||||
|
<h2 onClick={ this.onClick } className="mx_RoomSubList_label">
|
||||||
|
{ this.props.collapsed ? '' : this.props.label }
|
||||||
|
<img className="mx_RoomSubList_chevron"
|
||||||
|
src={ this.state.hidden ? "img/list-open.svg" : "img/list-close.svg" }
|
||||||
|
width="10" height="10" />
|
||||||
|
</h2>
|
||||||
|
);
|
||||||
|
},
|
||||||
|
|
||||||
render: function() {
|
render: function() {
|
||||||
var connectDropTarget = this.props.connectDropTarget;
|
var connectDropTarget = this.props.connectDropTarget;
|
||||||
var RoomDropTarget = sdk.getComponent('rooms.RoomDropTarget');
|
var RoomDropTarget = sdk.getComponent('rooms.RoomDropTarget');
|
||||||
|
@ -262,8 +289,7 @@ var RoomSubList = React.createClass({
|
||||||
|
|
||||||
if (this.state.sortedList.length > 0 || this.props.editable) {
|
if (this.state.sortedList.length > 0 || this.props.editable) {
|
||||||
var subList;
|
var subList;
|
||||||
var classes = "mx_RoomSubList" +
|
var classes = "mx_RoomSubList";
|
||||||
(this.props.bottommost ? " mx_RoomSubList_bottommost" : "");
|
|
||||||
|
|
||||||
if (!this.state.hidden) {
|
if (!this.state.hidden) {
|
||||||
subList = <div className={ classes }>
|
subList = <div className={ classes }>
|
||||||
|
@ -278,16 +304,17 @@ var RoomSubList = React.createClass({
|
||||||
|
|
||||||
return connectDropTarget(
|
return connectDropTarget(
|
||||||
<div>
|
<div>
|
||||||
<h2 onClick={ this.onClick } className="mx_RoomSubList_label">{ this.props.collapsed ? '' : this.props.label }
|
{ this._getHeaderJsx() }
|
||||||
<img className="mx_RoomSubList_chevron" src={ this.state.hidden ? "img/list-open.svg" : "img/list-close.svg" } width="10" height="10"/>
|
|
||||||
</h2>
|
|
||||||
{ subList }
|
{ subList }
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
var Loader = sdk.getComponent("elements.Spinner");
|
||||||
return (
|
return (
|
||||||
<div className="mx_RoomSubList">
|
<div className="mx_RoomSubList">
|
||||||
|
{ this.props.alwaysShowHeader ? this._getHeaderJsx() : undefined }
|
||||||
|
{ (this.props.showSpinner && !this.state.hidden) ? <Loader /> : undefined }
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,6 +17,7 @@ limitations under the License.
|
||||||
.mx_RoomList {
|
.mx_RoomList {
|
||||||
padding-top: 24px;
|
padding-top: 24px;
|
||||||
padding-bottom: 12px;
|
padding-bottom: 12px;
|
||||||
|
min-height: 400px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_RoomList_expandButton {
|
.mx_RoomList_expandButton {
|
||||||
|
|
|
@ -20,11 +20,6 @@ limitations under the License.
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_RoomSubList_bottommost {
|
|
||||||
/* XXX: this should really be 100% of the RoomList height, but can't seem to get at it */
|
|
||||||
min-height: 400px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mx_RoomSubList_label {
|
.mx_RoomSubList_label {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
color: #3d3b39;
|
color: #3d3b39;
|
||||||
|
|
Loading…
Reference in a new issue