mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-30 08:26:59 +02:00
31 lines
749 B
JavaScript
31 lines
749 B
JavaScript
const { BaseCommand } = require('./base-command.js');
|
|
const { app } = require('./app.js');
|
|
const { _ } = require('lib/locale.js');
|
|
const { BaseModel } = require('lib/base-model.js');
|
|
const { shim } = require('lib/shim.js');
|
|
const fs = require('fs-extra');
|
|
|
|
class Command extends BaseCommand {
|
|
|
|
usage() {
|
|
return 'attach <note> <file>';
|
|
}
|
|
|
|
description() {
|
|
return _('Attaches the given file to the note.');
|
|
}
|
|
|
|
async action(args) {
|
|
let title = args['note'];
|
|
|
|
let note = await app().loadItem(BaseModel.TYPE_NOTE, title, { parent: app().currentFolder() });
|
|
if (!note) throw new Error(_('Cannot find "%s".', title));
|
|
|
|
const localFilePath = args['file'];
|
|
|
|
await shim.attachFileToNote(note, localFilePath);
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = Command; |