/* Copyright 2015, 2016 OpenMarket Ltd Copyright 2017 Vector Creations Ltd 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. */ 'use strict'; var React = require('react'); var sdk = require('../../../index'); var MatrixClientPeg = require('../../../MatrixClientPeg'); module.exports = React.createClass({ displayName: 'RoomPreviewBar', propTypes: { onJoinClick: React.PropTypes.func, onRejectClick: React.PropTypes.func, onForgetClick: React.PropTypes.func, // if inviterName is specified, the preview bar will shown an invite to the room. // You should also specify onRejectClick if specifiying inviterName inviterName: React.PropTypes.string, // If invited by 3rd party invite, the email address the invite was sent to invitedEmail: React.PropTypes.string, // A standard client/server API error object. If supplied, indicates that the // caller was unable to fetch details about the room for the given reason. error: React.PropTypes.object, canPreview: React.PropTypes.bool, spinner: React.PropTypes.bool, room: React.PropTypes.object, // The alias that was used to access this room, if appropriate // If given, this will be how the room is referred to (eg. // in error messages). roomAlias: React.PropTypes.object, }, getDefaultProps: function() { return { onJoinClick: function() {}, canPreview: true, }; }, getInitialState: function() { return { busy: false }; }, componentWillMount: function() { // If this is an invite and we've been told what email // address was invited, fetch the user's list of 3pids // so we can check them against the one that was invited if (this.props.inviterName && this.props.invitedEmail) { this.setState({busy: true}); MatrixClientPeg.get().lookupThreePid( 'email', this.props.invitedEmail ).finally(() => { this.setState({busy: false}); }).done((result) => { this.setState({invitedEmailMxid: result.mxid}); }, (err) => { this.setState({threePidFetchError: err}); }); } }, _roomNameElement: function(fallback) { fallback = fallback || 'a room'; const name = this.props.room ? this.props.room.name : (this.props.room_alias || ""); return name ? { name } : fallback; }, render: function() { var joinBlock, previewBlock; if (this.props.spinner || this.state.busy) { var Spinner = sdk.getComponent("elements.Spinner"); return (