Merge pull request #168 from mozilla/ui

Show error page if upload fails
This commit is contained in:
Danny Coates 2017-07-10 09:37:38 -07:00 committed by GitHub
commit 125e6ecbdb
3 changed files with 47 additions and 20 deletions

View File

@ -51,6 +51,9 @@ class FileSender extends EventEmitter {
reader.onload = function(event) { reader.onload = function(event) {
resolve(new Uint8Array(this.result)); resolve(new Uint8Array(this.result));
}; };
reader.onerror = function(err) {
reject(err);
};
}) })
]) ])
.then(([secretKey, plaintext]) => { .then(([secretKey, plaintext]) => {

View File

@ -2,6 +2,8 @@ const FileSender = require('./fileSender');
const { notify } = require('./utils'); const { notify } = require('./utils');
const $ = require('jquery'); const $ = require('jquery');
const Raven = window.Raven;
$(document).ready(function() { $(document).ready(function() {
// reset copy button // reset copy button
const $copyBtn = $('#copy-btn'); const $copyBtn = $('#copy-btn');
@ -12,6 +14,7 @@ $(document).ready(function() {
$('#file-list').show(); $('#file-list').show();
$('#upload-progress').hide(); $('#upload-progress').hide();
$('#share-link').hide(); $('#share-link').hide();
$('#upload-error').hide();
if (localStorage.length === 0) { if (localStorage.length === 0) {
toggleHeader(); toggleHeader();
@ -46,6 +49,7 @@ $(document).ready(function() {
$('#file-list').show(); $('#file-list').show();
$('#upload-progress').hide(); $('#upload-progress').hide();
$('#share-link').hide(); $('#share-link').hide();
$('#upload-error').hide();
$copyBtn.attr('disabled', false); $copyBtn.attr('disabled', false);
$copyBtn.html('Copy'); $copyBtn.html('Copy');
}); });
@ -66,6 +70,7 @@ $(document).ready(function() {
$('#page-one').hide(); $('#page-one').hide();
$('#file-list').hide(); $('#file-list').hide();
$('#upload-progress').show(); $('#upload-progress').show();
$('#upload-error').hide();
$('#upload-filename').innerHTML += file.name; $('#upload-filename').innerHTML += file.name;
// update progress bar // update progress bar
document document
@ -73,7 +78,9 @@ $(document).ready(function() {
.style.setProperty('--progress', percentComplete + '%'); .style.setProperty('--progress', percentComplete + '%');
$('#progress-text').html(`${percentComplete}%`); $('#progress-text').html(`${percentComplete}%`);
}); });
fileSender.upload().then(info => { fileSender
.upload()
.then(info => {
const url = info.url.trim() + `#${info.secretKey}`.trim(); const url = info.url.trim() + `#${info.secretKey}`.trim();
$('#link').attr('value', url); $('#link').attr('value', url);
const fileData = { const fileData = {
@ -91,9 +98,15 @@ $(document).ready(function() {
$('#file-list').hide(); $('#file-list').hide();
$('#upload-progress').hide(); $('#upload-progress').hide();
$('#share-link').show(); $('#share-link').show();
$('#upload-error').hide();
populateFileList(JSON.stringify(fileData)); populateFileList(JSON.stringify(fileData));
notify('Your upload has finished.'); notify('Your upload has finished.');
})
.catch(err => {
Raven.captureException(err);
$('#page-one').hide();
$('#upload-error').show();
}); });
}; };

View File

@ -89,6 +89,17 @@
Send another file Send another file
</div> </div>
</div> </div>
<div id="upload-error">
<div class="title">
Upload error<br>
This file cannot be uploaded!
</div>
<div class="send-new">
Send another file
</div>
</div>
</div> </div>
</body> </body>