84 lines
2.6 KiB
JavaScript
84 lines
2.6 KiB
JavaScript
/* jslint node: true */
|
|
'use strict';
|
|
|
|
// ENiGMA½
|
|
const { MenuModule } = require('./menu_module.js');
|
|
const {
|
|
getActiveConnectionList,
|
|
UserVisibleConnections,
|
|
} = require('./client_connections.js');
|
|
const { Errors } = require('./enig_error.js');
|
|
|
|
// deps
|
|
const async = require('async');
|
|
const _ = require('lodash');
|
|
|
|
exports.moduleInfo = {
|
|
name: "Who's Online",
|
|
desc: 'Who is currently online',
|
|
author: 'NuSkooler',
|
|
packageName: 'codes.l33t.enigma.whosonline',
|
|
};
|
|
|
|
const MciViewIds = {
|
|
onlineList: 1,
|
|
};
|
|
|
|
exports.getModule = class WhosOnlineModule extends MenuModule {
|
|
constructor(options) {
|
|
super(options);
|
|
}
|
|
|
|
mciReady(mciData, cb) {
|
|
super.mciReady(mciData, err => {
|
|
if (err) {
|
|
return cb(err);
|
|
}
|
|
|
|
async.series(
|
|
[
|
|
next => {
|
|
return this.prepViewController('online', 0, mciData.menu, next);
|
|
},
|
|
next => {
|
|
const onlineListView = this.viewControllers.online.getView(
|
|
MciViewIds.onlineList
|
|
);
|
|
if (!onlineListView) {
|
|
return cb(
|
|
Errors.MissingMci(
|
|
`Missing online list MCI ${MciViewIds.onlineList}`
|
|
)
|
|
);
|
|
}
|
|
|
|
const onlineList = getActiveConnectionList(UserVisibleConnections)
|
|
.slice(0, onlineListView.height)
|
|
.map(oe =>
|
|
Object.assign(oe, {
|
|
text: oe.userName,
|
|
timeOn: oe.timeOn
|
|
? _.upperFirst(oe.timeOn.humanize())
|
|
: 0, // :TODO: fix me. We can always track time...
|
|
})
|
|
);
|
|
|
|
onlineListView.setItems(onlineList);
|
|
onlineListView.redraw();
|
|
return next(null);
|
|
},
|
|
],
|
|
err => {
|
|
if (err) {
|
|
this.client.log.error(
|
|
{ error: err.message },
|
|
"Error loading who's online"
|
|
);
|
|
}
|
|
return cb(err);
|
|
}
|
|
);
|
|
});
|
|
}
|
|
};
|