73 lines
2.1 KiB
JavaScript
73 lines
2.1 KiB
JavaScript
|
'use strict';
|
||
|
|
||
|
const Mn = require('backbone.marionette');
|
||
|
const Controller = require('../../controller');
|
||
|
const Api = require('../../api');
|
||
|
const Cache = require('../../cache');
|
||
|
const Tokens = require('../../tokens');
|
||
|
const template = require('./item.ejs');
|
||
|
|
||
|
module.exports = Mn.View.extend({
|
||
|
template: template,
|
||
|
tagName: 'tr',
|
||
|
|
||
|
ui: {
|
||
|
edit: 'a.edit-user',
|
||
|
permissions: 'a.edit-permissions',
|
||
|
password: 'a.set-password',
|
||
|
login: 'a.login',
|
||
|
delete: 'a.delete-user'
|
||
|
},
|
||
|
|
||
|
events: {
|
||
|
'click @ui.edit': function (e) {
|
||
|
e.preventDefault();
|
||
|
Controller.showUserForm(this.model);
|
||
|
},
|
||
|
|
||
|
'click @ui.permissions': function (e) {
|
||
|
e.preventDefault();
|
||
|
Controller.showUserPermissions(this.model);
|
||
|
},
|
||
|
|
||
|
'click @ui.password': function (e) {
|
||
|
e.preventDefault();
|
||
|
Controller.showUserPasswordForm(this.model);
|
||
|
},
|
||
|
|
||
|
'click @ui.delete': function (e) {
|
||
|
e.preventDefault();
|
||
|
Controller.showUserDeleteConfirm(this.model);
|
||
|
},
|
||
|
|
||
|
'click @ui.login': function (e) {
|
||
|
e.preventDefault();
|
||
|
|
||
|
if (Cache.User.get('id') !== this.model.get('id')) {
|
||
|
this.ui.login.prop('disabled', true).addClass('btn-disabled');
|
||
|
|
||
|
Api.Users.loginAs(this.model.get('id'))
|
||
|
.then(res => {
|
||
|
Tokens.addToken(res.token, res.user.nickname || res.user.name);
|
||
|
window.location = '/';
|
||
|
window.location.reload();
|
||
|
})
|
||
|
.catch(err => {
|
||
|
alert(err.message);
|
||
|
this.ui.login.prop('disabled', false).removeClass('btn-disabled');
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
|
||
|
templateContext: {
|
||
|
isSelf: function () {
|
||
|
return Cache.User.get('id') === this.id;
|
||
|
}
|
||
|
},
|
||
|
|
||
|
initialize: function () {
|
||
|
this.listenTo(this.model, 'change', this.render);
|
||
|
}
|
||
|
});
|