2020-09-16 18:38:47 +00:00
|
|
|
/*
|
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
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 { MatrixEvent } from "matrix-js-sdk/src/models/event";
|
|
|
|
import { _t } from "../../../languageHandler";
|
2020-09-16 20:59:15 +00:00
|
|
|
import WidgetStore from "../../../stores/WidgetStore";
|
2020-11-04 17:00:07 +00:00
|
|
|
import EventTileBubble from "./EventTileBubble";
|
2021-01-19 03:26:47 +00:00
|
|
|
import { MatrixClientPeg } from "../../../MatrixClientPeg";
|
|
|
|
import { Container, WidgetLayoutStore } from "../../../stores/widgets/WidgetLayoutStore";
|
2021-03-09 03:04:46 +00:00
|
|
|
import {replaceableComponent} from "../../../utils/replaceableComponent";
|
2020-09-16 18:38:47 +00:00
|
|
|
|
|
|
|
interface IProps {
|
|
|
|
mxEvent: MatrixEvent;
|
|
|
|
}
|
|
|
|
|
2021-03-09 03:04:46 +00:00
|
|
|
@replaceableComponent("views.messages.MJitsiWidgetEvent")
|
2020-09-16 20:59:40 +00:00
|
|
|
export default class MJitsiWidgetEvent extends React.PureComponent<IProps> {
|
2020-09-16 18:38:47 +00:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const url = this.props.mxEvent.getContent()['url'];
|
|
|
|
const prevUrl = this.props.mxEvent.getPrevContent()['url'];
|
|
|
|
const senderName = this.props.mxEvent.sender?.name || this.props.mxEvent.getSender();
|
2021-01-19 03:26:47 +00:00
|
|
|
const room = MatrixClientPeg.get().getRoom(this.props.mxEvent.getRoomId());
|
|
|
|
const widgetId = this.props.mxEvent.getStateKey();
|
2021-01-27 21:40:04 +00:00
|
|
|
const widget = WidgetStore.instance.getRoom(room.roomId, true).widgets.find(w => w.id === widgetId);
|
2020-09-16 18:38:47 +00:00
|
|
|
|
2020-09-16 20:59:15 +00:00
|
|
|
let joinCopy = _t('Join the conference at the top of this room');
|
2021-01-19 03:26:47 +00:00
|
|
|
if (widget && WidgetLayoutStore.instance.isInContainer(room, widget, Container.Right)) {
|
2020-09-16 20:59:15 +00:00
|
|
|
joinCopy = _t('Join the conference from the room information card on the right');
|
2021-01-27 21:40:04 +00:00
|
|
|
} else if (!widget) {
|
|
|
|
joinCopy = null;
|
2020-09-16 20:59:15 +00:00
|
|
|
}
|
|
|
|
|
2020-09-16 18:38:47 +00:00
|
|
|
if (!url) {
|
|
|
|
// removed
|
2020-11-04 17:00:07 +00:00
|
|
|
return <EventTileBubble
|
|
|
|
className="mx_MJitsiWidgetEvent"
|
|
|
|
title={_t('Video conference ended by %(senderName)s', {senderName})}
|
|
|
|
/>;
|
2020-09-16 18:38:47 +00:00
|
|
|
} else if (prevUrl) {
|
|
|
|
// modified
|
2020-11-04 17:00:07 +00:00
|
|
|
return <EventTileBubble
|
|
|
|
className="mx_MJitsiWidgetEvent"
|
|
|
|
title={_t('Video conference updated by %(senderName)s', {senderName})}
|
|
|
|
subtitle={joinCopy}
|
|
|
|
/>;
|
2020-09-16 18:38:47 +00:00
|
|
|
} else {
|
|
|
|
// assume added
|
2020-11-04 17:00:07 +00:00
|
|
|
return <EventTileBubble
|
|
|
|
className="mx_MJitsiWidgetEvent"
|
|
|
|
title={_t("Video conference started by %(senderName)s", {senderName})}
|
|
|
|
subtitle={joinCopy}
|
|
|
|
/>;
|
2020-09-16 18:38:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|