/* Copyright 2015, 2016 OpenMarket 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, // 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}); }); } }, render: function() { var joinBlock, previewBlock; if (this.props.spinner || this.state.busy) { var Spinner = sdk.getComponent("elements.Spinner"); return (
); } if (this.props.inviterName) { var emailMatchBlock; if (this.props.invitedEmail) { if (this.state.threePidFetchError) { emailMatchBlock =
Vector was unable to ascertain that the address this invite was sent to matches one associated with your account.
} else if (this.state.invitedEmailMxid != MatrixClientPeg.get().credentials.userId) { emailMatchBlock =
/!\\
This invitation was sent to {this.props.invitedEmail}, which is not associated with this account.
You may wish to login with a different account, or add this email to this account.
} } joinBlock = (
You have been invited to join this room by { this.props.inviterName }
Would you like to accept or decline this invitation?
{emailMatchBlock}
); } else if (this.props.error) { var name = this.props.roomAlias || "This room"; var error; if (this.props.error.errcode == 'M_NOT_FOUND') { error = name + " does not exist"; } else { error = name + " is not accessible at this time"; } joinBlock = (
{ error }
); } else { var name = this.props.room ? this.props.room.name : (this.props.room_alias || ""); name = name ? { name } : "a room"; joinBlock = (
You are trying to access { name }.
Would you like to join in order to participate in the discussion?
); } if (this.props.canPreview) { previewBlock = (
This is a preview of this room. Room interactions have been disabled.
); } return (
{ joinBlock } { previewBlock }
); } });