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.
|
|
|
|
*/
|
|
|
|
|
2018-07-04 12:27:03 +03:00
|
|
|
import React from 'react';
|
2018-03-08 15:31:01 +03:00
|
|
|
import MImageBody from './MImageBody';
|
2019-12-20 04:19:56 +03:00
|
|
|
import * as sdk from '../../../index';
|
2018-01-05 01:21:38 +03:00
|
|
|
|
2018-02-26 17:01:33 +03:00
|
|
|
export default class MStickerBody extends MImageBody {
|
2019-09-28 06:08:31 +03:00
|
|
|
// Mostly empty to prevent default behaviour of MImageBody
|
|
|
|
onClick(ev) {
|
|
|
|
ev.preventDefault();
|
|
|
|
if (!this.state.showImage) {
|
|
|
|
this.showImage();
|
|
|
|
}
|
2018-03-08 15:31:01 +03:00
|
|
|
}
|
|
|
|
|
2018-05-21 18:59:13 +03:00
|
|
|
// MStickerBody doesn't need a wrapping `<a href=...>`, but it does need extra padding
|
|
|
|
// which is added by mx_MStickerBody_wrapper
|
|
|
|
wrapImage(contentUrl, children) {
|
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>;
|
2018-03-08 15:31:01 +03:00
|
|
|
}
|
|
|
|
|
2018-05-21 18:59:13 +03:00
|
|
|
// Placeholder to show in place of the sticker image if
|
|
|
|
// img onLoad hasn't fired yet.
|
|
|
|
getPlaceholder() {
|
|
|
|
const TintableSVG = sdk.getComponent('elements.TintableSvg');
|
2019-01-11 04:37:28 +03:00
|
|
|
return <TintableSVG src={require("../../../../res/img/icons-show-stickers.svg")} width="75" height="75" />;
|
2018-03-10 00:12:56 +03:00
|
|
|
}
|
|
|
|
|
2018-05-21 18:59:13 +03:00
|
|
|
// Tooltip to show on mouse over
|
|
|
|
getTooltip() {
|
|
|
|
const content = this.props.mxEvent && this.props.mxEvent.getContent();
|
2018-03-08 15:31:01 +03:00
|
|
|
|
2018-05-21 18:59:13 +03:00
|
|
|
if (!content || !content.body || !content.info || !content.info.w) return null;
|
2018-05-14 15:41:41 +03:00
|
|
|
|
2019-02-01 02:36:19 +03:00
|
|
|
const Tooltip = sdk.getComponent('elements.Tooltip');
|
2018-05-21 18:59:13 +03:00
|
|
|
return <div style={{left: content.info.w + 'px'}} className="mx_MStickerBody_tooltip">
|
2019-02-01 02:36:19 +03:00
|
|
|
<Tooltip label={content.body} />
|
2018-05-21 18:59:13 +03:00
|
|
|
</div>;
|
2018-02-26 17:01:33 +03:00
|
|
|
}
|
2018-01-05 01:21:38 +03:00
|
|
|
|
2018-05-21 18:59:13 +03:00
|
|
|
// Don't show "Download this_file.png ..."
|
|
|
|
getFileBody() {
|
|
|
|
return null;
|
2018-02-26 17:01:33 +03:00
|
|
|
}
|
|
|
|
}
|