2015-06-23 18:41:25 +03:00
|
|
|
/*
|
2016-01-07 07:06:39 +03:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2018-08-21 17:56:56 +03:00
|
|
|
Copyright 2017, 2018 New Vector Ltd
|
2015-06-23 18:41:25 +03:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
2019-12-08 15:16:17 +03:00
|
|
|
import React, {createRef} from 'react';
|
2017-12-26 04:03:18 +03:00
|
|
|
import PropTypes from 'prop-types';
|
2019-08-06 18:03:44 +03:00
|
|
|
import { _t } from '../../../languageHandler';
|
2017-06-12 16:50:25 +03:00
|
|
|
import CallHandler from '../../../CallHandler';
|
|
|
|
import MatrixClientPeg from '../../../MatrixClientPeg';
|
|
|
|
import sdk from '../../../index';
|
|
|
|
import dis from '../../../dispatcher';
|
2019-01-17 12:29:37 +03:00
|
|
|
import RoomViewStore from '../../../stores/RoomViewStore';
|
2018-02-26 01:10:38 +03:00
|
|
|
import Stickerpicker from './Stickerpicker';
|
2019-10-01 05:39:58 +03:00
|
|
|
import { makeRoomPermalink } from '../../../utils/permalinks/Permalinks';
|
2019-04-01 18:42:41 +03:00
|
|
|
import ContentMessages from '../../../ContentMessages';
|
2019-02-01 15:40:42 +03:00
|
|
|
import E2EIcon from './E2EIcon';
|
2015-06-15 20:35:28 +03:00
|
|
|
|
2019-04-13 11:44:36 +03:00
|
|
|
function ComposerAvatar(props) {
|
2019-04-07 06:44:22 +03:00
|
|
|
const MemberStatusMessageAvatar = sdk.getComponent('avatars.MemberStatusMessageAvatar');
|
|
|
|
return <div className="mx_MessageComposer_avatar">
|
|
|
|
<MemberStatusMessageAvatar member={props.me} width={24} height={24} />
|
|
|
|
</div>;
|
|
|
|
}
|
|
|
|
|
2019-04-13 11:44:36 +03:00
|
|
|
ComposerAvatar.propTypes = {
|
2019-04-07 06:44:22 +03:00
|
|
|
me: PropTypes.object.isRequired,
|
2019-08-05 16:50:16 +03:00
|
|
|
};
|
2019-04-07 06:44:22 +03:00
|
|
|
|
2019-04-07 06:37:23 +03:00
|
|
|
function CallButton(props) {
|
|
|
|
const AccessibleButton = sdk.getComponent('elements.AccessibleButton');
|
|
|
|
const onVoiceCallClick = (ev) => {
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'place_call',
|
|
|
|
type: "voice",
|
|
|
|
room_id: props.roomId,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2019-08-05 16:50:16 +03:00
|
|
|
return (<AccessibleButton className="mx_MessageComposer_button mx_MessageComposer_voicecall"
|
|
|
|
onClick={onVoiceCallClick}
|
|
|
|
title={_t('Voice call')}
|
|
|
|
/>);
|
2019-04-07 06:37:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
CallButton.propTypes = {
|
2019-08-05 16:50:16 +03:00
|
|
|
roomId: PropTypes.string.isRequired,
|
|
|
|
};
|
2019-04-07 06:37:23 +03:00
|
|
|
|
|
|
|
function VideoCallButton(props) {
|
|
|
|
const AccessibleButton = sdk.getComponent('elements.AccessibleButton');
|
|
|
|
const onCallClick = (ev) => {
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'place_call',
|
|
|
|
type: ev.shiftKey ? "screensharing" : "video",
|
|
|
|
room_id: props.roomId,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
return <AccessibleButton className="mx_MessageComposer_button mx_MessageComposer_videocall"
|
|
|
|
onClick={onCallClick}
|
|
|
|
title={_t('Video call')}
|
|
|
|
/>;
|
|
|
|
}
|
|
|
|
|
|
|
|
VideoCallButton.propTypes = {
|
|
|
|
roomId: PropTypes.string.isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
function HangupButton(props) {
|
|
|
|
const AccessibleButton = sdk.getComponent('elements.AccessibleButton');
|
|
|
|
const onHangupClick = () => {
|
|
|
|
const call = CallHandler.getCallForRoom(props.roomId);
|
|
|
|
if (!call) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'hangup',
|
|
|
|
// hangup the call for this room, which may not be the room in props
|
|
|
|
// (e.g. conferences which will hangup the 1:1 room instead)
|
|
|
|
room_id: call.roomId,
|
|
|
|
});
|
|
|
|
};
|
2019-08-05 16:50:16 +03:00
|
|
|
return (<AccessibleButton className="mx_MessageComposer_button mx_MessageComposer_hangup"
|
|
|
|
onClick={onHangupClick}
|
|
|
|
title={_t('Hangup')}
|
|
|
|
/>);
|
2019-04-07 06:37:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
HangupButton.propTypes = {
|
|
|
|
roomId: PropTypes.string.isRequired,
|
2019-08-05 16:50:16 +03:00
|
|
|
};
|
2019-04-07 06:37:23 +03:00
|
|
|
|
2019-04-07 07:14:29 +03:00
|
|
|
class UploadButton extends React.Component {
|
|
|
|
static propTypes = {
|
|
|
|
roomId: PropTypes.string.isRequired,
|
|
|
|
}
|
2019-08-06 18:03:44 +03:00
|
|
|
|
2019-04-07 07:14:29 +03:00
|
|
|
constructor(props, context) {
|
|
|
|
super(props, context);
|
|
|
|
this.onUploadClick = this.onUploadClick.bind(this);
|
|
|
|
this.onUploadFileInputChange = this.onUploadFileInputChange.bind(this);
|
2019-12-08 15:16:17 +03:00
|
|
|
|
|
|
|
this._uploadInput = createRef();
|
2019-04-07 07:14:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
onUploadClick(ev) {
|
|
|
|
if (MatrixClientPeg.get().isGuest()) {
|
|
|
|
dis.dispatch({action: 'require_registration'});
|
|
|
|
return;
|
|
|
|
}
|
2019-12-08 15:16:17 +03:00
|
|
|
this._uploadInput.current.click();
|
2019-04-07 07:14:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
onUploadFileInputChange(ev) {
|
|
|
|
if (ev.target.files.length === 0) return;
|
|
|
|
|
|
|
|
// take a copy so we can safely reset the value of the form control
|
|
|
|
// (Note it is a FileList: we can't use slice or sesnible iteration).
|
|
|
|
const tfiles = [];
|
|
|
|
for (let i = 0; i < ev.target.files.length; ++i) {
|
|
|
|
tfiles.push(ev.target.files[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
ContentMessages.sharedInstance().sendContentListToRoom(
|
|
|
|
tfiles, this.props.roomId, MatrixClientPeg.get(),
|
|
|
|
);
|
|
|
|
|
|
|
|
// This is the onChange handler for a file form control, but we're
|
|
|
|
// not keeping any state, so reset the value of the form control
|
|
|
|
// to empty.
|
|
|
|
// NB. we need to set 'value': the 'files' property is immutable.
|
|
|
|
ev.target.value = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const uploadInputStyle = {display: 'none'};
|
|
|
|
const AccessibleButton = sdk.getComponent('elements.AccessibleButton');
|
|
|
|
return (
|
|
|
|
<AccessibleButton className="mx_MessageComposer_button mx_MessageComposer_upload"
|
|
|
|
onClick={this.onUploadClick}
|
|
|
|
title={_t('Upload file')}
|
|
|
|
>
|
2019-12-08 15:16:17 +03:00
|
|
|
<input
|
|
|
|
ref={this._uploadInput}
|
|
|
|
type="file"
|
2019-04-07 07:14:29 +03:00
|
|
|
style={uploadInputStyle}
|
|
|
|
multiple
|
|
|
|
onChange={this.onUploadFileInputChange}
|
|
|
|
/>
|
|
|
|
</AccessibleButton>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2019-04-07 06:37:23 +03:00
|
|
|
|
2016-06-20 11:22:55 +03:00
|
|
|
export default class MessageComposer extends React.Component {
|
|
|
|
constructor(props, context) {
|
|
|
|
super(props, context);
|
2016-09-05 15:08:53 +03:00
|
|
|
this.onInputStateChanged = this.onInputStateChanged.bind(this);
|
2016-09-15 21:25:53 +03:00
|
|
|
this.onEvent = this.onEvent.bind(this);
|
2018-08-21 17:56:56 +03:00
|
|
|
this._onRoomStateEvents = this._onRoomStateEvents.bind(this);
|
2017-12-18 22:49:38 +03:00
|
|
|
this._onRoomViewStoreUpdate = this._onRoomViewStoreUpdate.bind(this);
|
2018-08-21 17:56:56 +03:00
|
|
|
this._onTombstoneClick = this._onTombstoneClick.bind(this);
|
2019-04-07 06:57:45 +03:00
|
|
|
this.renderPlaceholderText = this.renderPlaceholderText.bind(this);
|
2018-01-16 21:14:32 +03:00
|
|
|
|
2016-06-20 11:22:55 +03:00
|
|
|
this.state = {
|
2019-01-17 12:29:37 +03:00
|
|
|
isQuoting: Boolean(RoomViewStore.getQuotingEvent()),
|
2018-08-21 17:56:56 +03:00
|
|
|
tombstone: this._getRoomTombstone(),
|
2019-02-27 03:23:37 +03:00
|
|
|
canSendMessages: this.props.room.maySendMessage(),
|
2016-06-01 14:24:21 +03:00
|
|
|
};
|
2016-06-20 11:22:55 +03:00
|
|
|
}
|
2016-06-01 14:24:21 +03:00
|
|
|
|
2016-09-15 21:25:53 +03:00
|
|
|
componentDidMount() {
|
|
|
|
// N.B. using 'event' rather than 'RoomEvents' otherwise the crypto handler
|
|
|
|
// for 'event' fires *after* 'RoomEvent', and our room won't have yet been
|
|
|
|
// marked as encrypted.
|
|
|
|
// XXX: fragile as all hell - fixme somehow, perhaps with a dedicated Room.encryption event or something.
|
|
|
|
MatrixClientPeg.get().on("event", this.onEvent);
|
2018-08-21 17:56:56 +03:00
|
|
|
MatrixClientPeg.get().on("RoomState.events", this._onRoomStateEvents);
|
2019-01-17 12:29:37 +03:00
|
|
|
this._roomStoreToken = RoomViewStore.addListener(this._onRoomViewStoreUpdate);
|
2018-08-23 01:02:20 +03:00
|
|
|
this._waitForOwnMember();
|
|
|
|
}
|
|
|
|
|
|
|
|
_waitForOwnMember() {
|
|
|
|
// if we have the member already, do that
|
|
|
|
const me = this.props.room.getMember(MatrixClientPeg.get().getUserId());
|
|
|
|
if (me) {
|
|
|
|
this.setState({me});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Otherwise, wait for member loading to finish and then update the member for the avatar.
|
|
|
|
// The members should already be loading, and loadMembersIfNeeded
|
|
|
|
// will return the promise for the existing operation
|
|
|
|
this.props.room.loadMembersIfNeeded().then(() => {
|
|
|
|
const me = this.props.room.getMember(MatrixClientPeg.get().getUserId());
|
|
|
|
this.setState({me});
|
|
|
|
});
|
2016-09-15 21:25:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
2016-09-29 18:57:10 +03:00
|
|
|
if (MatrixClientPeg.get()) {
|
|
|
|
MatrixClientPeg.get().removeListener("event", this.onEvent);
|
2018-08-21 17:56:56 +03:00
|
|
|
MatrixClientPeg.get().removeListener("RoomState.events", this._onRoomStateEvents);
|
2016-09-29 18:57:10 +03:00
|
|
|
}
|
2017-12-18 22:49:38 +03:00
|
|
|
if (this._roomStoreToken) {
|
|
|
|
this._roomStoreToken.remove();
|
|
|
|
}
|
2016-09-15 21:25:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
onEvent(event) {
|
|
|
|
if (event.getType() !== 'm.room.encryption') return;
|
|
|
|
if (event.getRoomId() !== this.props.room.roomId) return;
|
2019-08-06 18:03:44 +03:00
|
|
|
// TODO: put (encryption state??) in state
|
2016-09-15 21:25:53 +03:00
|
|
|
this.forceUpdate();
|
|
|
|
}
|
|
|
|
|
2018-08-21 17:56:56 +03:00
|
|
|
_onRoomStateEvents(ev, state) {
|
|
|
|
if (ev.getRoomId() !== this.props.room.roomId) return;
|
|
|
|
|
|
|
|
if (ev.getType() === 'm.room.tombstone') {
|
|
|
|
this.setState({tombstone: this._getRoomTombstone()});
|
|
|
|
}
|
2019-02-27 03:23:37 +03:00
|
|
|
if (ev.getType() === 'm.room.power_levels') {
|
|
|
|
this.setState({canSendMessages: this.props.room.maySendMessage()});
|
|
|
|
}
|
2018-08-21 17:56:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
_getRoomTombstone() {
|
|
|
|
return this.props.room.currentState.getStateEvents('m.room.tombstone', '');
|
|
|
|
}
|
|
|
|
|
2017-12-18 22:49:38 +03:00
|
|
|
_onRoomViewStoreUpdate() {
|
2019-01-17 12:29:37 +03:00
|
|
|
const isQuoting = Boolean(RoomViewStore.getQuotingEvent());
|
2017-12-18 22:49:38 +03:00
|
|
|
if (this.state.isQuoting === isQuoting) return;
|
|
|
|
this.setState({ isQuoting });
|
|
|
|
}
|
|
|
|
|
2016-09-05 15:08:53 +03:00
|
|
|
onInputStateChanged(inputState) {
|
2019-02-22 18:12:28 +03:00
|
|
|
// Merge the new input state with old to support partial updates
|
|
|
|
inputState = Object.assign({}, this.state.inputState, inputState);
|
2016-09-05 15:08:53 +03:00
|
|
|
this.setState({inputState});
|
|
|
|
}
|
|
|
|
|
2018-08-21 17:56:56 +03:00
|
|
|
_onTombstoneClick(ev) {
|
|
|
|
ev.preventDefault();
|
|
|
|
|
|
|
|
const replacementRoomId = this.state.tombstone.getContent()['replacement_room'];
|
2019-01-11 01:29:12 +03:00
|
|
|
const replacementRoom = MatrixClientPeg.get().getRoom(replacementRoomId);
|
|
|
|
let createEventId = null;
|
|
|
|
if (replacementRoom) {
|
|
|
|
const createEvent = replacementRoom.currentState.getStateEvents('m.room.create', '');
|
|
|
|
if (createEvent && createEvent.getId()) createEventId = createEvent.getId();
|
|
|
|
}
|
2019-07-11 17:39:41 +03:00
|
|
|
|
|
|
|
const viaServers = [this.state.tombstone.getSender().split(':').splice(1).join(':')];
|
2019-01-17 12:29:37 +03:00
|
|
|
dis.dispatch({
|
2018-08-21 17:56:56 +03:00
|
|
|
action: 'view_room',
|
|
|
|
highlighted: true,
|
2019-01-11 01:29:12 +03:00
|
|
|
event_id: createEventId,
|
2018-08-21 17:56:56 +03:00
|
|
|
room_id: replacementRoomId,
|
2019-07-11 17:39:41 +03:00
|
|
|
auto_join: true,
|
2019-01-11 00:33:46 +03:00
|
|
|
|
2019-06-28 21:34:46 +03:00
|
|
|
// Try to join via the server that sent the event. This converts @something:example.org
|
|
|
|
// into a server domain by splitting on colons and ignoring the first entry ("@something").
|
2019-07-11 17:39:41 +03:00
|
|
|
via_servers: viaServers,
|
|
|
|
opts: {
|
|
|
|
// These are passed down to the js-sdk's /join call
|
|
|
|
viaServers: viaServers,
|
|
|
|
},
|
2018-08-21 17:56:56 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-04-07 06:57:45 +03:00
|
|
|
renderPlaceholderText() {
|
|
|
|
const roomIsEncrypted = MatrixClientPeg.get().isRoomEncrypted(this.props.room.roomId);
|
|
|
|
if (this.state.isQuoting) {
|
|
|
|
if (roomIsEncrypted) {
|
|
|
|
return _t('Send an encrypted reply…');
|
|
|
|
} else {
|
|
|
|
return _t('Send a reply (unencrypted)…');
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (roomIsEncrypted) {
|
|
|
|
return _t('Send an encrypted message…');
|
|
|
|
} else {
|
|
|
|
return _t('Send a message (unencrypted)…');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-20 11:22:55 +03:00
|
|
|
render() {
|
2019-04-07 06:44:22 +03:00
|
|
|
const controls = [
|
2019-04-13 11:44:36 +03:00
|
|
|
this.state.me ? <ComposerAvatar key="controls_avatar" me={this.state.me} /> : null,
|
2019-08-05 16:50:16 +03:00
|
|
|
this.props.e2eStatus ?
|
|
|
|
<E2EIcon key="e2eIcon" status={this.props.e2eStatus} className="mx_MessageComposer_e2eIcon" /> :
|
|
|
|
null,
|
2019-04-07 06:44:22 +03:00
|
|
|
];
|
2016-09-12 03:37:51 +03:00
|
|
|
|
2019-02-27 03:23:37 +03:00
|
|
|
if (!this.state.tombstone && this.state.canSendMessages) {
|
2016-03-24 16:57:21 +03:00
|
|
|
// This also currently includes the call buttons. Really we should
|
|
|
|
// check separately for whether we can call, but this is slightly
|
|
|
|
// complex because of conference calls.
|
|
|
|
|
2019-08-06 18:03:44 +03:00
|
|
|
const SendMessageComposer = sdk.getComponent("rooms.SendMessageComposer");
|
2019-04-07 07:58:05 +03:00
|
|
|
const callInProgress = this.props.callState && this.props.callState !== 'ended';
|
2018-04-03 00:24:46 +03:00
|
|
|
|
2016-03-24 16:57:21 +03:00
|
|
|
controls.push(
|
2019-08-06 18:03:44 +03:00
|
|
|
<SendMessageComposer
|
2017-05-17 13:31:01 +03:00
|
|
|
ref={(c) => this.messageComposerInput = c}
|
2016-06-21 16:03:39 +03:00
|
|
|
key="controls_input"
|
|
|
|
room={this.props.room}
|
2019-04-07 06:57:45 +03:00
|
|
|
placeholder={this.renderPlaceholderText()}
|
2019-02-25 18:08:07 +03:00
|
|
|
permalinkCreator={this.props.permalinkCreator} />,
|
2019-04-07 07:19:18 +03:00
|
|
|
<Stickerpicker key='stickerpicker_controls_button' room={this.props.room} />,
|
2019-04-07 07:14:29 +03:00
|
|
|
<UploadButton key="controls_upload" roomId={this.props.room.roomId} />,
|
2019-04-07 06:48:13 +03:00
|
|
|
callInProgress ? <HangupButton key="controls_hangup" roomId={this.props.room.roomId} /> : null,
|
|
|
|
callInProgress ? null : <CallButton key="controls_call" roomId={this.props.room.roomId} />,
|
|
|
|
callInProgress ? null : <VideoCallButton key="controls_videocall" roomId={this.props.room.roomId} />,
|
2016-03-24 16:57:21 +03:00
|
|
|
);
|
2018-08-21 17:56:56 +03:00
|
|
|
} else if (this.state.tombstone) {
|
|
|
|
const replacementRoomId = this.state.tombstone.getContent()['replacement_room'];
|
|
|
|
|
2019-04-03 23:12:36 +03:00
|
|
|
const continuesLink = replacementRoomId ? (
|
|
|
|
<a href={makeRoomPermalink(replacementRoomId)}
|
|
|
|
className="mx_MessageComposer_roomReplaced_link"
|
|
|
|
onClick={this._onTombstoneClick}
|
|
|
|
>
|
|
|
|
{_t("The conversation continues here.")}
|
|
|
|
</a>
|
|
|
|
) : '';
|
|
|
|
|
2018-08-21 17:56:56 +03:00
|
|
|
controls.push(<div className="mx_MessageComposer_replaced_wrapper">
|
|
|
|
<div className="mx_MessageComposer_replaced_valign">
|
2019-01-11 04:37:28 +03:00
|
|
|
<img className="mx_MessageComposer_roomReplaced_icon" src={require("../../../../res/img/room_replaced.svg")} />
|
2018-08-21 17:56:56 +03:00
|
|
|
<span className="mx_MessageComposer_roomReplaced_header">
|
|
|
|
{_t("This room has been replaced and is no longer active.")}
|
|
|
|
</span><br />
|
2019-04-03 23:12:36 +03:00
|
|
|
{ continuesLink }
|
2018-08-21 17:56:56 +03:00
|
|
|
</div>
|
|
|
|
</div>);
|
2016-03-24 16:57:21 +03:00
|
|
|
} else {
|
|
|
|
controls.push(
|
2016-04-13 04:02:55 +03:00
|
|
|
<div key="controls_error" className="mx_MessageComposer_noperm_error">
|
2017-05-23 17:16:31 +03:00
|
|
|
{ _t('You do not have permission to post to this room') }
|
2017-06-12 16:52:41 +03:00
|
|
|
</div>,
|
2016-03-24 16:57:21 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-05-21 00:39:40 +03:00
|
|
|
return (
|
|
|
|
<div className="mx_MessageComposer">
|
2019-11-20 21:00:39 +03:00
|
|
|
<div className="mx_MessageComposer_wrapper">
|
2018-05-21 00:39:40 +03:00
|
|
|
<div className="mx_MessageComposer_row">
|
|
|
|
{ controls }
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-11-26 20:31:10 +03:00
|
|
|
</div>
|
|
|
|
);
|
2015-09-18 12:44:57 +03:00
|
|
|
}
|
2017-01-20 17:22:27 +03:00
|
|
|
}
|
2016-06-20 11:22:55 +03:00
|
|
|
|
|
|
|
MessageComposer.propTypes = {
|
|
|
|
// js-sdk Room object
|
2017-12-26 04:03:18 +03:00
|
|
|
room: PropTypes.object.isRequired,
|
2016-06-20 11:22:55 +03:00
|
|
|
|
|
|
|
// string representing the current voip call state
|
2017-12-26 04:03:18 +03:00
|
|
|
callState: PropTypes.string,
|
2016-06-20 11:22:55 +03:00
|
|
|
|
2017-05-17 13:31:01 +03:00
|
|
|
// string representing the current room app drawer state
|
2019-08-05 16:50:16 +03:00
|
|
|
showApps: PropTypes.bool,
|
2016-06-20 11:22:55 +03:00
|
|
|
};
|