|
|
|
@ -3,6 +3,7 @@ const React = require('react')
|
|
|
|
|
const ReactDOM = require('react-dom')
|
|
|
|
|
const create = require('create-react-class')
|
|
|
|
|
const Promise = require('bluebird')
|
|
|
|
|
const defaultValue = require('default-value')
|
|
|
|
|
|
|
|
|
|
const Text = require('./text.js')
|
|
|
|
|
|
|
|
|
@ -10,22 +11,43 @@ let Event = create({
|
|
|
|
|
displayName: "m.image",
|
|
|
|
|
|
|
|
|
|
getInitialState: function() {
|
|
|
|
|
let client = this.props.client
|
|
|
|
|
let hs = this.props.client.baseUrl
|
|
|
|
|
let event = this.props.event
|
|
|
|
|
if (event.content.url == undefined) {
|
|
|
|
|
return {url: {media: null, thumb: null}}
|
|
|
|
|
}
|
|
|
|
|
let media_mxc = event.content.url.slice(6)
|
|
|
|
|
let thumb_mxc = media_mxc
|
|
|
|
|
if (event.content.info != undefined && event.content.info.thumbnail_info != undefined) {
|
|
|
|
|
thumb_mxc = event.content.info.thumbnail_url.slice(6)
|
|
|
|
|
console.log(event)
|
|
|
|
|
|
|
|
|
|
let h = 1000
|
|
|
|
|
let w = 1000
|
|
|
|
|
try {
|
|
|
|
|
if (event.content.info.h < h) {
|
|
|
|
|
h = event.content.info.h
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (event.content.info.w < w) {
|
|
|
|
|
w = event.content.info.w
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (event.content.info.thumbnail_info < h) {
|
|
|
|
|
h = event.content.info.thumbnail_info.h
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (event.content.info.thumbnail_info < w) {
|
|
|
|
|
w = event.content.info.thumbnail_info.w
|
|
|
|
|
}
|
|
|
|
|
} catch(error) {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
let download = `${hs}/_matrix/media/v1/download`
|
|
|
|
|
let thumbnail = `${hs}/_matrix/media/v1/thumbnail/${thumb_mxc}?width=1000&height=1000&method=scale`
|
|
|
|
|
|
|
|
|
|
let media_url = client.mxcUrlToHttp(event.content.url)
|
|
|
|
|
let thumb_url = client.mxcUrlToHttp(event.content.url, w, h, "scale", false)
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
url: {
|
|
|
|
|
media: `${download}/${media_mxc}`,
|
|
|
|
|
thumb: thumbnail
|
|
|
|
|
media: media_url,
|
|
|
|
|
thumb: thumb_url
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|