mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Make left panel more friendly to new users
https://github.com/vector-im/riot-web/issues/3609
This commit is contained in:
parent
36ec156d2e
commit
af305ea540
@ -83,6 +83,7 @@ var RoomSubList = React.createClass({
|
|||||||
incomingCall: React.PropTypes.object,
|
incomingCall: React.PropTypes.object,
|
||||||
onShowMoreRooms: React.PropTypes.func,
|
onShowMoreRooms: React.PropTypes.func,
|
||||||
searchFilter: React.PropTypes.string,
|
searchFilter: React.PropTypes.string,
|
||||||
|
emptyContent: React.PropTypes.node, // content shown if the list is empty
|
||||||
},
|
},
|
||||||
|
|
||||||
getInitialState: function() {
|
getInitialState: function() {
|
||||||
@ -521,16 +522,18 @@ var RoomSubList = React.createClass({
|
|||||||
|
|
||||||
render: function() {
|
render: function() {
|
||||||
var connectDropTarget = this.props.connectDropTarget;
|
var connectDropTarget = this.props.connectDropTarget;
|
||||||
var RoomDropTarget = sdk.getComponent('rooms.RoomDropTarget');
|
|
||||||
var TruncatedList = sdk.getComponent('elements.TruncatedList');
|
var TruncatedList = sdk.getComponent('elements.TruncatedList');
|
||||||
|
|
||||||
var label = this.props.collapsed ? null : this.props.label;
|
var label = this.props.collapsed ? null : this.props.label;
|
||||||
|
|
||||||
//console.log("render: " + JSON.stringify(this.state.sortedList));
|
//console.log("render: " + JSON.stringify(this.state.sortedList));
|
||||||
|
|
||||||
var target;
|
let content;
|
||||||
if (this.state.sortedList.length == 0 && this.props.editable) {
|
if (this.state.sortedList.length == 0) {
|
||||||
target = <RoomDropTarget label={ 'Drop here to ' + this.props.verb }/>;
|
//content = <RoomDropTarget label={ 'Drop here to ' + this.props.verb }/>;
|
||||||
|
content = this.props.emptyContent;
|
||||||
|
} else {
|
||||||
|
content = this.makeRoomTiles();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.state.sortedList.length > 0 || this.props.editable) {
|
if (this.state.sortedList.length > 0 || this.props.editable) {
|
||||||
@ -540,8 +543,7 @@ var RoomSubList = React.createClass({
|
|||||||
if (!this.state.hidden) {
|
if (!this.state.hidden) {
|
||||||
subList = <TruncatedList className={ classes } truncateAt={this.state.truncateAt}
|
subList = <TruncatedList className={ classes } truncateAt={this.state.truncateAt}
|
||||||
createOverflowElement={this._createOverflowTile} >
|
createOverflowElement={this._createOverflowTile} >
|
||||||
{ target }
|
{ content }
|
||||||
{ this.makeRoomTiles() }
|
|
||||||
</TruncatedList>;
|
</TruncatedList>;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2015, 2016 OpenMarket Ltd
|
Copyright 2015, 2016 OpenMarket Ltd
|
||||||
|
Copyright 2107 Vector Creations Ltd
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
@ -37,3 +38,24 @@ limitations under the License.
|
|||||||
.mx_RoomList_scrollbar .gm-scrollbar.-vertical {
|
.mx_RoomList_scrollbar .gm-scrollbar.-vertical {
|
||||||
z-index: 6;
|
z-index: 6;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mx_RoomList_greyedSubListLabel {
|
||||||
|
color: #a2a2a2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mx_RoomList_emptySubListTip {
|
||||||
|
font-size: 13px;
|
||||||
|
margin-left: 18px;
|
||||||
|
margin-right: 18px;
|
||||||
|
margin-top: 8px;
|
||||||
|
margin-bottom: 7px;
|
||||||
|
padding: 5px;
|
||||||
|
border: 1px solid $accent-color;
|
||||||
|
color: $primary-fg-color;
|
||||||
|
background-color: $droptarget-bg-color;
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mx_RoomList_butonPreview {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user