Merge pull request #6395 from AugierLe42e/drop-flash-messages-widget

Use backbone for flash messages
This commit is contained in:
Steffen van Bergerem 2015-10-10 17:11:06 +02:00
commit bce7157b86
38 changed files with 257 additions and 343 deletions

View file

@ -57,6 +57,7 @@ With the port to Bootstrap 3, app/views/terms/default.haml has a new structure.
* Port conversations to new design [#6431](https://github.com/diaspora/diaspora/pull/6431) * Port conversations to new design [#6431](https://github.com/diaspora/diaspora/pull/6431)
* Hide cancel button in publisher on small screens [#6435](https://github.com/diaspora/diaspora/pull/6435) * Hide cancel button in publisher on small screens [#6435](https://github.com/diaspora/diaspora/pull/6435)
* Replace mobile background with color [#6415](https://github.com/diaspora/diaspora/pull/6415) * Replace mobile background with color [#6415](https://github.com/diaspora/diaspora/pull/6415)
* Port flash messages to backbone [#6395](https://github.com/diaspora/diaspora/6395)
## Bug fixes ## Bug fixes
* Destroy Participation when removing interactions with a post [#5852](https://github.com/diaspora/diaspora/pull/5852) * Destroy Participation when removing interactions with a post [#5852](https://github.com/diaspora/diaspora/pull/5852)

View file

@ -123,6 +123,7 @@ var app = {
}); });
app.sidebar = new app.views.Sidebar(); app.sidebar = new app.views.Sidebar();
app.backToTop = new app.views.BackToTop({el: $(document)}); app.backToTop = new app.views.BackToTop({el: $(document)});
app.flashMessages = new app.views.FlashMessages({el: $("#flash-container")});
}, },
/* mixpanel wrapper function */ /* mixpanel wrapper function */

View file

