2018-08-20 16:20:59 +01:00
|
|
|
/*
|
|
|
|
|
Copyright 2018 New Vector Ltd
|
2019-12-19 17:45:24 -07:00
|
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
2018-08-20 16:20:59 +01:00
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
*/
|
|
|
|
|
|
2023-01-30 10:02:32 +00:00
|
|
|
import React, { useCallback } from "react";
|
2021-10-22 17:23:32 -05:00
|
|
|
import { MatrixEvent } from "matrix-js-sdk/src/models/event";
|
2018-08-20 16:20:59 +01:00
|
|
|
|
2020-05-13 20:41:41 -06:00
|
|
|
import dis from "../../../dispatcher/dispatcher";
|
2021-11-25 17:49:43 -03:00
|
|
|
import { Action } from "../../../dispatcher/actions";
|
2019-09-30 20:39:58 -06:00
|
|
|
import { RoomPermalinkCreator } from "../../../utils/permalinks/Permalinks";
|
2018-08-20 16:20:59 +01:00
|
|
|
import { _t } from "../../../languageHandler";
|
2021-06-29 13:11:58 +01:00
|
|
|
import { MatrixClientPeg } from "../../../MatrixClientPeg";
|
2020-11-04 17:00:07 +00:00
|
|
|
import EventTileBubble from "./EventTileBubble";
|
2022-02-10 14:29:55 +00:00
|
|
|
import { ViewRoomPayload } from "../../../dispatcher/payloads/ViewRoomPayload";
|
2021-09-24 20:08:15 +02:00
|
|
|
|
|
|
|
|
interface IProps {
|
2023-01-27 15:23:23 +00:00
|
|
|
/** The m.room.create MatrixEvent that this tile represents */
|
2021-09-24 20:08:15 +02:00
|
|
|
mxEvent: MatrixEvent;
|
2022-01-25 13:10:17 +00:00
|
|
|
timestamp?: JSX.Element;
|
2021-09-24 20:08:15 +02:00
|
|
|
}
|
2018-08-20 16:20:59 +01:00
|
|
|
|
2023-01-27 15:23:23 +00:00
|
|
|
/**
|
|
|
|
|
* A message tile showing that this room was created as an upgrade of a previous
|
|
|
|
|
* room.
|
|
|
|
|
*/
|
2023-01-30 10:02:32 +00:00
|
|
|
export const RoomCreate: React.FC<IProps> = ({ mxEvent, timestamp }) => {
|
|
|
|
|
const onLinkClicked = useCallback(
|
|
|
|
|
(e: React.MouseEvent): void => {
|
|
|
|
|
e.preventDefault();
|
2018-08-20 16:20:59 +01:00
|
|
|
|
2023-01-30 10:02:32 +00:00
|
|
|
const predecessor = mxEvent.getContent()["predecessor"];
|
2018-08-20 16:20:59 +01:00
|
|
|
|
2023-01-30 10:02:32 +00:00
|
|
|
dis.dispatch<ViewRoomPayload>({
|
|
|
|
|
action: Action.ViewRoom,
|
|
|
|
|
event_id: predecessor["event_id"],
|
|
|
|
|
highlighted: true,
|
|
|
|
|
room_id: predecessor["room_id"],
|
|
|
|
|
metricsTrigger: "Predecessor",
|
|
|
|
|
metricsViaKeyboard: e.type !== "click",
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
[mxEvent],
|
|
|
|
|
);
|
|
|
|
|
const predecessor = mxEvent.getContent()["predecessor"];
|
|
|
|
|
if (predecessor === undefined) {
|
|
|
|
|
return <div />; // We should never have been instantiated in this case
|
2020-08-29 12:14:16 +01:00
|
|
|
}
|
2023-01-30 10:02:32 +00:00
|
|
|
const prevRoom = MatrixClientPeg.get().getRoom(predecessor["room_id"]);
|
|
|
|
|
const permalinkCreator = new RoomPermalinkCreator(prevRoom, predecessor["room_id"]);
|
|
|
|
|
permalinkCreator.load();
|
|
|
|
|
const predecessorPermalink = permalinkCreator.forEvent(predecessor["event_id"]);
|
|
|
|
|
const link = (
|
|
|
|
|
<a href={predecessorPermalink} onClick={onLinkClicked}>
|
|
|
|
|
{_t("Click here to see older messages.")}
|
|
|
|
|
</a>
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<EventTileBubble
|
|
|
|
|
className="mx_CreateEvent"
|
|
|
|
|
title={_t("This room is a continuation of another conversation.")}
|
|
|
|
|
subtitle={link}
|
|
|
|
|
timestamp={timestamp}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
};
|