luci-mod-system: crontab.js: use common fs.js class

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
Jo-Philipp Wich 2019-10-02 19:45:36 +02:00
parent df8078d542
commit 641c82cb21

View file

@ -1,36 +1,19 @@
'use strict';
'require rpc';
'require fs';
return L.view.extend({
callFileRead: rpc.declare({
object: 'file',
method: 'read',
params: [ 'path' ],
expect: { data: '' }
}),
callFileWrite: rpc.declare({
object: 'file',
method: 'write',
params: [ 'path', 'data' ]
}),
load: function() {
return this.callFileRead('/etc/crontabs/root');
return L.resolveDefault(fs.read('/etc/crontabs/root'), '');
},
handleSave: function(ev) {
var value = (document.querySelector('textarea').value || '').trim().replace(/\r\n/g, '\n') + '\n';
return this.callFileWrite('/etc/crontabs/root', value).then(function(rc) {
if (rc != 0)
throw rpc.getStatusText(rc);
return fs.write('/etc/crontabs/root', value).then(function(rc) {
document.querySelector('textarea').value = value;
L.ui.addNotification(null, E('p', _('Contents have been saved.')), 'info');
}).catch(function(e) {
L.ui.addNotification(null, E('p', _('Unable to save contents: %s').format(e)));
L.ui.addNotification(null, E('p', _('Unable to save contents: %s').format(e.message)));
});
},