Added error message for unsupported attachment type (issue #419)

This commit is contained in:
David Baldwynn 2015-12-04 22:39:15 -08:00 committed by lilia
parent 04359c9184
commit 8251db6ae6
2 changed files with 30 additions and 9 deletions

View file

@ -160,6 +160,9 @@
Sorry, the selected file exceeds message size
restrictions. ({{ limit }}{{ units }})
</script>
<script type='text/x-tmpl-mustache' id='attachment-type-modal'>
Sorry, your attachment has a type, {{type}}, that is not currently supported.
</script>
<script type='text/x-tmpl-mustache' id='message-detail'>
<div class='conversation-header'>
<button class='back'></button>

View file

@ -4,6 +4,10 @@
(function () {
'use strict';
Whisper.FileTypeToast = Whisper.ToastView.extend({
template: $('#attachment-type-modal').html()
});
var ImageView = Backbone.View.extend({
tagName: 'img',
initialize: function(dataUrl) {
@ -20,8 +24,8 @@
window.open(this.dataUrl, '_blank');
},
render: function() {
this.$el.attr('src', this.dataUrl);
return this;
this.$el.attr('src', this.dataUrl);
return this;
}
});
@ -54,19 +58,33 @@
className: 'attachment',
render: function() {
var View;
var isUnsupportedType = false;
switch(this.model.contentType.split('/')[0]) {
case 'image': View = ImageView; break;
case 'audio': View = AudioView; break;
case 'video': View = VideoView; break;
default:
throw 'Unsupported attachment type';
isUnsupportedType = true;
}
var blob = new Blob([this.model.data], {type: this.model.contentType});
var view = new View(window.URL.createObjectURL(blob), this.model.contentType);
view.$el.appendTo(this.$el);
view.render();
view.on('update', this.trigger.bind(this, 'update'));
return this;
if (isUnsupportedType) {
var toast = new Whisper.FileTypeToast({
model: {type: this.model.contentType.split('/')[0]}
});
toast.$el.insertAfter(this.$el);
toast.render();
return toast;
} else {
var blob = new Blob([this.model.data], {type: this.model.contentType});
var view = new View(window.URL.createObjectURL(blob), this.model.contentType);
view.$el.appendTo(this.$el);
view.render();
view.on('update', this.trigger.bind(this, 'update'));
return this;
}
},
deleteView: function(e) {
if (e) { e.stopPropagation(); }
}
});