159 lines
4.4 KiB
JavaScript
159 lines
4.4 KiB
JavaScript
/*
|
|
* μlogger
|
|
*
|
|
* Copyright(C) 2019 Bartek Fabiszewski (www.fabiszewski.net)
|
|
*
|
|
* This is free software; you can redistribute it and/or modify it under
|
|
* the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import { lang as $, auth } from './initializer.js';
|
|
import UserDialogModel from './userdialogmodel.js';
|
|
import ViewModel from './viewmodel.js';
|
|
import uAlert from './alert.js';
|
|
import uSelect from './select.js';
|
|
import uUser from './user.js';
|
|
|
|
/**
|
|
* @class UserViewModel
|
|
*/
|
|
export default class UserViewModel extends ViewModel {
|
|
|
|
/**
|
|
* @param {uState} state
|
|
*/
|
|
constructor(state) {
|
|
super({
|
|
/** @type {uUser[]} */
|
|
userList: [],
|
|
/** @type {string} */
|
|
currentUserId: '0',
|
|
// click handlers
|
|
/** @type {function} */
|
|
onUserEdit: null,
|
|
/** @type {function} */
|
|
onUserAdd: null,
|
|
/** @type {function} */
|
|
onPasswordChange: null
|
|
});
|
|
this.setClickHandlers();
|
|
/** @type HTMLSelectElement */
|
|
const listEl = document.querySelector('#user');
|
|
this.editEl = this.getBoundElement('onUserEdit');
|
|
this.select = new uSelect(listEl, $._('suser'), `- ${$._('allusers')} -`);
|
|
this.state = state;
|
|
}
|
|
|
|
setClickHandlers() {
|
|
this.model.onUserEdit = () => this.showDialog('edit');
|
|
this.model.onUserAdd = () => this.showDialog('add');
|
|
this.model.onPasswordChange = () => this.showDialog('pass');
|
|
}
|
|
|
|
/**
|
|
* @return {UserViewModel}
|
|
*/
|
|
init() {
|
|
this.setObservers(this.state);
|
|
this.bindAll();
|
|
uUser.fetchList()
|
|
.then((_users) => {
|
|
this.model.userList = _users;
|
|
if (_users.length) {
|
|
let userId = _users[0].listValue;
|
|
if (this.state.history) {
|
|
userId = this.state.history.userId.toString();
|
|
} else if (auth.isAuthenticated) {
|
|
const user = this.model.userList.find((_user) => _user.listValue === auth.user.listValue);
|
|
if (user) {
|
|
userId = user.listValue;
|
|
}
|
|
}
|
|
this.model.currentUserId = userId;
|
|
}
|
|
})
|
|
.catch((e) => { uAlert.error(`${$._('actionfailure')}\n${e.message}`, e); });
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* @param {uState} state
|
|
*/
|
|
setObservers(state) {
|
|
this.onChanged('userList', (list) => {
|
|
this.select.setOptions(list);
|
|
});
|
|
this.onChanged('currentUserId', (listValue) => {
|
|
this.state.showAllUsers = listValue === uSelect.allValue;
|
|
this.state.currentUser = this.model.userList.find((_user) => _user.listValue === listValue) || null;
|
|
UserViewModel.setMenuVisible(this.editEl, this.state.currentUser !== null && !this.state.currentUser.isEqualTo(auth.user));
|
|
});
|
|
state.onChanged('showLatest', (showLatest) => {
|
|
if (showLatest) {
|
|
this.select.showAllOption();
|
|
} else {
|
|
this.select.hideAllOption();
|
|
}
|
|
});
|
|
state.onChanged('history', (history) => {
|
|
if (history && history.userId) {
|
|
this.model.currentUserId = history.userId.toString();
|
|
}
|
|
});
|
|
}
|
|
|
|
showDialog(action) {
|
|
const vm = new UserDialogModel(this, action);
|
|
vm.init();
|
|
}
|
|
|
|
/**
|
|
* @param {uUser} newUser
|
|
*/
|
|
onUserAdded(newUser) {
|
|
this.model.userList.push(newUser);
|
|
this.model.userList.sort((a, b) => ((a.login > b.login) ? 1 : -1));
|
|
}
|
|
|
|
onUserDeleted() {
|
|
let index = this.model.userList.indexOf(this.state.currentUser);
|
|
this.state.currentUser = null;
|
|
if (index !== -1) {
|
|
this.model.userList.splice(index, 1);
|
|
if (this.model.userList.length) {
|
|
if (index >= this.model.userList.length) {
|
|
index = this.model.userList.length - 1;
|
|
}
|
|
this.model.currentUserId = this.model.userList[index].listValue;
|
|
} else {
|
|
this.model.currentUserId = '0';
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {HTMLElement} el
|
|
* @param {boolean} visible
|
|
*/
|
|
static setMenuVisible(el, visible) {
|
|
if (el) {
|
|
if (visible) {
|
|
el.classList.remove('menu-hidden');
|
|
} else {
|
|
el.classList.add('menu-hidden');
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|