- SOL-465: Initial implementation of certificates web view and signatories (names/titles) - SOL-718 Close button is working properly - SOL-801 Backbone Signatories Modeling - SOL-803 Underscore template: Editor (Add) - SOL-802 Signatories: Underscore template - Details - SOL-804 Signatories: Underscore template: Editor (Edit) - Add signatory delete Django view - SOL-805 Signatory editor (Delete) - Add Coffeescript router - SOL-716 Jasmine Tests - Added missing minified JS library - client side validation of signatory fields - SOL-390 signatories names - Remove obsolete extends Sass files - input maxlength limiting for signatory information - SOL-389: Course title override - SOL-466: Add capability to upload digitized signatures in Studio - ziafazal: fixed css for upload signature image - ziafazal: completed deletion of signature images - UX-1741: Add initial static rendering/styling for Open edX web certs * creating new global static dir * adding static version of edX UX pattern library assets * adding web certificates static assets * adding static (+abstracted) web certificates rendering * creating two tiers of rendering (base + distinguished) * providing sample assets for certificate rendering * supporting RTL layouts * adding certifcates assests to edX static asset pipeline * temporarily hiding the mozilla open badges share action * wiring print button to print view/page * fixup! addressing conflict artifact in valid cert template * fixup! adding missing %hd-subsection sass extend + components comment clean up * fixup! correcting pattern library .hd-4 font-weight value - SOL-468 Linked Student View for Web View Credential - SOL-467: Add capability to upload organization logos for certificates - SOL-391 / SOL-387: Signatory related info (assets) in certificates web view - kelketek: Fixes for static asset collection in certificate HTML view. - SOL-398 Web View: Public Access - mattdrayer: Post-merge branch stabilization - catong: Initial changes to Studio template and Help config file - ziafazal: Branch stabilizations - SOL-387: Display organization logo on LMS web view - talbs/mattdrayer: Branch Stabilizations - talbs: converting backpack action to use a button HTML element - talbs: revising placeholder assets + their rendering in cert view - mattdrayer: Username web view wireup - SOL-386 Certificate Mode Previews - SOL-905: Make organization logo and signatory signature uneditable - SOL-922: Improve test coverage - SOL-765: Add LinkedIn sharing - [marco] temporary styling adjustment to account for smaller linkedin share image / fake button - SOL-921: Address hardcoded template items - SOL-927: Deleting certificate should delete org logo image also * updated invalid template * removed hr * fix invalid certificate error - clrux: Add i18n to certificate templates and partials - mattdrayer: Pylint violations - SOL-920 Certificate Activation/Deactivation - mattdrayer: Added LMS support - SOL-932: Fix preview mode support in certificate view - SOL-934: Fixed bug reported and broken tests - SOL-935 removed the 'valid' word from web view title - talbs: RTL support updates/fixes * revising certificate type icon/name vertical alignment * removing unused older certificate template * revising styling for message/banner actions * abstracting accomplishment type to use course mode + adding in honor/verified-specific placeholders - mattdrayer: JSHint violations
93 lines
3.4 KiB
JavaScript
93 lines
3.4 KiB
JavaScript
// Backbone.js Application Model: Certificate
|
|
|
|
define([ // jshint ignore:line
|
|
'underscore',
|
|
'underscore.string',
|
|
'backbone',
|
|
'backbone-relational',
|
|
'backbone.associations',
|
|
'gettext',
|
|
'coffee/src/main',
|
|
'js/certificates/models/signatory',
|
|
'js/certificates/collections/signatories'
|
|
],
|
|
function (_, str, Backbone, BackboneRelational, BackboneAssociations, gettext, CoffeeSrcMain,
|
|
SignatoryModel, SignatoryCollection) {
|
|
'use strict';
|
|
_.str = str;
|
|
var Certificate = Backbone.RelationalModel.extend({
|
|
idAttribute: "id",
|
|
defaults: {
|
|
name: 'Name of the certificate',
|
|
description: 'Description of the certificate',
|
|
course_title: 'Title of the course',
|
|
org_logo_path: '',
|
|
version: 1,
|
|
is_active: false
|
|
},
|
|
|
|
// Certificate child collection/model mappings (backbone-relational)
|
|
relations: [{
|
|
type: Backbone.HasMany,
|
|
key: 'signatories',
|
|
relatedModel: SignatoryModel,
|
|
collectionType: SignatoryCollection,
|
|
reverseRelation: {
|
|
key: 'certificate',
|
|
includeInJSON: "id"
|
|
}
|
|
}],
|
|
|
|
initialize: function(attributes, options) {
|
|
// Set up the initial state of the attributes set for this model instance
|
|
this.canBeEmpty = options && options.canBeEmpty;
|
|
if(options.add) {
|
|
// Ensure at least one child Signatory model is defined for any new Certificate model
|
|
attributes.signatories = new SignatoryModel({certificate: this});
|
|
}
|
|
this.setOriginalAttributes();
|
|
return this;
|
|
},
|
|
|
|
parse: function (response) {
|
|
// Parse must be defined for the model, but does not need to do anything special right now
|
|
return response;
|
|
},
|
|
|
|
setOriginalAttributes: function() {
|
|
// Remember the current state of this model (enables edit->cancel use cases)
|
|
this._originalAttributes = this.parse(this.toJSON());
|
|
|
|
// If no url is defined for the signatories child collection we'll need to create that here as well
|
|
if(!this.isNew() && !this.get('signatories').url) {
|
|
this.get('signatories').url = this.collection.url + '/' + this.get('id') + '/signatories';
|
|
}
|
|
},
|
|
|
|
validate: function(attrs) {
|
|
// Ensure the provided attributes set meets our expectations for format, type, etc.
|
|
if (!_.str.trim(attrs.name)) {
|
|
return {
|
|
message: gettext('Certificate name is required.'),
|
|
attributes: {name: true}
|
|
};
|
|
}
|
|
var all_signatories_valid = _.every(attrs.signatories.models, function(signatory){
|
|
return signatory.isValid();
|
|
});
|
|
if (!all_signatories_valid) {
|
|
return {
|
|
message: gettext('Signatory field(s) has invalid data.'),
|
|
attributes: {signatories: attrs.signatories.models}
|
|
};
|
|
}
|
|
},
|
|
|
|
reset: function() {
|
|
// Revert the attributes of this model instance back to initial state
|
|
this.set(this._originalAttributes, { parse: true, validate: true });
|
|
}
|
|
});
|
|
return Certificate;
|
|
});
|