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) {
@ -54,13 +58,23 @@
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;
}
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);
@ -68,6 +82,10 @@
view.on('update', this.trigger.bind(this, 'update'));
return this;
}
},
deleteView: function(e) {
if (e) { e.stopPropagation(); }
}
});
})();