35 lines
1.6 KiB
JavaScript
35 lines
1.6 KiB
JavaScript
/**
|
|
* Provides utilities for validating libraries during creation.
|
|
*/
|
|
define(['jquery', 'gettext', 'common/js/components/utils/view_utils', 'js/views/utils/create_utils_base'],
|
|
function($, gettext, ViewUtils, CreateUtilsFactory) {
|
|
'use strict';
|
|
return function(selectors, classes) {
|
|
var keyLengthViolationMessage = gettext('The combined length of the organization and library code fields cannot be more than <%=limit%> characters.');
|
|
var keyFieldSelectors = [selectors.org, selectors.number];
|
|
var nonEmptyCheckFieldSelectors = [selectors.name, selectors.org, selectors.number];
|
|
|
|
CreateUtilsFactory.call(this, selectors, classes, keyLengthViolationMessage, keyFieldSelectors, nonEmptyCheckFieldSelectors);
|
|
|
|
this.create = function(libraryInfo, errorHandler) {
|
|
$.postJSON(
|
|
'/library/',
|
|
libraryInfo
|
|
).done(function(data) {
|
|
ViewUtils.redirect(data.url);
|
|
}).fail(function(jqXHR, textStatus, errorThrown) {
|
|
var reason = errorThrown;
|
|
if (jqXHR.responseText) {
|
|
try {
|
|
var detailedReason = $.parseJSON(jqXHR.responseText).ErrMsg;
|
|
if (detailedReason) {
|
|
reason = detailedReason;
|
|
}
|
|
} catch (e) {}
|
|
}
|
|
errorHandler(reason);
|
|
});
|
|
};
|
|
};
|
|
});
|