nginx-proxy-manager/frontend/js/app/nginx/access/main.js

82 lines
2.8 KiB
JavaScript
Raw Normal View History

2018-07-24 02:56:39 -04:00
const Mn = require('backbone.marionette');
const App = require('../../main');
const AccessListModel = require('../../../models/access-list');
const ListView = require('./list/main');
const ErrorView = require('../../error/main');
const EmptyView = require('../../empty/main');
const template = require('./main.ejs');
module.exports = Mn.View.extend({
2018-07-24 02:56:39 -04:00
id: 'nginx-access',
template: template,
2018-07-24 02:56:39 -04:00
ui: {
list_region: '.list-region',
add: '.add-item',
help: '.help',
2018-07-24 02:56:39 -04:00
dimmer: '.dimmer'
},
regions: {
list_region: '@ui.list_region'
},
events: {
'click @ui.add': function (e) {
e.preventDefault();
App.Controller.showNginxAccessListForm();
},
'click @ui.help': function (e) {
e.preventDefault();
App.Controller.showHelp(App.i18n('access-lists', 'help-title'), App.i18n('access-lists', 'help-content'));
2018-07-24 02:56:39 -04:00
}
},
templateContext: {
showAddButton: App.Cache.User.canManage('access_lists')
},
onRender: function () {
let view = this;
2018-08-19 04:54:17 -04:00
App.Api.Nginx.AccessLists.getAll(['owner', 'items'])
2018-07-24 02:56:39 -04:00
.then(response => {
if (!view.isDestroyed()) {
if (response && response.length) {
view.showChildView('list_region', new ListView({
collection: new AccessListModel.Collection(response)
}));
} else {
let manage = App.Cache.User.canManage('access_lists');
view.showChildView('list_region', new EmptyView({
title: App.i18n('access-lists', 'empty'),
subtitle: App.i18n('all-hosts', 'empty-subtitle', {manage: manage}),
link: manage ? App.i18n('access-lists', 'add') : null,
btn_color: 'teal',
permission: 'access_lists',
action: function () {
App.Controller.showNginxAccessListForm();
}
}));
}
}
})
.catch(err => {
view.showChildView('list_region', new ErrorView({
code: err.code,
message: err.message,
retry: function () {
App.Controller.showNginxAccess();
}
}));
console.error(err);
})
.then(() => {
view.ui.dimmer.removeClass('active');
});
}
});