const { BaseCommand } = require('./base-command.js'); const { app } = require('./app.js'); const Setting = require('@joplin/lib/models/Setting').default; const { _ } = require('@joplin/lib/locale'); const { ReportService } = require('@joplin/lib/services/report.js'); class Command extends BaseCommand { usage() { return 'status'; } description() { return _('Displays summary about the notes and notebooks.'); } async action() { const service = new ReportService(); const report = await service.status(Setting.value('sync.target')); for (let i = 0; i < report.length; i++) { const section = report[i]; if (i > 0) this.stdout(''); this.stdout(`# ${section.title}`); this.stdout(''); let canRetryType = ''; for (const n in section.body) { if (!section.body.hasOwnProperty(n)) continue; const item = section.body[n]; if (typeof item === 'object') { canRetryType = item.canRetryType; this.stdout(item.text); } else { this.stdout(item); } } if (canRetryType === 'e2ee') { this.stdout(''); this.stdout(_('To retry decryption of these items. Run `e2ee decrypt --retry-failed-items`')); } } app().gui().showConsole(); app().gui().maximizeConsole(); } } module.exports = Command;