element-web/src/components/views/messages/MStickerBody.tsx

67 lines
2.5 KiB
TypeScript
Raw Normal View History

2018-01-05 01:21:38 +03:00
/*
2018-01-05 01:51:49 +03:00
Copyright 2018 New Vector Ltd
2018-01-05 01:21:38 +03: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.
*/
import React from 'react';
import MImageBody from './MImageBody';
import * as sdk from '../../../index';
2021-06-29 15:11:58 +03:00
import { replaceableComponent } from "../../../utils/replaceableComponent";
import { BLURHASH_FIELD } from "../../../ContentMessages";
2018-01-05 01:21:38 +03:00
@replaceableComponent("views.messages.MStickerBody")
2018-02-26 17:01:33 +03:00
export default class MStickerBody extends MImageBody {
// Mostly empty to prevent default behaviour of MImageBody
2021-07-21 10:52:09 +03:00
protected onClick = (ev: React.MouseEvent) => {
ev.preventDefault();
if (!this.state.showImage) {
this.showImage();
}
2021-07-21 10:52:09 +03:00
};
// MStickerBody doesn't need a wrapping `<a href=...>`, but it does need extra padding
// which is added by mx_MStickerBody_wrapper
2021-07-21 10:52:09 +03:00
protected wrapImage(contentUrl: string, children: React.ReactNode): JSX.Element {
2019-10-02 02:00:01 +03:00
let onClick = null;
if (!this.state.showImage) {
onClick = this.onClick;
}
return <div className="mx_MStickerBody_wrapper" onClick={onClick}> { children } </div>;
}
// Placeholder to show in place of the sticker image if
// img onLoad hasn't fired yet.
2021-07-21 10:52:09 +03:00
protected getPlaceholder(width: number, height: number): JSX.Element {
2021-05-24 12:06:17 +03:00
if (this.props.mxEvent.getContent().info[BLURHASH_FIELD]) return super.getPlaceholder(width, height);
2021-06-30 11:02:00 +03:00
return <img src={require("../../../../res/img/icons-show-stickers.svg")} width="75" height="75" />;
2018-03-10 00:12:56 +03:00
}
// Tooltip to show on mouse over
2021-07-21 10:52:09 +03:00
protected getTooltip(): JSX.Element {
const content = this.props.mxEvent && this.props.mxEvent.getContent();
if (!content || !content.body || !content.info || !content.info.w) return null;
const Tooltip = sdk.getComponent('elements.Tooltip');
2021-06-29 15:11:58 +03:00
return <div style={{ left: content.info.w + 'px' }} className="mx_MStickerBody_tooltip">
<Tooltip label={content.body} />
</div>;
2018-02-26 17:01:33 +03:00
}
2018-01-05 01:21:38 +03:00
// Don't show "Download this_file.png ..."
2021-07-21 10:52:09 +03:00
protected getFileBody() {
return null;
2018-02-26 17:01:33 +03:00
}
}