All components which don't understand this shape will fall through to their normal states, as they would for no explicit tile shape.
106 lines
3.6 KiB
TypeScript
106 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";
|
|
import { TileShape } from "./EventTile";
|
|
|
|
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
|
|
tileShape={TileShape.Pinned}
|
|
/>
|
|
</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>;
|
|
}
|
|
}
|