* Revert "replace all require(svgs) with esm import (#7948)"
This reverts commit 61cd463a3b
.
* add .default to svg icon inline requires
Signed-off-by: Kerry Archibald <kerrya@element.io>
* add shameful eslint ignore
Signed-off-by: Kerry Archibald <kerrya@element.io>
* format eslintrc
Signed-off-by: Kerry Archibald <kerrya@element.io>
* add missed MFileBody change
Signed-off-by: Kerry Archibald <kerrya@element.io>
* one more broken svg
Signed-off-by: Kerry Archibald <kerrya@element.io>
* and ignore it
Signed-off-by: Kerry Archibald <kerrya@element.io>
71 lines
2.5 KiB
TypeScript
71 lines
2.5 KiB
TypeScript
/*
|
|
Copyright 2017 - 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 { MatrixEvent } from 'matrix-js-sdk/src/models/event';
|
|
|
|
import dis from '../../../dispatcher/dispatcher';
|
|
import { _t } from '../../../languageHandler';
|
|
import { RoomPermalinkCreator } from "../../../utils/permalinks/Permalinks";
|
|
import { replaceableComponent } from "../../../utils/replaceableComponent";
|
|
import ReplyTile from './ReplyTile';
|
|
import RoomContext, { TimelineRenderingType } from '../../../contexts/RoomContext';
|
|
|
|
function cancelQuoting(context: TimelineRenderingType) {
|
|
dis.dispatch({
|
|
action: 'reply_to_event',
|
|
event: null,
|
|
context,
|
|
});
|
|
}
|
|
|
|
interface IProps {
|
|
permalinkCreator: RoomPermalinkCreator;
|
|
replyToEvent: MatrixEvent;
|
|
}
|
|
|
|
@replaceableComponent("views.rooms.ReplyPreview")
|
|
export default class ReplyPreview extends React.Component<IProps> {
|
|
public static contextType = RoomContext;
|
|
|
|
public render(): JSX.Element {
|
|
if (!this.props.replyToEvent) return null;
|
|
|
|
return <div className="mx_ReplyPreview">
|
|
<div className="mx_ReplyPreview_section">
|
|
<div className="mx_ReplyPreview_header mx_ReplyPreview_title">
|
|
{ _t('Replying') }
|
|
</div>
|
|
<div className="mx_ReplyPreview_header mx_ReplyPreview_cancel">
|
|
<img
|
|
className="mx_filterFlipColor"
|
|
src={require("../../../../res/img/cancel.svg").default}
|
|
width="18"
|
|
height="18"
|
|
onClick={() => cancelQuoting(this.context.timelineRenderingType)}
|
|
/>
|
|
</div>
|
|
<div className="mx_ReplyPreview_clear" />
|
|
<div className="mx_ReplyPreview_tile">
|
|
<ReplyTile
|
|
mxEvent={this.props.replyToEvent}
|
|
permalinkCreator={this.props.permalinkCreator}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>;
|
|
}
|
|
}
|