mirror of
https://github.com/openwrt/luci.git
synced 2025-01-31 03:41:47 +00:00
7893f2d08a
scrollIntoView() is more universally supported and standards tracked. Closes #7186 Updates 9370bdddaede2feeb581193158d83f5062d5a318 Signed-off-by: Paul Donald <newtwen+github@gmail.com>
73 lines
1.9 KiB
JavaScript
73 lines
1.9 KiB
JavaScript
'use strict';
|
|
'require view';
|
|
'require fs';
|
|
'require poll';
|
|
'require ui';
|
|
|
|
return view.extend({
|
|
retrieveLog: async function() {
|
|
return fs.exec_direct('/bin/dmesg', [ '-r' ]).then(logdata => {
|
|
const loglines = logdata.trim().split(/\n/).map(function(line) {
|
|
return line.replace(/^<\d+>/, '');
|
|
});
|
|
return { value: loglines.join('\n'), rows: loglines.length + 1 };
|
|
}).catch(function(err) {
|
|
ui.addNotification(null, E('p', {}, _('Unable to load log data: ' + err.message)));
|
|
return '';
|
|
});
|
|
},
|
|
|
|
pollLog: async function() {
|
|
const element = document.getElementById('syslog');
|
|
if (element) {
|
|
const log = await this.retrieveLog();
|
|
element.value = log.value;
|
|
element.rows = log.rows;
|
|
}
|
|
},
|
|
|
|
load: async function() {
|
|
poll.add(this.pollLog.bind(this));
|
|
return await this.retrieveLog();
|
|
},
|
|
|
|
render: function(loglines) {
|
|
var scrollDownButton = E('button', {
|
|
'id': 'scrollDownButton',
|
|
'class': 'cbi-button cbi-button-neutral',
|
|
}, _('Scroll to tail', 'scroll to bottom (the tail) of the log file')
|
|
);
|
|
scrollDownButton.addEventListener('click', function() {
|
|
scrollUpButton.scrollIntoView();
|
|
});
|
|
|
|
var scrollUpButton = E('button', {
|
|
'id' : 'scrollUpButton',
|
|
'class': 'cbi-button cbi-button-neutral',
|
|
}, _('Scroll to head', 'scroll to top (the head) of the log file')
|
|
);
|
|
scrollUpButton.addEventListener('click', function() {
|
|
scrollDownButton.scrollIntoView();
|
|
});
|
|
|
|
return E([], [
|
|
E('h2', {}, [ _('Kernel Log') ]),
|
|
E('div', { 'id': 'content_syslog' }, [
|
|
E('div', {'style': 'padding-bottom: 20px'}, [scrollDownButton]),
|
|
E('textarea', {
|
|
'id': 'syslog',
|
|
'style': 'font-size:12px',
|
|
'readonly': 'readonly',
|
|
'wrap': 'off',
|
|
'rows': loglines.rows
|
|
}, [ loglines.value ]),
|
|
E('div', {'style': 'padding-bottom: 20px'}, [scrollUpButton])
|
|
])
|
|
]);
|
|
},
|
|
|
|
handleSaveApply: null,
|
|
handleSave: null,
|
|
handleReset: null
|
|
});
|