mirror of https://github.com/vector-im/riot-web
Remove wrapping div around RoomList to fix regression with scrollbars
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>pull/21833/head
parent
bc639312ec
commit
9c63be7dc4
|
@ -116,6 +116,20 @@ const LeftPanel = createReactClass({
|
||||||
this.focusedElement = null;
|
this.focusedElement = null;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
_onFilterKeyDown: function(ev) {
|
||||||
|
if (!this.focusedElement) return;
|
||||||
|
|
||||||
|
switch (ev.key) {
|
||||||
|
case Key.ENTER: {
|
||||||
|
const firstRoom = ev.target.closest(".mx_LeftPanel").querySelector(".mx_RoomTile");
|
||||||
|
if (firstRoom) {
|
||||||
|
firstRoom.click();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
_onKeyDown: function(ev) {
|
_onKeyDown: function(ev) {
|
||||||
if (!this.focusedElement) return;
|
if (!this.focusedElement) return;
|
||||||
|
|
||||||
|
@ -255,6 +269,7 @@ const LeftPanel = createReactClass({
|
||||||
enableRoomSearchFocus={true}
|
enableRoomSearchFocus={true}
|
||||||
blurredPlaceholder={ _t('Filter') }
|
blurredPlaceholder={ _t('Filter') }
|
||||||
placeholder={ _t('Filter rooms…') }
|
placeholder={ _t('Filter rooms…') }
|
||||||
|
onKeyDown={this._onFilterKeyDown}
|
||||||
onSearch={ this.onSearch }
|
onSearch={ this.onSearch }
|
||||||
onCleared={ this.onSearchCleared }
|
onCleared={ this.onSearchCleared }
|
||||||
onFocus={this._onSearchFocus}
|
onFocus={this._onSearchFocus}
|
||||||
|
@ -273,18 +288,19 @@ const LeftPanel = createReactClass({
|
||||||
<TopLeftMenuButton collapsed={this.props.collapsed} />
|
<TopLeftMenuButton collapsed={this.props.collapsed} />
|
||||||
{ breadcrumbs }
|
{ breadcrumbs }
|
||||||
<CallPreview ConferenceHandler={VectorConferenceHandler} />
|
<CallPreview ConferenceHandler={VectorConferenceHandler} />
|
||||||
<div className="mx_LeftPanel_Rooms" onKeyDown={this._onKeyDown} onFocus={this._onFocus} onBlur={this._onBlur}>
|
<div className="mx_LeftPanel_exploreAndFilterRow" onKeyDown={this._onKeyDown} onFocus={this._onFocus} onBlur={this._onBlur}>
|
||||||
<div className="mx_LeftPanel_exploreAndFilterRow">
|
|
||||||
{ exploreButton }
|
{ exploreButton }
|
||||||
{ searchBox }
|
{ searchBox }
|
||||||
</div>
|
</div>
|
||||||
<RoomList
|
<RoomList
|
||||||
|
onKeyDown={this._onKeyDown}
|
||||||
|
onFocus={this._onFocus}
|
||||||
|
onBlur={this._onBlur}
|
||||||
ref={this.collectRoomList}
|
ref={this.collectRoomList}
|
||||||
resizeNotifier={this.props.resizeNotifier}
|
resizeNotifier={this.props.resizeNotifier}
|
||||||
collapsed={this.props.collapsed}
|
collapsed={this.props.collapsed}
|
||||||
searchFilter={this.state.searchFilter}
|
searchFilter={this.state.searchFilter}
|
||||||
ConferenceHandler={VectorConferenceHandler} />
|
ConferenceHandler={VectorConferenceHandler} />
|
||||||
</div>
|
|
||||||
</aside>
|
</aside>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
|
@ -30,6 +30,7 @@ module.exports = createReactClass({
|
||||||
propTypes: {
|
propTypes: {
|
||||||
onSearch: PropTypes.func,
|
onSearch: PropTypes.func,
|
||||||
onCleared: PropTypes.func,
|
onCleared: PropTypes.func,
|
||||||
|
onKeyDown: PropTypes.func,
|
||||||
className: PropTypes.string,
|
className: PropTypes.string,
|
||||||
placeholder: PropTypes.string.isRequired,
|
placeholder: PropTypes.string.isRequired,
|
||||||
|
|
||||||
|
@ -93,6 +94,7 @@ module.exports = createReactClass({
|
||||||
this._clearSearch("keyboard");
|
this._clearSearch("keyboard");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
if (this.props.onKeyDown) this.props.onKeyDown(ev);
|
||||||
},
|
},
|
||||||
|
|
||||||
_onFocus: function(ev) {
|
_onFocus: function(ev) {
|
||||||
|
|
|
@ -770,9 +770,17 @@ module.exports = createReactClass({
|
||||||
|
|
||||||
const subListComponents = this._mapSubListProps(subLists);
|
const subListComponents = this._mapSubListProps(subLists);
|
||||||
|
|
||||||
|
const {resizeNotifier, collapsed, searchFilter, ConferenceHandler, ...props} = this.props; // eslint-disable-line
|
||||||
return (
|
return (
|
||||||
<div ref={this._collectResizeContainer} className="mx_RoomList" role="tree" aria-label={_t("Rooms")}
|
<div
|
||||||
onMouseMove={this.onMouseMove} onMouseLeave={this.onMouseLeave}>
|
{...props}
|
||||||
|
ref={this._collectResizeContainer}
|
||||||
|
className="mx_RoomList"
|
||||||
|
role="tree"
|
||||||
|
aria-label={_t("Rooms")}
|
||||||
|
onMouseMove={this.onMouseMove}
|
||||||
|
onMouseLeave={this.onMouseLeave}
|
||||||
|
>
|
||||||
{ subListComponents }
|
{ subListComponents }
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue