208 lines
8.6 KiB
JavaScript
208 lines
8.6 KiB
JavaScript
(function(Backbone, _, $, gettext, ngettext, interpolate_text, NotificationModel, NotificationView) {
|
|
var CohortEditorView = Backbone.View.extend({
|
|
events : {
|
|
"submit .cohort-management-group-add-form": "addStudents"
|
|
},
|
|
|
|
initialize: function(options) {
|
|
this.template = _.template($('#cohort-editor-tpl').text());
|
|
this.cohorts = options.cohorts;
|
|
this.advanced_settings_url = options.advanced_settings_url;
|
|
},
|
|
|
|
// Any errors that are currently being displayed to the instructor (for example, unknown email addresses).
|
|
errorNotifications: null,
|
|
// Any confirmation messages that are currently being displayed (for example, number of students added).
|
|
confirmationNotifications: null,
|
|
|
|
render: function() {
|
|
this.$el.html(this.template({
|
|
cohort: this.model,
|
|
advanced_settings_url: this.advanced_settings_url
|
|
}));
|
|
return this;
|
|
},
|
|
|
|
setCohort: function(cohort) {
|
|
this.model = cohort;
|
|
this.render();
|
|
},
|
|
|
|
addStudents: function(event) {
|
|
event.preventDefault();
|
|
var self = this,
|
|
cohorts = this.cohorts,
|
|
input = this.$('.cohort-management-group-add-students'),
|
|
add_url = this.model.url() + '/add',
|
|
students = input.val().trim(),
|
|
cohortId = this.model.id;
|
|
|
|
if (students.length > 0) {
|
|
$.post(
|
|
add_url, {'users': students}
|
|
).done(function(modifiedUsers) {
|
|
self.refreshCohorts().done(function() {
|
|
// Find the equivalent cohort in the new collection and select it
|
|
var cohort = cohorts.get(cohortId);
|
|
self.setCohort(cohort);
|
|
|
|
// Show the notifications
|
|
self.addNotifications(modifiedUsers);
|
|
|
|
// If an unknown user was specified then update the new input to have
|
|
// the original input's value. This is to allow the user to correct the
|
|
// value in case it was a typo.
|
|
if (modifiedUsers.unknown.length > 0) {
|
|
self.$('.cohort-management-group-add-students').val(students);
|
|
}
|
|
});
|
|
}).fail(function() {
|
|
self.showErrorMessage(gettext('Error adding students.'), true);
|
|
});
|
|
} else {
|
|
self.showErrorMessage(gettext('Please enter a username or email.'), true);
|
|
input.val('');
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Refresh the cohort collection to get the latest set as well as up-to-date counts.
|
|
*/
|
|
refreshCohorts: function() {
|
|
return this.cohorts.fetch();
|
|
},
|
|
|
|
undelegateViewEvents: function (view) {
|
|
if (view) {
|
|
view.undelegateEvents();
|
|
}
|
|
},
|
|
|
|
showErrorMessage: function(message, removeConfirmations, model) {
|
|
if (removeConfirmations && this.confirmationNotifications) {
|
|
this.undelegateViewEvents(this.confirmationNotifications);
|
|
this.confirmationNotifications.$el.html('');
|
|
this.confirmationNotifications = null;
|
|
}
|
|
if (model === undefined) {
|
|
model = new NotificationModel();
|
|
}
|
|
model.set('type', 'error');
|
|
model.set('title', message);
|
|
|
|
this.undelegateViewEvents(this.errorNotifications);
|
|
|
|
this.errorNotifications = new NotificationView({
|
|
el: this.$('.cohort-errors'),
|
|
model: model
|
|
});
|
|
this.errorNotifications.render();
|
|
},
|
|
|
|
addNotifications: function(modifiedUsers) {
|
|
var oldCohort, title, details, numPresent, numUsersAdded, numErrors,
|
|
createErrorDetails, errorActionCallback, errorModel,
|
|
errorLimit = 5;
|
|
|
|
// Show confirmation messages.
|
|
this.undelegateViewEvents(this.confirmationNotifications);
|
|
numUsersAdded = modifiedUsers.added.length + modifiedUsers.changed.length;
|
|
numPresent = modifiedUsers.present.length;
|
|
if (numUsersAdded > 0 || numPresent > 0) {
|
|
title = interpolate_text(
|
|
ngettext("{numUsersAdded} student has been added to this cohort group",
|
|
"{numUsersAdded} students have been added to this cohort group", numUsersAdded),
|
|
{numUsersAdded: numUsersAdded}
|
|
);
|
|
|
|
var movedByCohort = {};
|
|
_.each(modifiedUsers.changed, function (changedInfo) {
|
|
oldCohort = changedInfo.previous_cohort;
|
|
if (oldCohort in movedByCohort) {
|
|
movedByCohort[oldCohort] = movedByCohort[oldCohort] + 1;
|
|
}
|
|
else {
|
|
movedByCohort[oldCohort] = 1;
|
|
}
|
|
});
|
|
|
|
details = [];
|
|
for (oldCohort in movedByCohort) {
|
|
details.push(
|
|
interpolate_text(
|
|
ngettext("{numMoved} student was removed from {oldCohort}",
|
|
"{numMoved} students were removed from {oldCohort}", movedByCohort[oldCohort]),
|
|
{numMoved: movedByCohort[oldCohort], oldCohort: oldCohort}
|
|
)
|
|
);
|
|
}
|
|
if (numPresent > 0) {
|
|
details.push(
|
|
interpolate_text(
|
|
ngettext("{numPresent} student was already in the cohort group",
|
|
"{numPresent} students were already in the cohort group", numPresent),
|
|
{numPresent: numPresent}
|
|
)
|
|
);
|
|
}
|
|
|
|
this.confirmationNotifications = new NotificationView({
|
|
el: this.$('.cohort-confirmations'),
|
|
model: new NotificationModel({
|
|
type: "confirmation",
|
|
title: title,
|
|
details: details
|
|
})
|
|
});
|
|
this.confirmationNotifications.render();
|
|
}
|
|
else if (this.confirmationNotifications) {
|
|
this.confirmationNotifications.$el.html('');
|
|
this.confirmationNotifications = null;
|
|
}
|
|
|
|
// Show error messages.
|
|
this.undelegateViewEvents(this.errorNotifications);
|
|
numErrors = modifiedUsers.unknown.length;
|
|
if (numErrors > 0) {
|
|
createErrorDetails = function (unknownUsers, showAllErrors) {
|
|
var numErrors = unknownUsers.length, details = [];
|
|
|
|
for (var i = 0; i < (showAllErrors ? numErrors : Math.min(errorLimit, numErrors)); i++) {
|
|
details.push(interpolate_text(gettext("Unknown user: {user}"), {user: unknownUsers[i]}));
|
|
}
|
|
return details;
|
|
};
|
|
|
|
title = interpolate_text(
|
|
ngettext("There was an error when trying to add students:",
|
|
"There were {numErrors} errors when trying to add students:", numErrors),
|
|
{numErrors: numErrors}
|
|
);
|
|
details = createErrorDetails(modifiedUsers.unknown, false);
|
|
|
|
errorActionCallback = function (view) {
|
|
view.model.set("actionText", null);
|
|
view.model.set("details", createErrorDetails(modifiedUsers.unknown, true));
|
|
view.render();
|
|
};
|
|
|
|
errorModel = new NotificationModel({
|
|
details: details,
|
|
actionText: numErrors > errorLimit ? gettext("View all errors") : null,
|
|
actionCallback: errorActionCallback,
|
|
actionClass: 'action-expand'
|
|
});
|
|
|
|
this.showErrorMessage(title, false, errorModel);
|
|
}
|
|
else if (this.errorNotifications) {
|
|
this.errorNotifications.$el.html('');
|
|
this.errorNotifications = null;
|
|
}
|
|
}
|
|
});
|
|
|
|
this.CohortEditorView = CohortEditorView;
|
|
}).call(this, Backbone, _, $, gettext, ngettext, interpolate_text, NotificationModel, NotificationView);
|