@ -87,11 +87,7 @@ app.models.Post.Interactions = Backbone.Model.extend({
var self = this; var self = this;
this.comments.make(text).fail(function () { this.comments.make(text).fail(function () {
var flash = new Diaspora.Widgets.FlashMessages(); app.flashMessages.error(Diaspora.I18n.t("failed_to_post_message"));
flash.render({
success: false,
notice: Diaspora.I18n.t("failed_to_post_message")
});
}).done(function() { }).done(function() {
self.trigger('change'); //updates after sync self.trigger('change'); //updates after sync
}); });
@ -102,16 +98,11 @@ app.models.Post.Interactions = Backbone.Model.extend({
}, },
reshare : function(){ reshare : function(){
var interactions = this var interactions = this;
, reshare = this.post.reshare()
, flash = new Diaspora.Widgets.FlashMessages();
reshare.save() this.post.reshare().save()
.done(function(reshare) { .done(function(reshare) {
flash.render({ app.flashMessages.success(Diaspora.I18n.t("reshares.successful"));
success: true,
notice: Diaspora.I18n.t("reshares.successful")
});
interactions.reshares.add(reshare); interactions.reshares.add(reshare);
if (app.stream && /^\/(?:stream|activity|aspects)/.test(app.stream.basePath())) { if (app.stream && /^\/(?:stream|activity|aspects)/.test(app.stream.basePath())) {
app.stream.addNow(reshare); app.stream.addNow(reshare);
@ -119,10 +110,7 @@ app.models.Post.Interactions = Backbone.Model.extend({
interactions.trigger("change"); interactions.trigger("change");
}) })
.fail(function(){ .fail(function(){
flash.render({ app.flashMessages.error(Diaspora.I18n.t("reshares.duplicate"));
success: false,
notice: Diaspora.I18n.t("reshares.duplicate")
});
}); });
app.instrument("track", "Reshare"); app.instrument("track", "Reshare");

View file

@ -2,45 +2,47 @@
app.pages.Profile = app.views.Base.extend({ app.pages.Profile = app.views.Base.extend({
events: { events: {
'click #block_user_button': 'blockPerson', "click #block_user_button": "blockPerson",
'click #unblock_user_button': 'unblockPerson' "click #unblock_user_button": "unblockPerson"
}, },
subviews: { subviews: {
'#profile': 'sidebarView', "#profile": "sidebarView",
'.profile_header': 'headerView', ".profile_header": "headerView",
'#main_stream': 'streamView' "#main_stream": "streamView"
}, },
tooltipSelector: '.profile_button .profile-header-icon, .sharing_message_container', tooltipSelector: ".profile_button .profile-header-icon, .sharing_message_container",
initialize: function(opts) { initialize: function(opts) {
if( !this.model ) { if( !this.model ) {
this._populateModel(opts); this._populateModel(opts);
} }
if( app.hasPreload('photos') ) if(app.hasPreload("photos")){
this.photos = app.parsePreload('photos'); // we don't interact with it, so no model this.photos = app.parsePreload("photos");
if( app.hasPreload('contacts') ) }
this.contacts = app.parsePreload('contacts'); // we don't interact with it, so no model if(app.hasPreload("contacts")){
this.contacts = app.parsePreload("contacts");
}
this.streamCollection = _.has(opts, 'streamCollection') ? opts.streamCollection : null; this.streamCollection = _.has(opts, "streamCollection") ? opts.streamCollection : null;
this.streamViewClass = _.has(opts, 'streamView') ? opts.streamView : null; this.streamViewClass = _.has(opts, "streamView") ? opts.streamView : null;
this.model.on('change', this.render, this); this.model.on("change", this.render, this);
this.model.on('sync', this._done, this); this.model.on("sync", this._done, this);
// bind to global events // bind to global events
var id = this.model.get('id'); var id = this.model.get("id");
app.events.on('person:block:'+id, this.reload, this); app.events.on("person:block:"+id, this.reload, this);
app.events.on('person:unblock:'+id, this.reload, this); app.events.on("person:unblock:"+id, this.reload, this);
app.events.on('aspect:create', this.reload, this); app.events.on("aspect:create", this.reload, this);
app.events.on('aspect_membership:update', this.reload, this); app.events.on("aspect_membership:update", this.reload, this);
}, },
_populateModel: function(opts) { _populateModel: function(opts) {
if( app.hasPreload('person') ) { if( app.hasPreload("person") ) {
this.model = new app.models.Person(app.parsePreload('person')); this.model = new app.models.Person(app.parsePreload("person"));
} else if(opts && opts.person_id) { } else if(opts && opts.person_id) {
this.model = new app.models.Person({guid: opts.person_id}); this.model = new app.models.Person({guid: opts.person_id});
this.model.fetch(); this.model.fetch();
@ -50,14 +52,18 @@ app.pages.Profile = app.views.Base.extend({
}, },
sidebarView: function() { sidebarView: function() {
if( !this.model.has('profile') ) return false; if(!this.model.has("profile")){
return false;
}
return new app.views.ProfileSidebar({ return new app.views.ProfileSidebar({
model: this.model, model: this.model
}); });
}, },
headerView: function() { headerView: function() {
if( !this.model.has('profile') ) return false; if(!this.model.has("profile")){
return false;
}
return new app.views.ProfileHeader({ return new app.views.ProfileHeader({
model: this.model, model: this.model,
photos: this.photos, photos: this.photos,
@ -66,12 +72,14 @@ app.pages.Profile = app.views.Base.extend({
}, },
streamView: function() { streamView: function() {
if( !this.model.has('profile') ) return false; if(!this.model.has("profile")){
return false;
}
if( this.model.isBlocked() ) { if( this.model.isBlocked() ) {
$('#main_stream').empty().html( $("#main_stream").empty().html(
'<div class="dull">'+ '<div class="dull">'+
Diaspora.I18n.t('profile.ignoring', {name: this.model.get('name')}) + Diaspora.I18n.t("profile.ignoring", {name: this.model.get("name")}) +
'</div>'); "</div>");
return false; return false;
} }
@ -85,7 +93,7 @@ app.pages.Profile = app.views.Base.extend({
}); });
app.stream.fetch(); app.stream.fetch();
if( this.model.get('is_own_profile') ) { if( this.model.get("is_own_profile") ) {
app.publisher = new app.views.Publisher({collection : app.stream.items}); app.publisher = new app.views.Publisher({collection : app.stream.items});
} }
@ -93,14 +101,13 @@ app.pages.Profile = app.views.Base.extend({
}, },
blockPerson: function() { blockPerson: function() {
if( !confirm(Diaspora.I18n.t('ignore_user')) ) return; if(!confirm(Diaspora.I18n.t("ignore_user"))){
return;
}
var block = this.model.block(); var block = this.model.block();
block.fail(function() { block.fail(function() {
Diaspora.page.flashMessages.render({ app.flashMessages.error(Diaspora.I18n.t("ignore_failed"));
success: false,
notice: Diaspora.I18n.t('ignore_failed')
});
}); });
return false; return false;
@ -109,21 +116,18 @@ app.pages.Profile = app.views.Base.extend({
unblockPerson: function() { unblockPerson: function() {
var block = this.model.unblock(); var block = this.model.unblock();
block.fail(function() { block.fail(function() {
Diaspora.page.flashMessages.render({ app.flashMessages.error(Diaspora.I18.t("unblock_failed"));
success: false,
notice: Diaspora.I18.t('unblock_failed')
});
}); });
return false; return false;
}, },
reload: function() { reload: function() {
this.$('#profile').addClass('loading'); this.$("#profile").addClass("loading");
this.model.fetch(); this.model.fetch();
}, },
_done: function() { _done: function() {
this.$('#profile').removeClass('loading'); this.$("#profile").removeClass("loading");
} }
}); });
// @license-end // @license-end

View file

@ -105,16 +105,10 @@ app.views.Base = Backbone.View.extend({
var report = new app.models.Report(); var report = new app.models.Report();
report.save(data, { report.save(data, {
success: function() { success: function() {
Diaspora.page.flashMessages.render({ app.flashMessages.success(Diaspora.I18n.t("report.status.created"));
success: true,
notice: Diaspora.I18n.t('report.status.created')
});
}, },
error: function() { error: function() {
Diaspora.page.flashMessages.render({ app.flashMessages.error(Diaspora.I18n.t("report.status.exists"));
success: false,
notice: Diaspora.I18n.t('report.status.exists')
});
} }
}); });
}, },
@ -124,21 +118,17 @@ app.views.Base = Backbone.View.extend({
destroyModel: function(evt) { destroyModel: function(evt) {
evt && evt.preventDefault(); evt && evt.preventDefault();
var self = this; var self = this;
var url = this.model.urlRoot + '/' + this.model.id; var url = this.model.urlRoot + "/" + this.model.id;
if( confirm(_.result(this, "destroyConfirmMsg")) ) { if( confirm(_.result(this, "destroyConfirmMsg")) ) {
this.$el.addClass('deleting'); this.$el.addClass("deleting");
this.model.destroy({ url: url }) this.model.destroy({ url: url })
.done(function() { .done(function() {
self.remove(); self.remove();
}) })
.fail(function() { .fail(function() {
self.$el.removeClass('deleting'); self.$el.removeClass("deleting");
var flash = new Diaspora.Widgets.FlashMessages(); app.flashMessages.error(Diaspora.I18n.t("failed_to_remove"));
flash.render({
success: false,
notice: Diaspora.I18n.t('failed_to_remove')
});
}); });
} }
}, },

View file

@ -52,18 +52,12 @@ app.views.AspectCreate = app.views.Base.extend({
self.modal.modal("hide"); self.modal.modal("hide");
app.events.trigger("aspect:create", aspectId); app.events.trigger("aspect:create", aspectId);
Diaspora.page.flashMessages.render({ app.flashMessages.success(Diaspora.I18n.t("aspects.create.success", {"name": aspectName}));
"success": true,
"notice": Diaspora.I18n.t("aspects.create.success", {"name": aspectName})
});
}); });
aspect.on("error", function() { aspect.on("error", function() {
self.modal.modal("hide"); self.modal.modal("hide");
Diaspora.page.flashMessages.render({ app.flashMessages.error(Diaspora.I18n.t("aspects.create.failure"));
"success": false,
"notice": Diaspora.I18n.t("aspects.create.failure")
});
}); });
return aspect.save(); return aspect.save();
} }

View file

@ -89,7 +89,7 @@ app.views.AspectMembership = app.views.AspectsDropdown.extend({
if( this.dropdown.find("li.selected").length === 0 ) { if( this.dropdown.find("li.selected").length === 0 ) {
var msg = Diaspora.I18n.t("aspect_dropdown.started_sharing_with", { "name": this._name() }); var msg = Diaspora.I18n.t("aspect_dropdown.started_sharing_with", { "name": this._name() });
startSharing = true; startSharing = true;
Diaspora.page.flashMessages.render({ "success": true, "notice": msg }); app.flashMessages.success(msg);
} }
app.events.trigger("aspect_membership:create", { app.events.trigger("aspect_membership:create", {
@ -110,7 +110,7 @@ app.views.AspectMembership = app.views.AspectsDropdown.extend({
this.dropdown.closest('.aspect_membership_dropdown').removeClass('open'); // close the dropdown this.dropdown.closest('.aspect_membership_dropdown').removeClass('open'); // close the dropdown
var msg = Diaspora.I18n.t(msg_id, { 'name': this._name() }); var msg = Diaspora.I18n.t(msg_id, { 'name': this._name() });
Diaspora.page.flashMessages.render({ 'success':false, 'notice':msg }); app.flashMessages.error(msg);
}, },
// remove the membership with the given id // remove the membership with the given id
@ -143,7 +143,7 @@ app.views.AspectMembership = app.views.AspectsDropdown.extend({
if( this.dropdown.find("li.selected").length === 0 ) { if( this.dropdown.find("li.selected").length === 0 ) {
var msg = Diaspora.I18n.t("aspect_dropdown.stopped_sharing_with", { "name": this._name() }); var msg = Diaspora.I18n.t("aspect_dropdown.stopped_sharing_with", { "name": this._name() });
stopSharing = true; stopSharing = true;
Diaspora.page.flashMessages.render({ "success": true, "notice": msg }); app.flashMessages.success(msg);
} }
app.events.trigger("aspect_membership:destroy", { app.events.trigger("aspect_membership:destroy", {

View file

@ -19,7 +19,6 @@ app.views.Contact = app.views.Base.extend({
}, },
postRenderTemplate: function() { postRenderTemplate: function() {
var self = this;
var dropdownEl = this.$('.aspect_membership_dropdown.placeholder'); var dropdownEl = this.$('.aspect_membership_dropdown.placeholder');
if( dropdownEl.length === 0 ) { if( dropdownEl.length === 0 ) {
return; return;
@ -54,7 +53,7 @@ app.views.Contact = app.views.Base.extend({
}, },
error: function(){ error: function(){
var msg = Diaspora.I18n.t("contacts.error_add", { "name": self.model.get("person").name }); var msg = Diaspora.I18n.t("contacts.error_add", { "name": self.model.get("person").name });
Diaspora.page.flashMessages.render({ "success": false, "notice": msg }); app.flashMessages.error(msg);
} }
}); });
}, },
@ -78,7 +77,7 @@ app.views.Contact = app.views.Base.extend({
}, },
error: function(){ error: function(){
var msg = Diaspora.I18n.t("contacts.error_remove", { "name": self.model.get("person").name }); var msg = Diaspora.I18n.t("contacts.error_remove", { "name": self.model.get("person").name });
Diaspora.page.flashMessages.render({ "success": false, "notice": msg }); app.flashMessages.error(msg);
} }
}); });
} }

View file

@ -11,13 +11,13 @@ app.views.Feedback = app.views.Base.extend({
"click .post_report" : "report", "click .post_report" : "report",
"click .block_user" : "blockUser", "click .block_user" : "blockUser",
"click .hide_post" : "hidePost", "click .hide_post" : "hidePost"
}, },
tooltipSelector : ".label", tooltipSelector : ".label",
initialize : function() { initialize : function() {
this.model.interactions.on('change', this.render, this); this.model.interactions.on("change", this.render, this);
this.initViews && this.initViews(); // I don't know why this was failing with $.noop... :( this.initViews && this.initViews(); // I don't know why this was failing with $.noop... :(
}, },
@ -47,7 +47,7 @@ app.views.Feedback = app.views.Base.extend({
blockUser: function(evt) { blockUser: function(evt) {
if(evt) { evt.preventDefault(); } if(evt) { evt.preventDefault(); }
if(!confirm(Diaspora.I18n.t('ignore_user'))) { return; } if(!confirm(Diaspora.I18n.t("ignore_user"))) { return; }
this.model.blockAuthor() this.model.blockAuthor()
.done(function() { .done(function() {
@ -55,16 +55,13 @@ app.views.Feedback = app.views.Base.extend({
document.location.href = "/stream"; document.location.href = "/stream";
}) })
.fail(function() { .fail(function() {
Diaspora.page.flashMessages.render({ app.flashMessages.error(Diaspora.I18n.t("hide_post_failed"));
success: false,
notice: Diaspora.I18n.t('hide_post_failed')
});
}); });
}, },
hidePost : function(evt) { hidePost : function(evt) {
if(evt) { evt.preventDefault(); } if(evt) { evt.preventDefault(); }
if(!confirm(Diaspora.I18n.t('hide_post'))) { return; } if(!confirm(Diaspora.I18n.t("hide_post"))) { return; }
$.ajax({ $.ajax({
url : "/share_visibilities/42", url : "/share_visibilities/42",
@ -77,11 +74,8 @@ app.views.Feedback = app.views.Base.extend({
document.location.href = "/stream"; document.location.href = "/stream";
}) })
.fail(function() { .fail(function() {
Diaspora.page.flashMessages.render({ app.flashMessages.error(Diaspora.I18n.t("ignore_post_failed"));
success: false,
notice: Diaspora.I18n.t('ignore_post_failed')
});
}); });
}, }
}); });
// @license-end // @license-end

View file

@ -0,0 +1,20 @@
app.views.FlashMessages = app.views.Base.extend({
templateName: "flash_messages",
_flash: function(message, error){
this.presenter = {
message: message,
alertLevel: error ? "alert-danger" : "alert-success"
};
this.renderTemplate();
},
success: function(message){
this._flash(message, false);
},
error: function(message){
this._flash(message, true);
}
});

View file

@ -52,22 +52,15 @@ app.views.PodEntry = app.views.Base.extend({
}, },
recheckPod: function() { recheckPod: function() {
var self = this, var self = this;
flash = new Diaspora.Widgets.FlashMessages();
this.$el.addClass("checking"); this.$el.addClass("checking");
this.model.recheck() this.model.recheck()
.done(function(){ .done(function(){
flash.render({ app.flashMessages.success(Diaspora.I18n.t("admin.pods.recheck.success"));
success: true,
notice: Diaspora.I18n.t("admin.pods.recheck.success")
});
}) })
.fail(function(){ .fail(function(){
flash.render({ app.flashMessages.error(Diaspora.I18n.t("admin.pods.recheck.failure"));
success: false,
notice: Diaspora.I18n.t("admin.pods.recheck.failure")
});
}) })
.always(function(){ .always(function(){
self.$el self.$el

View file

@ -215,7 +215,7 @@ app.views.Publisher = Backbone.View.extend({
app.publisher.trigger("publisher:error"); app.publisher.trigger("publisher:error");
} }
self.setInputEnabled(true); self.setInputEnabled(true);
Diaspora.page.flashMessages.render({ "success":false, "notice":resp.responseText }); app.flashMessages.error(resp.responseText);
self.setButtonsEnabled(true); self.setButtonsEnabled(true);
self.setInputEnabled(true); self.setInputEnabled(true);
} }

View file

@ -1,7 +1,7 @@
app.views.SinglePostModeration = app.views.Feedback.extend({ app.views.SinglePostModeration = app.views.Feedback.extend({
templateName: "single-post-viewer/single-post-moderation", templateName: "single-post-viewer/single-post-moderation",
className: 'control-icons', className: "control-icons",
events: function() { events: function() {
return _.defaults({ return _.defaults({
@ -19,7 +19,7 @@ app.views.SinglePostModeration = app.views.Feedback.extend({
renderPluginWidgets : function() { renderPluginWidgets : function() {
app.views.Base.prototype.renderPluginWidgets.apply(this); app.views.Base.prototype.renderPluginWidgets.apply(this);
this.$('a').tooltip({placement: 'bottom'}); this.$("a").tooltip({placement: "bottom"});
}, },
authorIsCurrentUser: function() { authorIsCurrentUser: function() {
@ -28,7 +28,7 @@ app.views.SinglePostModeration = app.views.Feedback.extend({
destroyModel: function(evt) { destroyModel: function(evt) {
if(evt) { evt.preventDefault(); } if(evt) { evt.preventDefault(); }
var url = this.model.urlRoot + '/' + this.model.id; var url = this.model.urlRoot + "/" + this.model.id;
if (confirm(Diaspora.I18n.t("remove_post"))) { if (confirm(Diaspora.I18n.t("remove_post"))) {
this.model.destroy({ url: url }) this.model.destroy({ url: url })
@ -37,11 +37,7 @@ app.views.SinglePostModeration = app.views.Feedback.extend({
document.location.href = "/stream"; document.location.href = "/stream";
}) })
.fail(function() { .fail(function() {
var flash = new Diaspora.Widgets.FlashMessages(); app.flashMessages.error(Diaspora.I18n.t("failed_to_remove"));
flash.render({
success: false,
notice: Diaspora.I18n.t('failed_to_remove')
});
}); });
} }
}, },

View file

@ -39,10 +39,10 @@ app.views.StreamPost = app.views.Post.extend({
".permalink"].join(", "), ".permalink"].join(", "),
initialize : function(){ initialize : function(){
var personId = this.model.get('author').id; var personId = this.model.get("author").id;
app.events.on('person:block:'+personId, this.remove, this); app.events.on("person:block:"+personId, this.remove, this);
this.model.on('remove', this.remove, this); this.model.on("remove", this.remove, this);
//subviews //subviews
this.commentStreamView = new app.views.CommentStream({model : this.model}); this.commentStreamView = new app.views.CommentStream({model : this.model});
this.oEmbedView = new app.views.OEmbed({model : this.model}); this.oEmbedView = new app.views.OEmbed({model : this.model});
@ -85,14 +85,11 @@ app.views.StreamPost = app.views.Post.extend({
blockUser: function(evt){ blockUser: function(evt){
if(evt) { evt.preventDefault(); } if(evt) { evt.preventDefault(); }
if(!confirm(Diaspora.I18n.t('ignore_user'))) { return } if(!confirm(Diaspora.I18n.t("ignore_user"))) { return }
this.model.blockAuthor() this.model.blockAuthor()
.fail(function() { .fail(function() {
Diaspora.page.flashMessages.render({ app.flashMessages.error(Diaspora.I18n.t("ignore_failed"));
success: false,
notice: Diaspora.I18n.t('ignore_failed')
});
}); });
}, },
@ -104,7 +101,7 @@ app.views.StreamPost = app.views.Post.extend({
hidePost : function(evt) { hidePost : function(evt) {
if(evt) { evt.preventDefault(); } if(evt) { evt.preventDefault(); }
if(!confirm(Diaspora.I18n.t('confirm_dialog'))) { return } if(!confirm(Diaspora.I18n.t("confirm_dialog"))) { return }
var self = this; var self = this;
$.ajax({ $.ajax({
@ -117,10 +114,7 @@ app.views.StreamPost = app.views.Post.extend({
self.remove(); self.remove();
}) })
.fail(function() { .fail(function() {
Diaspora.page.flashMessages.render({ app.flashMessages.error(Diaspora.I18n.t("hide_post_failed"));
success: false,
notice: Diaspora.I18n.t('hide_post_failed')
});
}); });
}, },

View file

@ -70,7 +70,6 @@
$.extend(this, { $.extend(this, {
directionDetector: this.instantiate("DirectionDetector"), directionDetector: this.instantiate("DirectionDetector"),
events: function() { return Diaspora.page.eventsContainer.data("events"); }, events: function() { return Diaspora.page.eventsContainer.data("events"); },
flashMessages: this.instantiate("FlashMessages"),
header: this.instantiate("Header", body.find("header")), header: this.instantiate("Header", body.find("header")),
timeAgo: this.instantiate("TimeAgo") timeAgo: this.instantiate("TimeAgo")
}); });

View file

@ -18,7 +18,7 @@ Diaspora.Pages.UsersGettingStarted = function() {
/* flash message prompt */ /* flash message prompt */
var message = Diaspora.I18n.t("getting_started.hey", {'name': $("#profile_first_name").val()}); var message = Diaspora.I18n.t("getting_started.hey", {'name': $("#profile_first_name").val()});
Diaspora.page.flashMessages.render({success: true, notice: message}); app.flashMessages.success(message);
}); });
$("#profile_first_name").bind("change", function(){ $("#profile_first_name").bind("change", function(){
@ -45,7 +45,7 @@ Diaspora.Pages.UsersGettingStarted = function() {
confirmation = confirm(confirmMessage); confirmation = confirm(confirmMessage);
} }
Diaspora.page.flashMessages.render({success: true, notice: message}); app.flashMessages.success(message);
return confirmation; return confirmation;
}); });
@ -66,7 +66,7 @@ Diaspora.Pages.UsersGettingStarted = function() {
startText: "", startText: "",
emptyText: "no_results", emptyText: "no_results",
selectionAdded: function(elem){tagFollowings.create({"name":$(elem[0]).text().substring(2)})}, selectionAdded: function(elem){tagFollowings.create({"name":$(elem[0]).text().substring(2)})},
selectionRemoved: function(elem){ selectionRemoved: function(elem){
tagFollowings.where({"name":$(elem[0]).text().substring(2)})[0].destroy(); tagFollowings.where({"name":$(elem[0]).text().substring(2)})[0].destroy();
elem.remove(); elem.remove();
} }

View file

@ -1,38 +0,0 @@
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL-v3-or-Later
(function() {
var FlashMessages = function() {
var self = this;
this.subscribe("widget/ready", function() {
self.animateMessages();
});
this.animateMessages = function() {
self.flashMessages().addClass("expose").delay(8000).fadeTo(200, 0.5);
};
this.render = function(result) {
self.flashMessages().removeClass("expose").remove();
$("<div/>", {
id: result.success ? "flash_notice" : "flash_error"
})
.html($("<div/>", {
'class': "message"
})
.text(result.notice))
.prependTo(document.body);
self.animateMessages();
};
this.flashMessages = function() {
return $("#flash_notice, #flash_error, #flash_alert");
};
};
Diaspora.Widgets.FlashMessages = FlashMessages;
})();
// @license-end

View file

@ -1,50 +1,22 @@
#flash_notice, .flash-body {
#flash_alert, left: 0;
#flash_error { position: fixed;
position : fixed; text-align: center;
top: -100px;
z-index: 999; z-index: 999;
top : -100px; width: 100%;
left : 0; &.expose { @include animation(expose, 10s) }
width : 100%;
text-align : center; .flash-message {
color: $text-dark-grey; border-radius: 0;
&.expose {
@include animation(expose, 10s)
}
.message {
box-shadow: 0 1px 4px rgba(0,0,0,0.8); box-shadow: 0 1px 4px rgba(0,0,0,0.8);
display: inline-block;
display : inline-block;
padding: 10px 12px;
min-width: 400px;
max-width: 800px;
color : #fff;
background-color : rgba(0,0,0,0.8);
border : 1px solid rgba(255,255,255,0.7);
border-radius: 6px;
font-weight: bold; font-weight: bold;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; max-width: 800px;
font-size: 13px; min-width: 500px;
} padding: 10px 12px;
} &.alert-danger { border: 1px solid darken($state-danger-bg, 10%); }
&.alert-succes { border: 1px solid darken($state-success-bg, 10%); }
#flash_notice { &.alert-warning { border: 1px solid darken($state-warning-bg, 10%); }
.message {
color: $text-dark-grey;
background-color: #F4F899;
border-color: darken(#F4F899, 40%);
}
}
#flash_error,
#flash_alert {
.message {
background-color: #CA410B;
border-color: darken(#CA410B, 10%);
} }
} }

View file

@ -1,8 +1,8 @@
// flash message animations - header height is about 50px // flash message animations - header height is about 50px
@keyframes expose { @keyframes expose {
0% { top: -100px; } 0% { top: -100px; }
15% { top: 44px; } 12% { top: 50px; }
85% { top: 44px; } 88% { top: 50px; }
100% { top: -100px; } 100% { top: -100px; }
} }

View file

@ -35,10 +35,6 @@ h3 { margin-top: 0; }
.clear { clear: both; } .clear { clear: both; }
#main { padding: 56px 10px 0 10px; } #main { padding: 56px 10px 0 10px; }
.message {
padding-left: 2px;
}
.avatar { .avatar {
border-radius: 4px; border-radius: 4px;
} }

View file

@ -0,0 +1,5 @@
<div class="flash-body expose">
<div class="flash-message alert {{ alertLevel }}">
{{ message }}
</div>
</div>

View file

@ -67,8 +67,9 @@ module LayoutHelper
def flash_messages def flash_messages
flash.map do |name, msg| flash.map do |name, msg|
content_tag(:div, :id => "flash_#{name}") do klass = flash_class name
content_tag(:div, msg, :class => 'message') content_tag(:div, msg, class: "flash-body expose") do
content_tag(:div, msg, class: "flash-message message alert alert-#{klass}")
end end
end.join(' ').html_safe end.join(' ').html_safe
end end

View file

@ -1,6 +1,6 @@
module SessionsHelper module SessionsHelper
def prefilled_username def prefilled_username
uri = Addressable::URI.parse(session['user_return_to']) uri = Addressable::URI.parse(session["user_return_to"])
if uri && uri.query_values if uri && uri.query_values
uri.query_values["username"] uri.query_values["username"]
else else
@ -9,10 +9,14 @@ module SessionsHelper
end end
def display_registration_link? def display_registration_link?
AppConfig.settings.enable_registrations? && devise_mapping.registerable? && controller_name != 'registrations' AppConfig.settings.enable_registrations? && devise_mapping.registerable? && controller_name != "registrations"
end end
def display_password_reset_link? def display_password_reset_link?
devise_mapping.recoverable? && controller_name != 'passwords' devise_mapping.recoverable? && controller_name != "passwords"
end
def flash_class(name)
{notice: "success", alert: "danger", error: "danger"}[name.to_sym]
end end
end end

View file

@ -2,7 +2,7 @@ var response = <%= raw @response.to_json %>;
<% if session[:mobile_view] %> <% if session[:mobile_view] %>
window.location.href = "<%= conversations_path(conversation_id: @conversation.id) %>"; window.location.href = "<%= conversations_path(conversation_id: @conversation.id) %>";
<% else %> <% else %>
Diaspora.page.flashMessages.render({ 'success':response.success, 'notice':response.message }); app.flashMessages._flash(response.message, response.success);
if(response.success){ if(response.success){
$("#new_conversation").removeClass('form_do_not_clear').clearForm(); $("#new_conversation").removeClass('form_do_not_clear').clearForm();
window.location.href = "<%= conversations_path(conversation_id: @conversation.id) %>"; window.location.href = "<%= conversations_path(conversation_id: @conversation.id) %>";

View file

@ -47,8 +47,6 @@
= include_gon(camel_case: true) = include_gon(camel_case: true)
%body{ class: "page-#{controller_name} action-#{action_name}" } %body{ class: "page-#{controller_name} action-#{action_name}" }
= flash_messages
= yield :before_content = yield :before_content
= content_for?(:content) ? yield(:content) : yield = content_for?(:content) ? yield(:content) : yield
@ -69,3 +67,5 @@
.entypo-cross .entypo-cross
%a.play-pause %a.play-pause
%ol.indicator %ol.indicator
#flash-container= flash_messages

View file

@ -38,7 +38,7 @@
/* flash message prompt */ /* flash message prompt */
var message = Diaspora.I18n.t("photo_uploader.looking_good"); var message = Diaspora.I18n.t("photo_uploader.looking_good");
Diaspora.page.flashMessages.render({success: true, notice: message}); app.flashMessages.success(message);
var id = responseJSON.data.photo.id; var id = responseJSON.data.photo.id;
var url = responseJSON.data.photo.unprocessed_image.url; var url = responseJSON.data.photo.unprocessed_image.url;

View file

@ -9,10 +9,8 @@
#main_stream.stream #main_stream.stream
- flash.each do |name, msg| - flash.each do |name, msg|
%p{class: "login_#{name}"} .expose#flash-container
= msg .flash-message{class: "message alert alert-#{flash_class name}"}
#flash_alert.expose
#session.message
= msg = msg
#login_form #login_form

View file

@ -1,3 +1,3 @@
var tagName = "<%= escape_javascript(@tag.name) %>" var tagName = "<%= escape_javascript(@tag.name) %>"
$("#followed_tags_listing").find("#tag-following-"+tagName).slideUp(100); $("#followed_tags_listing").find("#tag-following-"+tagName).slideUp(100);
Diaspora.page.flashMessages.render({success: true, notice: Diaspora.I18n.t("tags.wasnt_that_interesting", {tagName: tagName})}); app.flashMessages.success(Diaspora.I18n.t("tags.wasnt_that_interesting", {tagName: tagName}));

View file

@ -1,14 +1,14 @@
module ApplicationCukeHelpers module ApplicationCukeHelpers
def flash_message_success? def flash_message_success?
flash_message(selector: "notice").visible? flash_message(selector: "success").visible?
end end
def flash_message_failure? def flash_message_failure?
flash_message(selector: "error").visible? flash_message(selector: "danger").visible?
end end
def flash_message_alert? def flash_message_alert?
flash_message(selector: "alert").visible? flash_message(selector: "danger").visible?
end end
def flash_message_containing?(text) def flash_message_containing?(text)
@ -17,8 +17,8 @@ module ApplicationCukeHelpers
def flash_message(opts={}) def flash_message(opts={})
selector = opts.delete(:selector) selector = opts.delete(:selector)
selector &&= "#flash_#{selector}" selector &&= ".alert-#{selector}"
find(selector || '.message', {match: :first}.merge(opts)) find(selector || ".flash-message", {match: :first}.merge(opts))
end end
def confirm_form_validation_error(element) def confirm_form_validation_error(element)
@ -27,8 +27,8 @@ module ApplicationCukeHelpers
end end
def check_fields_validation_error(field_list) def check_fields_validation_error(field_list)
field_list.split(',').each do |f| field_list.split(",").each do |f|
confirm_form_validation_error('input#'+f.strip) confirm_form_validation_error("input##{f.strip}")
end end
end end

View file

@ -62,6 +62,8 @@ describe("app.views.AspectCreate", function() {
describe("#createAspect", function() { describe("#createAspect", function() {
beforeEach(function() { beforeEach(function() {
this.view.render(); this.view.render();
this.view.$el.append($("<div id='flash-container'/>"));
app.flashMessages = new app.views.FlashMessages({ el: this.view.$("#flash-container") });
}); });
it("should send the correct name to the server", function() { it("should send the correct name to the server", function() {
@ -115,7 +117,7 @@ describe("app.views.AspectCreate", function() {
it("should display a flash message", function() { it("should display a flash message", function() {
this.view.createAspect(); this.view.createAspect();
jasmine.Ajax.requests.mostRecent().respondWith(this.response); jasmine.Ajax.requests.mostRecent().respondWith(this.response);
expect($("[id^=\"flash\"]")).toBeSuccessFlashMessage( expect(this.view.$(".flash-message")).toBeSuccessFlashMessage(
Diaspora.I18n.t("aspects.create.success", {name: "new name"}) Diaspora.I18n.t("aspects.create.success", {name: "new name"})
); );
}); });
@ -138,7 +140,7 @@ describe("app.views.AspectCreate", function() {
it("should display a flash message", function() { it("should display a flash message", function() {
this.view.createAspect(); this.view.createAspect();
jasmine.Ajax.requests.mostRecent().respondWith(this.response); jasmine.Ajax.requests.mostRecent().respondWith(this.response);
expect($("[id^=\"flash\"]")).toBeErrorFlashMessage( expect(this.view.$(".flash-message")).toBeErrorFlashMessage(
Diaspora.I18n.t("aspects.create.failure") Diaspora.I18n.t("aspects.create.failure")
); );
}); });

View file

@ -6,6 +6,8 @@ describe("app.views.AspectMembership", function(){
// mock a dummy aspect dropdown // mock a dummy aspect dropdown
spec.loadFixture("aspect_membership_dropdown"); spec.loadFixture("aspect_membership_dropdown");
this.view = new app.views.AspectMembership({el: $('.aspect_membership_dropdown')}); this.view = new app.views.AspectMembership({el: $('.aspect_membership_dropdown')});
this.view.$el.append($("<div id='flash-container'/>"));
app.flashMessages = new app.views.FlashMessages({ el: this.view.$("#flash-container") });
this.personId = $(".dropdown-menu").data("person_id"); this.personId = $(".dropdown-menu").data("person_id");
this.personName = $(".dropdown-menu").data("person-short-name"); this.personName = $(".dropdown-menu").data("person-short-name");
Diaspora.I18n.load({ Diaspora.I18n.load({
@ -36,7 +38,7 @@ describe("app.views.AspectMembership", function(){
this.newAspect.trigger('click'); this.newAspect.trigger('click');
jasmine.Ajax.requests.mostRecent().respondWith(success); jasmine.Ajax.requests.mostRecent().respondWith(success);
expect($('[id^="flash"]')).toBeSuccessFlashMessage( expect(this.view.$(".flash-message")).toBeSuccessFlashMessage(
Diaspora.I18n.t("aspect_dropdown.started_sharing_with", {name: this.personName}) Diaspora.I18n.t("aspect_dropdown.started_sharing_with", {name: this.personName})
); );
}); });
@ -56,7 +58,7 @@ describe("app.views.AspectMembership", function(){
this.newAspect.trigger('click'); this.newAspect.trigger('click');
jasmine.Ajax.requests.mostRecent().respondWith(resp_fail); jasmine.Ajax.requests.mostRecent().respondWith(resp_fail);
expect($('[id^="flash"]')).toBeErrorFlashMessage( expect(this.view.$(".flash-message")).toBeErrorFlashMessage(
Diaspora.I18n.t("aspect_dropdown.error", {name: this.personName}) Diaspora.I18n.t("aspect_dropdown.error", {name: this.personName})
); );
}); });
@ -80,7 +82,7 @@ describe("app.views.AspectMembership", function(){
this.oldAspect.trigger('click'); this.oldAspect.trigger('click');
jasmine.Ajax.requests.mostRecent().respondWith(success); jasmine.Ajax.requests.mostRecent().respondWith(success);
expect($('[id^="flash"]')).toBeSuccessFlashMessage( expect(this.view.$(".flash-message")).toBeSuccessFlashMessage(
Diaspora.I18n.t("aspect_dropdown.stopped_sharing_with", {name: this.personName}) Diaspora.I18n.t("aspect_dropdown.stopped_sharing_with", {name: this.personName})
); );
}); });
@ -100,7 +102,7 @@ describe("app.views.AspectMembership", function(){
this.oldAspect.trigger('click'); this.oldAspect.trigger('click');
jasmine.Ajax.requests.mostRecent().respondWith(resp_fail); jasmine.Ajax.requests.mostRecent().respondWith(resp_fail);
expect($('[id^="flash"]')).toBeErrorFlashMessage( expect(this.view.$(".flash-message")).toBeErrorFlashMessage(
Diaspora.I18n.t("aspect_dropdown.error_remove", {name: this.personName}) Diaspora.I18n.t("aspect_dropdown.error_remove", {name: this.personName})
); );
}); });

View file

@ -32,6 +32,8 @@ describe("app.views.CommentStream", function(){
describe("createComment", function() { describe("createComment", function() {
beforeEach(function() { beforeEach(function() {
this.view.render(); this.view.render();
this.view.$el.append($("<div id='flash-container'/>"));
app.flashMessages = new app.views.FlashMessages({ el: this.view.$("#flash-container") });
this.view.expandComments(); this.view.expandComments();
}); });
@ -59,7 +61,7 @@ describe("app.views.CommentStream", function(){
this.request.respondWith({status: 500}); this.request.respondWith({status: 500});
expect(this.view.$(".comment-content p").text()).not.toEqual("a new comment"); expect(this.view.$(".comment-content p").text()).not.toEqual("a new comment");
expect($('*[id^="flash"]')).toBeErrorFlashMessage("posting failed!"); expect(this.view.$(".flash-message")).toBeErrorFlashMessage("posting failed!");
}); });
}); });

View file

@ -5,7 +5,7 @@ describe("app.views.Contact", function(){
this.model = new app.models.Contact({ this.model = new app.models.Contact({
person_id: 42, person_id: 42,
person: { id: 42, name: 'alice' }, person: { id: 42, name: "alice" },
aspect_memberships: [{id: 23, aspect: this.aspect1}] aspect_memberships: [{id: 23, aspect: this.aspect1}]
}); });
this.view = new app.views.Contact({ model: this.model }); this.view = new app.views.Contact({ model: this.model });
@ -24,32 +24,34 @@ describe("app.views.Contact", function(){
app.aspect = this.aspect1; app.aspect = this.aspect1;
expect(this.view.presenter()).toEqual(jasmine.objectContaining({ expect(this.view.presenter()).toEqual(jasmine.objectContaining({
person_id: 42, person_id: 42,
person: jasmine.objectContaining({id: 42, name: 'alice'}), person: jasmine.objectContaining({id: 42, name: "alice"}),
in_aspect: 'in_aspect' in_aspect: 'in_aspect'
})); }));
}); });
}); });
context('add contact to aspect', function() { context("add contact to aspect", function() {
beforeEach(function() { beforeEach(function() {
app.aspect = this.aspect2; app.aspect = this.aspect2;
this.view.render(); this.view.render();
this.button = this.view.$el.find('.contact_add-to-aspect'); this.view.$el.append($("<div id='flash-container'/>"));
this.contact = this.view.$el.find('.stream_element.contact'); app.flashMessages = new app.views.FlashMessages({ el: this.view.$("#flash-container") });
this.button = this.view.$el.find(".contact_add-to-aspect");
this.contact = this.view.$el.find(".stream_element.contact");
this.aspectMembership = {id: 42, aspect: app.aspect.toJSON()}; this.aspectMembership = {id: 42, aspect: app.aspect.toJSON()};
this.response = JSON.stringify(this.aspectMembership); this.response = JSON.stringify(this.aspectMembership);
}); });
it('sends a correct ajax request', function() { it("sends a correct ajax request", function() {
this.button.trigger('click'); this.button.trigger("click");
var obj = $.parseJSON(jasmine.Ajax.requests.mostRecent().params); var obj = $.parseJSON(jasmine.Ajax.requests.mostRecent().params);
expect(obj.person_id).toBe(this.model.get('person_id')); expect(obj.person_id).toBe(this.model.get('person_id'));
expect(obj.aspect_id).toBe(app.aspect.get('id')); expect(obj.aspect_id).toBe(app.aspect.get('id'));
}); });
it('adds a aspect_membership to the contact', function() { it("adds a aspect_membership to the contact", function() {
expect(this.model.aspectMemberships.length).toBe(1); expect(this.model.aspectMemberships.length).toBe(1);
$('.contact_add-to-aspect',this.contact).trigger('click'); $(".contact_add-to-aspect",this.contact).trigger("click");
jasmine.Ajax.requests.mostRecent().respondWith({ jasmine.Ajax.requests.mostRecent().respondWith({
status: 200, // success status: 200, // success
responseText: this.response responseText: this.response
@ -70,9 +72,9 @@ describe("app.views.Contact", function(){
}); });
}); });
it('calls render', function() { it("calls render", function() {
spyOn(this.view, 'render'); spyOn(this.view, "render");
$('.contact_add-to-aspect',this.contact).trigger('click'); $(".contact_add-to-aspect",this.contact).trigger("click");
jasmine.Ajax.requests.mostRecent().respondWith({ jasmine.Ajax.requests.mostRecent().respondWith({
status: 200, // success status: 200, // success
responseText: this.response responseText: this.response
@ -81,40 +83,39 @@ describe("app.views.Contact", function(){
}); });
it('displays a flash message on errors', function(){ it("displays a flash message on errors", function(){
$('.contact_add-to-aspect',this.contact).trigger('click'); $(".contact_add-to-aspect",this.contact).trigger("click");
jasmine.Ajax.requests.mostRecent().respondWith({ jasmine.Ajax.requests.mostRecent().respondWith({
status: 400, // fail status: 400 // fail
}); });
expect($('[id^="flash"]')).toBeErrorFlashMessage( expect(this.view.$(".flash-message")).toBeErrorFlashMessage(
Diaspora.I18n.t( Diaspora.I18n.t( "contacts.error_add", {name: this.model.get("person").name} )
'contacts.error_add',
{name: this.model.get('person').name}
)
); );
}); });
}); });
context('remove contact from aspect', function() { context("remove contact from aspect", function() {
beforeEach(function() { beforeEach(function() {
app.aspect = this.aspect1; app.aspect = this.aspect1;
this.view.render(); this.view.render();
this.button = this.view.$el.find('.contact_remove-from-aspect'); this.view.$el.append($("<div id='flash-container'/>"));
this.contact = this.view.$el.find('.stream_element.contact'); app.flashMessages = new app.views.FlashMessages({ el: this.view.$("#flash-container") });
this.button = this.view.$el.find(".contact_remove-from-aspect");
this.contact = this.view.$el.find(".stream_element.contact");
this.aspectMembership = this.model.aspectMemberships.first().toJSON(); this.aspectMembership = this.model.aspectMemberships.first().toJSON();
this.response = JSON.stringify(this.aspectMembership); this.response = JSON.stringify(this.aspectMembership);
}); });
it('sends a correct ajax request', function() { it("sends a correct ajax request", function() {
$('.contact_remove-from-aspect',this.contact).trigger('click'); $(".contact_remove-from-aspect",this.contact).trigger("click");
expect(jasmine.Ajax.requests.mostRecent().url).toBe( expect(jasmine.Ajax.requests.mostRecent().url).toBe(
"/aspect_memberships/"+this.aspectMembership.id "/aspect_memberships/"+this.aspectMembership.id
); );
}); });
it('removes the aspect_membership from the contact', function() { it("removes the aspect_membership from the contact", function() {
expect(this.model.aspectMemberships.length).toBe(1); expect(this.model.aspectMemberships.length).toBe(1);
$('.contact_remove-from-aspect',this.contact).trigger('click'); $(".contact_remove-from-aspect",this.contact).trigger("click");
jasmine.Ajax.requests.mostRecent().respondWith({ jasmine.Ajax.requests.mostRecent().respondWith({
status: 200, // success status: 200, // success
responseText: this.response responseText: this.response
@ -135,9 +136,9 @@ describe("app.views.Contact", function(){
}); });
}); });
it('calls render', function() { it("calls render", function() {
spyOn(this.view, 'render'); spyOn(this.view, "render");
$('.contact_remove-from-aspect',this.contact).trigger('click'); $(".contact_remove-from-aspect",this.contact).trigger("click");
jasmine.Ajax.requests.mostRecent().respondWith({ jasmine.Ajax.requests.mostRecent().respondWith({
status: 200, // success status: 200, // success
responseText: this.response, responseText: this.response,
@ -145,16 +146,13 @@ describe("app.views.Contact", function(){
expect(this.view.render).toHaveBeenCalled(); expect(this.view.render).toHaveBeenCalled();
}); });
it('displays a flash message on errors', function(){ it("displays a flash message on errors", function(){
$('.contact_remove-from-aspect',this.contact).trigger('click'); $(".contact_remove-from-aspect",this.contact).trigger("click");
jasmine.Ajax.requests.mostRecent().respondWith({ jasmine.Ajax.requests.mostRecent().respondWith({
status: 400, // fail status: 400 // fail
}); });
expect($('[id^="flash"]')).toBeErrorFlashMessage( expect(this.view.$(".flash-message")).toBeErrorFlashMessage(
Diaspora.I18n.t( Diaspora.I18n.t( "contacts.error_remove", {name: this.model.get("person").name})
'contacts.error_remove',
{name: this.model.get('person').name}
)
); );
}); });
}); });

View file

@ -4,8 +4,8 @@ describe("app.views.Conversations", function(){
beforeEach(function() { beforeEach(function() {
spec.loadFixture("conversations_unread"); spec.loadFixture("conversations_unread");
// select second conversation that is still unread // select second conversation that is still unread
$(".conversation-wrapper > .conversation.selected").removeClass("selected") $(".conversation-wrapper > .conversation.selected").removeClass("selected");
$(".conversation-wrapper > .conversation.unread").addClass("selected") $(".conversation-wrapper > .conversation.unread").addClass("selected");
}); });
it("removes the unread class from the conversation", function() { it("removes the unread class from the conversation", function() {

View file

@ -0,0 +1,33 @@
describe("app.views.FlashMessages", function(){
var flashMessages = new app.views.FlashMessages();
describe("flash", function(){
it("call _flash with correct parameters", function() {
spyOn(flashMessages, "_flash");
flashMessages.success("success!");
expect(flashMessages._flash).toHaveBeenCalledWith("success!", false);
flashMessages.error("error!");
expect(flashMessages._flash).toHaveBeenCalledWith("error!", true);
});
});
describe("render", function(){
beforeEach(function(){
spec.content().html("<div class='flash-container'/>");
flashMessages = new app.views.FlashMessages({ el: $(".flash-container") });
});
it("renders a success message", function(){
flashMessages.success("success!");
expect(flashMessages.$(".flash-body")).toHaveClass("expose");
expect($(".flash-message")).toHaveClass("alert-success");
expect($(".flash-message").text().trim()).toBe("success!");
});
it("renders an error message", function(){
flashMessages.error("error!");
expect(flashMessages.$(".flash-body")).toHaveClass("expose");
expect($(".flash-message")).toHaveClass("alert-danger");
expect($(".flash-message").text().trim()).toBe("error!");
});
});
});

View file

@ -57,6 +57,11 @@ describe("app.views.PodEntry", function() {
describe("recheckPod", function() { describe("recheckPod", function() {
var ajaxSuccess = { status: 200, responseText: "{}" }; var ajaxSuccess = { status: 200, responseText: "{}" };
var ajaxFail = { status: 400 }; var ajaxFail = { status: 400 };
beforeEach(function(){
this.view.render();
this.view.$el.append($("<div id='flash-container'/>"));
app.flashMessages = new app.views.FlashMessages({ el: this.view.$("#flash-container") });
});
it("calls .recheck() on the model", function() { it("calls .recheck() on the model", function() {
spyOn(this.pod, "recheck").and.returnValue($.Deferred()); spyOn(this.pod, "recheck").and.returnValue($.Deferred());
@ -67,13 +72,13 @@ describe("app.views.PodEntry", function() {
it("renders a success flash message", function() { it("renders a success flash message", function() {
this.view.recheckPod(); this.view.recheckPod();
jasmine.Ajax.requests.mostRecent().respondWith(ajaxSuccess); jasmine.Ajax.requests.mostRecent().respondWith(ajaxSuccess);
expect($("[id^=\"flash\"]")).toBeSuccessFlashMessage(); expect(this.view.$(".flash-message")).toBeSuccessFlashMessage();
}); });
it("renders an error flash message", function() { it("renders an error flash message", function() {
this.view.recheckPod(); this.view.recheckPod();
jasmine.Ajax.requests.mostRecent().respondWith(ajaxFail); jasmine.Ajax.requests.mostRecent().respondWith(ajaxFail);
expect($("[id^=\"flash\"]")).toBeErrorFlashMessage(); expect(this.view.$(".flash-message")).toBeErrorFlashMessage();
}); });
it("sets the appropriate CSS class", function() { it("sets the appropriate CSS class", function() {

View file

@ -3,15 +3,12 @@
var realXMLHttpRequest = window.XMLHttpRequest; var realXMLHttpRequest = window.XMLHttpRequest;
// matches flash messages with success/error and contained text // matches flash messages with success/error and contained text
var flashMatcher = function(flash, id, text) { var flashMatcher = function(flash, klass, text) {
var textContained = true; var textContained = true;
if( text ) { if(text) {
textContained = (flash.text().indexOf(text) !== -1); textContained = (flash.text().trim().indexOf(text) !== -1);
} }
return flash.hasClass(klass) && flash.parent().hasClass("expose") && textContained;
return flash.is(id) &&
flash.hasClass('expose') &&
textContained;
}; };
// information for jshint // information for jshint
@ -24,7 +21,7 @@ var customMatchers = {
return { return {
compare: function(actual, expected) { compare: function(actual, expected) {
var result = {}; var result = {};
result.pass = flashMatcher(actual, '#flash_notice', expected); result.pass = flashMatcher(actual, "alert-success", expected);
return result; return result;
} }
}; };
@ -33,7 +30,7 @@ var customMatchers = {
return { return {
compare: function(actual, expected) { compare: function(actual, expected) {
var result = {}; var result = {};
result.pass = flashMatcher(actual, '#flash_error', expected); result.pass = flashMatcher(actual, "alert-danger", expected);
return result; return result;
} }
}; };
@ -55,7 +52,7 @@ beforeEach(function() {
var Page = Diaspora.Pages["TestPage"]; var Page = Diaspora.Pages["TestPage"];
$.extend(Page.prototype, Diaspora.EventBroker.extend(Diaspora.BaseWidget)); $.extend(Page.prototype, Diaspora.EventBroker.extend(Diaspora.BaseWidget));
Diaspora.I18n.load({}, 'en', {}); Diaspora.I18n.load({}, "en", {});
Diaspora.page = new Page(); Diaspora.page = new Page();
Diaspora.page.publish("page/ready", [$(document.body)]); Diaspora.page.publish("page/ready", [$(document.body)]);
@ -147,12 +144,12 @@ spec.clearLiveEventBindings = function() {
}; };
spec.content = function() { spec.content = function() {
return $('#jasmine_content'); return $("#jasmine_content");
}; };
// Loads fixure markup into the DOM as a child of the jasmine_content div // Loads fixure markup into the DOM as a child of the jasmine_content div
spec.loadFixture = function(fixtureName) { spec.loadFixture = function(fixtureName) {
var $destination = $('#jasmine_content'); var $destination = $("#jasmine_content");
// get the markup, inject it into the dom // get the markup, inject it into the dom
$destination.html(spec.fixtureHtml(fixtureName)); $destination.html(spec.fixtureHtml(fixtureName));
@ -179,7 +176,7 @@ spec.fixtureHtml = function(fixtureName) {
spec.retrieveFixture = function(fixtureName) { spec.retrieveFixture = function(fixtureName) {
// construct a path to the fixture, including a cache-busting timestamp // construct a path to the fixture, including a cache-busting timestamp
var path = '/tmp/js_dom_fixtures/' + fixtureName + ".fixture.html?" + new Date().getTime(); var path = "/tmp/js_dom_fixtures/" + fixtureName + ".fixture.html?" + new Date().getTime();
var xhr; var xhr;
// retrieve the fixture markup via xhr request to jasmine server // retrieve the fixture markup via xhr request to jasmine server

View file

@ -1,36 +0,0 @@
describe("Diaspora", function() {
describe("Widgets", function() {
describe("FlashMessages", function() {
var flashMessages;
describe("animateMessages", function() {
beforeEach(function() {
flashMessages = Diaspora.BaseWidget.instantiate("FlashMessages");
$("#jasmine_content").html(
'<div id="flash_notice">' +
'flash message' +
'</div>'
);
});
it("is called when the DOM is ready", function() {
spyOn(flashMessages, "animateMessages").and.callThrough();
flashMessages.publish("widget/ready");
expect(flashMessages.animateMessages).toHaveBeenCalled();
});
});
describe("render", function() {
it("creates a new div for the message and calls flashes.animateMessages", function() {
spyOn(flashMessages, "animateMessages");
flashMessages.render({
success: true,
message: "success!"
});
expect($("#flash_notice").length).toEqual(1);
expect(flashMessages.animateMessages).toHaveBeenCalled();
});
});
});
});
});