/* Copyright 2017 Vector Creations Ltd Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> 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. */ import React from 'react'; import PropTypes from 'prop-types'; import createReactClass from 'create-react-class'; import MatrixClientPeg from '../../../MatrixClientPeg'; import { _t } from '../../../languageHandler'; import sdk from '../../../index'; import Modal from '../../../Modal'; import AccessibleButton from '../elements/AccessibleButton'; module.exports = createReactClass({ displayName: 'RoomAvatarEvent', propTypes: { /* the MatrixEvent to show */ mxEvent: PropTypes.object.isRequired, }, onAvatarClick: function() { const cli = MatrixClientPeg.get(); const ev = this.props.mxEvent; const httpUrl = cli.mxcUrlToHttp(ev.getContent().url); const room = cli.getRoom(this.props.mxEvent.getRoomId()); const text = _t('%(senderDisplayName)s changed the avatar for %(roomName)s', { senderDisplayName: ev.sender && ev.sender.name ? ev.sender.name : ev.getSender(), roomName: room ? room.name : '', }); const ImageView = sdk.getComponent("elements.ImageView"); const params = { src: httpUrl, name: text, }; Modal.createDialog(ImageView, params, "mx_Dialog_lightbox"); }, render: function() { const ev = this.props.mxEvent; const senderDisplayName = ev.sender && ev.sender.name ? ev.sender.name : ev.getSender(); const RoomAvatar = sdk.getComponent("avatars.RoomAvatar"); if (!ev.getContent().url || ev.getContent().url.trim().length === 0) { return (