1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-15 09:04:04 +02:00
joplin/CliClient/app/command-status.js

45 lines
943 B
JavaScript
Raw Normal View History

const { BaseCommand } = require('./base-command.js');
const { app } = require('./app.js');
2017-12-14 20:12:14 +02:00
const Setting = require('lib/models/Setting.js');
const { _ } = require('lib/locale.js');
const { ReportService } = require('lib/services/report.js');
2017-07-13 20:09:47 +02:00
class Command extends BaseCommand {
usage() {
return 'status';
}
description() {
2017-07-18 20:21:03 +02:00
return _('Displays summary about the notes and notebooks.');
2017-07-13 20:09:47 +02:00
}
async action() {
2017-07-13 20:09:47 +02:00
let service = new ReportService();
2017-07-24 20:58:11 +02:00
let report = await service.status(Setting.value('sync.target'));
2017-07-13 20:09:47 +02:00
for (let i = 0; i < report.length; i++) {
let section = report[i];
2017-10-07 18:30:27 +02:00
if (i > 0) this.stdout('');
2017-07-13 20:09:47 +02:00
2019-09-19 23:51:18 +02:00
this.stdout(`# ${section.title}`);
2017-10-07 18:30:27 +02:00
this.stdout('');
2017-07-13 20:09:47 +02:00
for (let n in section.body) {
if (!section.body.hasOwnProperty(n)) continue;
let line = section.body[n];
2017-10-07 18:30:27 +02:00
this.stdout(line);
2017-07-13 20:09:47 +02:00
}
}
app()
.gui()
.showConsole();
app()
.gui()
.maximizeConsole();
2017-07-13 20:09:47 +02:00
}
}
module.exports = Command;