From 72d24f58d0e074d2cf74f646c64c5ce80bf1ad8b Mon Sep 17 00:00:00 2001 From: Mark Haines Date: Tue, 8 Nov 2016 16:26:25 +0000 Subject: [PATCH] Make the promises be q promises --- src/components/views/messages/MVideoBody.js | 21 ++++++++++----------- src/utils/DecryptFile.js | 2 +- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/src/components/views/messages/MVideoBody.js b/src/components/views/messages/MVideoBody.js index c5fc0f9802..a32348ea1a 100644 --- a/src/components/views/messages/MVideoBody.js +++ b/src/components/views/messages/MVideoBody.js @@ -16,12 +16,13 @@ limitations under the License. 'use strict'; -import React from require('react'); +import React from 'react'; import MFileBody from './MFileBody'; import MatrixClientPeg from '../../../MatrixClientPeg'; import Model from '../../../Modal'; import sdk from '../../../index'; -import {decryptFile} from '../../../utils/DecryptFile'; +import { decryptFile } from '../../../utils/DecryptFile'; +import q from 'q'; module.exports = React.createClass({ displayName: 'MVideoBody', @@ -78,26 +79,24 @@ module.exports = React.createClass({ componentDidMount: function() { const content = this.props.mxEvent.getContent(); if (content.file !== undefined && this.state.decryptedUrl === null) { - var thumbnailPromise = Promise.resolve(null); + var thumbnailPromise = q(null); if (content.info.thumbnail_file) { thumbnailPromise = decryptFile( content.info.thumbnail_file ); } - thumbnailPromise.then(function (thumbnailUrl) { - decryptFile(content.file).then(function(contentUrl) { - return { + thumbnailPromise.then((thumbnailUrl) => { + decryptFile(content.file).then((contentUrl) => { + this.setState({ decryptedUrl: contentUrl, decryptedThumbnailUrl: thumbnailUrl, - }; + }); }); - }).done((state) => { - this.setState(result); - }, (err) => { + }).catch((err) => { console.warn("Unable to decrypt attachment: ", err) // Set a placeholder image when we can't decrypt the image. this.refs.image.src = "img/warning.svg"; - }); + }).done(); } }, diff --git a/src/utils/DecryptFile.js b/src/utils/DecryptFile.js index ca7cf33584..38eab1d073 100644 --- a/src/utils/DecryptFile.js +++ b/src/utils/DecryptFile.js @@ -53,7 +53,7 @@ function readBlobAsDataUri(file) { export function decryptFile(file) { const url = MatrixClientPeg.get().mxcUrlToHttp(file.url); // Download the encrypted file as an array buffer. - return fetch(url).then(function(response) { + return q(fetch(url)).then(function(response) { return response.arrayBuffer(); }).then(function(responseData) { // Decrypt the array buffer using the information taken from