luci/modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js
Jo-Philipp Wich 939b371bc7 luci-mod-status: reimplement log pages as client side views
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2019-12-22 23:20:23 +01:00

33 lines
717 B
JavaScript

'use strict';
'require fs';
'require ui';
return L.view.extend({
load: function() {
return fs.exec_direct('/sbin/logread', [ '-e', '^' ]).catch(function(err) {
ui.addNotification(null, E('p', {}, _('Unable to load log data: ' + err.message)));
return '';
});
},
render: function(logdata) {
var loglines = logdata.trim().split(/\n/);
return E([], [
E('h2', {}, [ _('System Log') ]),
E('div', { 'id': 'content_syslog' }, [
E('textarea', {
'id': 'syslog',
'style': 'font-size:12px',
'readonly': 'readonly',
'wrap': 'off',
'rows': loglines.length + 1
}, [ loglines.join('\n') ])
])
]);
},
handleSaveApply: null,
handleSave: null,
handleReset: null
});