2015-11-27 18:02:32 +03:00
|
|
|
/*
|
2016-01-07 07:06:39 +03:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2015-11-27 18:02:32 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var React = require('react');
|
|
|
|
var filesize = require('filesize');
|
|
|
|
|
|
|
|
var MatrixClientPeg = require('../../../MatrixClientPeg');
|
|
|
|
var Modal = require('../../../Modal');
|
|
|
|
var sdk = require('../../../index');
|
|
|
|
|
|
|
|
module.exports = React.createClass({
|
2015-11-30 18:19:43 +03:00
|
|
|
displayName: 'MVideoBody',
|
2015-11-27 18:02:32 +03:00
|
|
|
|
|
|
|
thumbScale: function(fullWidth, fullHeight, thumbWidth, thumbHeight) {
|
|
|
|
if (!fullWidth || !fullHeight) {
|
|
|
|
// Cannot calculate thumbnail height for image: missing w/h in metadata. We can't even
|
|
|
|
// log this because it's spammy
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
if (fullWidth < thumbWidth && fullHeight < thumbHeight) {
|
|
|
|
// no scaling needs to be applied
|
2016-07-20 13:58:49 +03:00
|
|
|
return 1;
|
2015-11-27 18:02:32 +03:00
|
|
|
}
|
|
|
|
var widthMulti = thumbWidth / fullWidth;
|
|
|
|
var heightMulti = thumbHeight / fullHeight;
|
|
|
|
if (widthMulti < heightMulti) {
|
|
|
|
// width is the dominant dimension so scaling will be fixed on that
|
|
|
|
return widthMulti;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// height is the dominant dimension so scaling will be fixed on that
|
|
|
|
return heightMulti;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
|
|
|
var content = this.props.mxEvent.getContent();
|
|
|
|
var cli = MatrixClientPeg.get();
|
|
|
|
|
|
|
|
var height = null;
|
|
|
|
var width = null;
|
|
|
|
var poster = null;
|
|
|
|
var preload = "metadata";
|
|
|
|
if (content.info) {
|
|
|
|
var scale = this.thumbScale(content.info.w, content.info.h, 480, 360);
|
|
|
|
if (scale) {
|
|
|
|
width = Math.floor(content.info.w * scale);
|
|
|
|
height = Math.floor(content.info.h * scale);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (content.info.thumbnail_url) {
|
|
|
|
poster = cli.mxcUrlToHttp(content.info.thumbnail_url);
|
|
|
|
preload = "none";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-11 04:14:27 +03:00
|
|
|
var download;
|
|
|
|
if (this.props.tileShape === "file_grid") {
|
|
|
|
download = (
|
|
|
|
<div className="mx_MImageBody_download">
|
|
|
|
<a className="mx_MImageBody_downloadLink" href={cli.mxcUrlToHttp(content.url)} target="_blank" rel="noopener">
|
|
|
|
{content.body}
|
|
|
|
</a>
|
|
|
|
<div className="mx_MImageBody_size">
|
|
|
|
{ content.info && content.info.size ? filesize(content.info.size) : "" }
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else {
|
2016-09-12 18:28:39 +03:00
|
|
|
var TintableSvg = sdk.getComponent("elements.TintableSvg");
|
2016-09-11 04:14:27 +03:00
|
|
|
download = (
|
|
|
|
<div className="mx_MImageBody_download">
|
|
|
|
<a href={cli.mxcUrlToHttp(content.url)} target="_blank" rel="noopener">
|
|
|
|
<TintableSvg src="img/download.svg" width="12" height="14"/>
|
|
|
|
Download {content.body} ({ content.info && content.info.size ? filesize(content.info.size) : "Unknown size" })
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-11-27 18:02:32 +03:00
|
|
|
return (
|
2016-01-03 03:11:11 +03:00
|
|
|
<span className="mx_MVideoBody">
|
|
|
|
<video className="mx_MVideoBody" src={cli.mxcUrlToHttp(content.url)} alt={content.body}
|
2016-03-10 20:38:14 +03:00
|
|
|
controls preload={preload} autoPlay={false}
|
2015-11-27 18:02:32 +03:00
|
|
|
height={height} width={width} poster={poster}>
|
|
|
|
</video>
|
2016-09-11 04:14:27 +03:00
|
|
|
{ download }
|
2015-11-27 18:02:32 +03:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|