These TODO comments are expected to be fixed ASAP, but until that happens let's minimize the errors in the console for development. For https://github.com/vector-im/riot-web/issues/12877 These all aren't using componentDidMount because they do something which causes application instability if componentDidMount were used. Much of these calls are expected to move into constructors once they are converted to real classes.
124 lines
4.6 KiB
JavaScript
124 lines
4.6 KiB
JavaScript
/*
|
|
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.
|
|
*/
|
|
|
|
import React, {createRef} from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import createReactClass from 'create-react-class';
|
|
import * as sdk from '../../../index';
|
|
import SettingsStore from "../../../settings/SettingsStore";
|
|
import {Mjolnir} from "../../../mjolnir/Mjolnir";
|
|
|
|
export default createReactClass({
|
|
displayName: 'MessageEvent',
|
|
|
|
propTypes: {
|
|
/* the MatrixEvent to show */
|
|
mxEvent: PropTypes.object.isRequired,
|
|
|
|
/* a list of words to highlight */
|
|
highlights: PropTypes.array,
|
|
|
|
/* link URL for the highlights */
|
|
highlightLink: PropTypes.string,
|
|
|
|
/* should show URL previews for this event */
|
|
showUrlPreview: PropTypes.bool,
|
|
|
|
/* callback called when dynamic content in events are loaded */
|
|
onHeightChanged: PropTypes.func,
|
|
|
|
/* the shape of the tile, used */
|
|
tileShape: PropTypes.string,
|
|
|
|
/* the maximum image height to use, if the event is an image */
|
|
maxImageHeight: PropTypes.number,
|
|
},
|
|
|
|
// TODO: [REACT-WARNING] Replace component with real class, use constructor for refs
|
|
UNSAFE_componentWillMount: function() {
|
|
this._body = createRef();
|
|
},
|
|
|
|
getEventTileOps: function() {
|
|
return this._body.current && this._body.current.getEventTileOps ? this._body.current.getEventTileOps() : null;
|
|
},
|
|
|
|
onTileUpdate: function() {
|
|
this.forceUpdate();
|
|
},
|
|
|
|
render: function() {
|
|
const UnknownBody = sdk.getComponent('messages.UnknownBody');
|
|
|
|
const bodyTypes = {
|
|
'm.text': sdk.getComponent('messages.TextualBody'),
|
|
'm.notice': sdk.getComponent('messages.TextualBody'),
|
|
'm.emote': sdk.getComponent('messages.TextualBody'),
|
|
'm.image': sdk.getComponent('messages.MImageBody'),
|
|
'm.file': sdk.getComponent('messages.MFileBody'),
|
|
'm.audio': sdk.getComponent('messages.MAudioBody'),
|
|
'm.video': sdk.getComponent('messages.MVideoBody'),
|
|
};
|
|
const evTypes = {
|
|
'm.sticker': sdk.getComponent('messages.MStickerBody'),
|
|
};
|
|
|
|
const content = this.props.mxEvent.getContent();
|
|
const type = this.props.mxEvent.getType();
|
|
const msgtype = content.msgtype;
|
|
let BodyType = UnknownBody;
|
|
if (!this.props.mxEvent.isRedacted()) {
|
|
// only resolve BodyType if event is not redacted
|
|
if (type && evTypes[type]) {
|
|
BodyType = evTypes[type];
|
|
} else if (msgtype && bodyTypes[msgtype]) {
|
|
BodyType = bodyTypes[msgtype];
|
|
} else if (content.url) {
|
|
// Fallback to MFileBody if there's a content URL
|
|
BodyType = bodyTypes['m.file'];
|
|
}
|
|
}
|
|
|
|
if (SettingsStore.isFeatureEnabled("feature_mjolnir")) {
|
|
const key = `mx_mjolnir_render_${this.props.mxEvent.getRoomId()}__${this.props.mxEvent.getId()}`;
|
|
const allowRender = localStorage.getItem(key) === "true";
|
|
|
|
if (!allowRender) {
|
|
const userDomain = this.props.mxEvent.getSender().split(':').slice(1).join(':');
|
|
const userBanned = Mjolnir.sharedInstance().isUserBanned(this.props.mxEvent.getSender());
|
|
const serverBanned = Mjolnir.sharedInstance().isServerBanned(userDomain);
|
|
|
|
if (userBanned || serverBanned) {
|
|
BodyType = sdk.getComponent('messages.MjolnirBody');
|
|
}
|
|
}
|
|
}
|
|
|
|
return <BodyType
|
|
ref={this._body}
|
|
mxEvent={this.props.mxEvent}
|
|
highlights={this.props.highlights}
|
|
highlightLink={this.props.highlightLink}
|
|
showUrlPreview={this.props.showUrlPreview}
|
|
tileShape={this.props.tileShape}
|
|
maxImageHeight={this.props.maxImageHeight}
|
|
replacingEventId={this.props.replacingEventId}
|
|
editState={this.props.editState}
|
|
onHeightChanged={this.props.onHeightChanged}
|
|
onMessageAllowed={this.onTileUpdate}
|
|
/>;
|
|
},
|
|
});
|