Add currentRoomId / Alias to getInitialState

with docs
pull/21833/head
David Baker 2016-06-14 14:10:49 +01:00
parent b8eee08d69
commit 0ef5cc891e
1 changed files with 7 additions and 0 deletions

View File

@ -64,6 +64,13 @@ module.exports = React.createClass({
getInitialState: function() {
var s = {
// If we are viewing a room by alias, this contains the alias
currentRoomAlias: null,
// The ID of the room we're viewing. This is either populated directly
// in the case where we view a room by ID or by RoomView when it resolves
// what ID an alias points at.
currentRoomId: null,
logged_in: !!(MatrixClientPeg.get() && MatrixClientPeg.get().credentials),
collapse_lhs: false,
collapse_rhs: false,