Initial commit
This commit is contained in:
@@ -0,0 +1,81 @@
|
||||
const CoreView = require('backbone/core-view');
|
||||
const PaginationView = require('builder/components/pagination/pagination-view');
|
||||
const checkAndBuildOpts = require('builder/helpers/required-opts');
|
||||
const template = require('./api-keys-list.tpl');
|
||||
const ApiKeysListItemView = require('dashboard/views/api-keys/api-keys-list-item-view');
|
||||
const loaderTemplate = require('./api-keys-list-loader.tpl');
|
||||
const ApiKeysCollection = require('dashboard/data/api-keys-collection');
|
||||
|
||||
const REQUIRED_OPTS = [
|
||||
'stackLayoutModel',
|
||||
'userModel',
|
||||
'apiKeysType',
|
||||
'title',
|
||||
'showNewApiKeyButton'
|
||||
];
|
||||
|
||||
module.exports = CoreView.extend({
|
||||
events: {
|
||||
'click .js-add': '_onAddClick'
|
||||
},
|
||||
|
||||
initialize: function (options) {
|
||||
checkAndBuildOpts(options, REQUIRED_OPTS, this);
|
||||
|
||||
this._apiKeysCollection = new ApiKeysCollection(null, { userModel: this._userModel, type: this._apiKeysType });
|
||||
this._initBinds();
|
||||
this._apiKeysCollection.fetch();
|
||||
|
||||
this._onEdit = this._onEdit.bind(this);
|
||||
},
|
||||
|
||||
_initBinds: function () {
|
||||
this.listenTo(this._apiKeysCollection, 'add change remove sync', this.render);
|
||||
},
|
||||
|
||||
render: function () {
|
||||
this.clearSubViews();
|
||||
|
||||
this.$el.html(template({
|
||||
title: this._title,
|
||||
showNewApiKeyButton: this._showNewApiKeyButton
|
||||
}));
|
||||
|
||||
this._apiKeysCollection.status === 'fetched'
|
||||
? this._renderKeys()
|
||||
: this._renderLoading();
|
||||
|
||||
return this;
|
||||
},
|
||||
|
||||
_renderLoading: function () {
|
||||
this.$('.js-api-keys-list').append(loaderTemplate());
|
||||
},
|
||||
|
||||
_renderKeys: function () {
|
||||
this._apiKeysCollection.forEach(apiKeyModel => {
|
||||
const view = new ApiKeysListItemView({
|
||||
apiKeyModel,
|
||||
onEdit: this._onEdit
|
||||
});
|
||||
|
||||
this.addView(view);
|
||||
|
||||
this.$('.js-api-keys-list').append(view.render().el);
|
||||
});
|
||||
|
||||
this.paginationView = new PaginationView({
|
||||
model: this._apiKeysCollection.getPaginationModel()
|
||||
});
|
||||
this.addView(this.paginationView);
|
||||
this.$('.js-api-keys-list').append(this.paginationView.render().el);
|
||||
},
|
||||
|
||||
_onAddClick: function () {
|
||||
this._stackLayoutModel.goToStep(1);
|
||||
},
|
||||
|
||||
_onEdit: function (apiKeyModel) {
|
||||
this._stackLayoutModel.goToStep(1, apiKeyModel);
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user