1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/packages/app-cli/app/command-geoloc.ts

32 lines
851 B
TypeScript
Raw Normal View History

import BaseCommand from './base-command';
2024-01-20 16:29:21 +02:00
import app from './app';
import { _ } from '@joplin/lib/locale';
import BaseModel from '@joplin/lib/BaseModel';
import Note from '@joplin/lib/models/Note';
2017-07-18 21:27:10 +02:00
class Command extends BaseCommand {
public override usage() {
2017-08-04 18:02:43 +02:00
return 'geoloc <note>';
2017-07-18 21:27:10 +02:00
}
public override description() {
2017-07-18 21:27:10 +02:00
return _('Displays a geolocation URL for the note.');
}
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
public override async action(args: any) {
const title = args['note'];
2017-07-18 21:27:10 +02:00
const item = await app().loadItem(BaseModel.TYPE_NOTE, title, { parent: app().currentFolder() });
2017-07-18 21:27:10 +02:00
if (!item) throw new Error(_('Cannot find "%s".', title));
const url = Note.geolocationUrl(item);
2017-10-07 18:30:27 +02:00
this.stdout(url);
app()
.gui()
.showConsole();
2017-07-18 21:27:10 +02:00
}
}
module.exports = Command;