mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-12 04:23:19 +00:00
Add global register feature
Tweak admin field app Fix typo Tweaks Fix typo
This commit is contained in:

committed by
Romain Neutron

parent
9a9235a15e
commit
0539db7598
38
www/scripts/apps/admin/fields/views/fieldError.js
Normal file
38
www/scripts/apps/admin/fields/views/fieldError.js
Normal file
@@ -0,0 +1,38 @@
|
||||
define([
|
||||
"jquery",
|
||||
"underscore",
|
||||
"backbone",
|
||||
"i18n"
|
||||
], function($, _, Backbone, i18n) {
|
||||
var FieldErrorView = Backbone.View.extend({
|
||||
initialize: function() {
|
||||
AdminFieldApp.errorManager.on("add-error", this.render, this);
|
||||
AdminFieldApp.errorManager.on("remove-error", this.render, this);
|
||||
},
|
||||
render: function() {
|
||||
var messages = [];
|
||||
var errors = AdminFieldApp.errorManager.all();
|
||||
|
||||
_.each(_.groupBy(errors, function(error) {
|
||||
return error.model.get("name");
|
||||
}), function(groupedErrors) {
|
||||
_.each(groupedErrors, function(error) {
|
||||
messages.push(i18n.t("field_error", {
|
||||
postProcess: "sprintf",
|
||||
sprintf: [error.model.get("name")]
|
||||
}));
|
||||
});
|
||||
});
|
||||
|
||||
var template = _.template($("#field_error_template").html(), {
|
||||
messages: messages
|
||||
});
|
||||
|
||||
$(".block-alert").html(template);
|
||||
|
||||
return this;
|
||||
}
|
||||
});
|
||||
|
||||
return FieldErrorView;
|
||||
});
|
Reference in New Issue
Block a user