mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
31 lines
751 B
TypeScript
31 lines
751 B
TypeScript
import BaseCommand from './base-command';
|
|
import app from './app';
|
|
import { _ } from '@joplin/lib/locale';
|
|
import BaseModel from '@joplin/lib/BaseModel';
|
|
import Note from '@joplin/lib/models/Note';
|
|
|
|
class Command extends BaseCommand {
|
|
public override usage() {
|
|
return 'geoloc <note>';
|
|
}
|
|
|
|
public override description() {
|
|
return _('Displays a geolocation URL for the note.');
|
|
}
|
|
|
|
public override async action(args: any) {
|
|
const title = args['note'];
|
|
|
|
const item = await app().loadItem(BaseModel.TYPE_NOTE, title, { parent: app().currentFolder() });
|
|
if (!item) throw new Error(_('Cannot find "%s".', title));
|
|
const url = Note.geolocationUrl(item);
|
|
this.stdout(url);
|
|
|
|
app()
|
|
.gui()
|
|
.showConsole();
|
|
}
|
|
}
|
|
|
|
module.exports = Command;
|