mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-16 14:31:46 +03:00
53fc475539
Co-authored-by: Travis Ralston <travisr@matrix.org>
104 lines
3.6 KiB
TypeScript
104 lines
3.6 KiB
TypeScript
/*
|
|
Copyright 2017 Travis Ralston
|
|
Copyright 2021 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 { Room } from "matrix-js-sdk/src/models/room";
|
|
import { MatrixEvent } from "matrix-js-sdk/src/models/event";
|
|
|
|
import dis from "../../../dispatcher/dispatcher";
|
|
import AccessibleButton from "../elements/AccessibleButton";
|
|
import MessageEvent from "../messages/MessageEvent";
|
|
import MemberAvatar from "../avatars/MemberAvatar";
|
|
import { _t } from '../../../languageHandler';
|
|
import { formatDate } from '../../../DateUtils';
|
|
import { replaceableComponent } from "../../../utils/replaceableComponent";
|
|
import MatrixClientContext from "../../../contexts/MatrixClientContext";
|
|
import { getUserNameColorClass } from "../../../utils/FormattingUtils";
|
|
import AccessibleTooltipButton from "../elements/AccessibleTooltipButton";
|
|
|
|
interface IProps {
|
|
room: Room;
|
|
event: MatrixEvent;
|
|
onUnpinClicked?(): void;
|
|
}
|
|
|
|
const AVATAR_SIZE = 24;
|
|
|
|
@replaceableComponent("views.rooms.PinnedEventTile")
|
|
export default class PinnedEventTile extends React.Component<IProps> {
|
|
public static contextType = MatrixClientContext;
|
|
|
|
private onTileClicked = () => {
|
|
dis.dispatch({
|
|
action: 'view_room',
|
|
event_id: this.props.event.getId(),
|
|
highlighted: true,
|
|
room_id: this.props.event.getRoomId(),
|
|
});
|
|
};
|
|
|
|
render() {
|
|
const sender = this.props.event.getSender();
|
|
const senderProfile = this.props.room.getMember(sender);
|
|
|
|
let unpinButton = null;
|
|
if (this.props.onUnpinClicked) {
|
|
unpinButton = (
|
|
<AccessibleTooltipButton
|
|
onClick={this.props.onUnpinClicked}
|
|
className="mx_PinnedEventTile_unpinButton"
|
|
title={_t("Unpin")}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return <div className="mx_PinnedEventTile">
|
|
<MemberAvatar
|
|
className="mx_PinnedEventTile_senderAvatar"
|
|
member={senderProfile}
|
|
width={AVATAR_SIZE}
|
|
height={AVATAR_SIZE}
|
|
fallbackUserId={sender}
|
|
/>
|
|
|
|
<span className={"mx_PinnedEventTile_sender " + getUserNameColorClass(sender)}>
|
|
{ senderProfile?.name || sender }
|
|
</span>
|
|
|
|
{ unpinButton }
|
|
|
|
<div className="mx_PinnedEventTile_message">
|
|
<MessageEvent
|
|
mxEvent={this.props.event}
|
|
className="mx_PinnedEventTile_body"
|
|
maxImageHeight={150}
|
|
onHeightChanged={() => {}} // we need to give this, apparently
|
|
/>
|
|
</div>
|
|
|
|
<div className="mx_PinnedEventTile_footer">
|
|
<span className="mx_PinnedEventTile_timestamp">
|
|
{ formatDate(new Date(this.props.event.getTs())) }
|
|
</span>
|
|
|
|
<AccessibleButton onClick={this.onTileClicked} kind="link">
|
|
{ _t("View message") }
|
|
</AccessibleButton>
|
|
</div>
|
|
</div>;
|
|
}
|
|
}
|