* WIP user list - mostly complete

* Some code cleanup / renaming
This commit is contained in:
Bryan Ashby
2015-10-18 11:48:08 -06:00
parent b2509e9208
commit e36507fec1
9 changed files with 144 additions and 9 deletions

View File

@@ -4,7 +4,7 @@
var MenuModule = require('../core/menu_module.js').MenuModule;
var userDb = require('../core/database.js').dbs.user;
var ViewController = require('../core/view_controller.js').ViewController;
var getUserLoginHistory = require('../core/stats.js').getUserLoginHistory;
var getSystemLoginHistory = require('../core/stats.js').getSystemLoginHistory;
var colorCodes = require('../core/color_codes.js');
var moment = require('moment');
@@ -65,7 +65,7 @@ LastCallersModule.prototype.mciReady = function(mciData, cb) {
function fetchHistory(callback) {
callersView = vc.getView(MciCodeIds.CallerList);
getUserLoginHistory(callersView.dimens.height, function historyRetrieved(err, lh) {
getSystemLoginHistory(callersView.dimens.height, function historyRetrieved(err, lh) {
loginHistory = lh;
callback(err);
});

View File

@@ -427,6 +427,10 @@
"action" : "@menu:doorLORD"
},
*/
{
value: { command: "U" }
action: @menu:mainMenuUserList
}
{
value: { command: "E" }
action: @menu:doorTestExample
@@ -458,18 +462,42 @@
]
}
mainMenuLastCallers: {
desc: Last Callers
module: last_callers
art: LASTCALL
options: { pause: true }
}
mainMenuUserStats: {
desc: User Stats
art: STATUS
options: { pause: true }
options: { pause: true }
}
mainMenuSystemStats: {
desc: System Stats
art: SYSSTAT
options: { pause: true }
}
mainMenuUserList: {
desc: User Listing
module: user_list
art: USERLST
form: {
0: {
mci: {
VM1: {
focus: true
submit: true
}
}
actionKeys: [
{
keys: [ "escape" ]
action: @systemMethod:fallbackMenu
}
]
}
}
}
mainMenuUserConfig: {
module: @systemModule:user_config
art: CONFSCR

View File

@@ -135,7 +135,7 @@ MessageListModule.prototype.mciReady = function(mciData, cb) {
// :TODO: fix default format
var listFormat = self.menuConfig.config.listFormat || '{msgNum:>4} - {subj:>35} |{to:>15}';
var focusListFormat = self.menuConfig.config.focusListFormat;
var focusListFormat = self.menuConfig.config.focusListFormat || listFormat; // :TODO: default change color here
var msgNum = 1;
var newMark = '*'; // :TODO: Make configurable

Binary file not shown.

View File

@@ -103,6 +103,17 @@
}
}
mainMenuUserList: {
config: {
listFormat: "|00|01|36{userName:<17.17}{affils:<21.21}{note:<21.21}{lastLoginTs}"
focusListFormat: "|00|42|30{userName:<17.17}{affils:<21.21}{note:<21.21}{lastLoginTs}"
dateTimeFormat: MMM Do h:mma
}
mci: {
VM1: { height: 15 }
}
}
messageAreaMessageList: {
config: {
listFormat: "|00|01|37{msgNum:>4} |00|37- |36{subj:<29.29} {from:<20.20} {ts} |01|31{newMark}"

View File

@@ -3,6 +3,7 @@
var MenuModule = require('../core/menu_module.js').MenuModule;
var userDb = require('../core/database.js').dbs.user;
var getUserList = require('../core/user.js').getUserList;
var ViewController = require('../core/view_controller.js').ViewController;
var moment = require('moment');
@@ -14,11 +15,11 @@ var _ = require('lodash');
Available listFormat object members:
userId
userName
lastCall
lastLoginTs
status
location
affiliation
timestamp
note
*/
exports.moduleInfo = {
@@ -29,6 +30,10 @@ exports.moduleInfo = {
exports.getModule = UserListModule;
var MciCodeIds = {
UserList : 1,
};
function UserListModule(options) {
MenuModule.call(this, options);
}
@@ -39,10 +44,63 @@ UserListModule.prototype.mciReady = function(mciData, cb) {
var self = this;
var vc = self.viewControllers.allViews = new ViewController( { client : self.client } );
var userList = [];
var USER_LIST_OPTS = {
properties : [ 'location', 'affiliation', 'last_login_timestamp' ],
};
async.series(
[
// :TODO: These two functions repeated all over -- need DRY
function callParentMciReady(callback) {
UserListModule.super_.prototype.mciReady.call(self, mciData, callback);
},
function loadFromConfig(callback) {
var loadOpts = {
callingMenu : self,
mciMap : mciData.menu,
};
],
vc.loadFromMenuConfig(loadOpts, callback);
},
function fetchUserList(callback) {
// :TODO: Currently fetching all users - probably always OK, but this could be paged
getUserList(USER_LIST_OPTS, function got(err, ul) {
userList = ul;
callback(err);
});
},
function populateList(callback) {
var userListView = vc.getView(MciCodeIds.UserList);
var listFormat = self.menuConfig.config.listFormat || '{userName} - {affils}';
var focusListFormat = self.menuConfig.config.focusListFormat || listFormat; // :TODO: default changed color!
var dateTimeFormat = self.menuConfig.config.dateTimeFormat || 'ddd MMM DD';
function getUserFmtObj(ue) {
return {
userId : ue.userId,
userName : ue.userName,
affils : ue.affiliation,
// :TODO: the rest!
note : ue.note || '',
lastLoginTs : moment(ue.last_login_timestamp).format(dateTimeFormat),
}
}
userListView.setItems(_.map(userList, function formatUserEntry(ue) {
return listFormat.format(getUserFmtObj(ue));
}));
userListView.setFocusItems(_.map(userList, function formatUserEntry(ue) {
return focusListFormat.format(getUserFmtObj(ue));
}));
userListView.redraw();
callback(null);
}
],
function complete(err) {
if(err) {
self.client.log.error( { error : err.toString() }, 'Error loading user list');