2018-06-20 02:51:18 -04:00
|
|
|
'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: {
|
2018-07-04 18:27:25 -04:00
|
|
|
edit: 'a.edit-user',
|
|
|
|
permissions: 'a.edit-permissions',
|
|
|
|
password: 'a.set-password',
|
|
|
|
login: 'a.login',
|
|
|
|
delete: 'a.delete-user'
|
2018-06-20 02:51:18 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
events: {
|
|
|
|
'click @ui.edit': function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
Controller.showUserForm(this.model);
|
|
|
|
},
|
|
|
|
|
2018-07-04 18:27:25 -04:00
|
|
|
'click @ui.permissions': function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
Controller.showUserPermissions(this.model);
|
|
|
|
},
|
|
|
|
|
2018-06-20 02:51:18 -04:00
|
|
|
'click @ui.password': function (e) {
|
|
|
|
e.preventDefault();
|
2018-06-25 02:56:13 -04:00
|
|
|
Controller.showUserPasswordForm(this.model);
|
2018-06-20 02:51:18 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
'click @ui.delete': function (e) {
|
|
|
|
e.preventDefault();
|
2018-07-04 18:27:25 -04:00
|
|
|
Controller.showUserDeleteConfirm(this.model);
|
2018-06-20 02:51:18 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
'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);
|
|
|
|
}
|
|
|
|
});
|