45 lines
979 B
JavaScript
45 lines
979 B
JavaScript
'use strict';
|
|
|
|
SwaggerUi.Views.ApiKeyAuthView = Backbone.View.extend({ // TODO: append this to global SwaggerUi
|
|
|
|
events: {
|
|
'change .input_apiKey_entry': 'apiKeyChange'
|
|
},
|
|
|
|
selectors: {
|
|
apikeyInput: '.input_apiKey_entry'
|
|
},
|
|
|
|
template: Handlebars.templates.apikey_auth,
|
|
|
|
initialize: function(opts) {
|
|
this.options = opts || {};
|
|
this.router = this.options.router;
|
|
},
|
|
|
|
render: function (){
|
|
this.$el.html(this.template(this.model.toJSON()));
|
|
|
|
return this;
|
|
},
|
|
|
|
apiKeyChange: function (e) {
|
|
var val = $(e.target).val();
|
|
if (val) {
|
|
this.$(this.selectors.apikeyInput).removeClass('error');
|
|
}
|
|
|
|
this.model.set('value', val);
|
|
},
|
|
|
|
isValid: function () {
|
|
return this.model.validate();
|
|
},
|
|
|
|
highlightInvalid: function () {
|
|
if (!this.isValid()) {
|
|
this.$(this.selectors.apikeyInput).addClass('error');
|
|
}
|
|
}
|
|
|
|
}); |