import BaseCommand from './base-command'; import app from './app'; import { _ } from '@joplin/lib/locale'; import BaseModel from '@joplin/lib/BaseModel'; import shim from '@joplin/lib/shim'; class Command extends BaseCommand { public override usage() { return 'attach '; } public override description() { return _('Attaches the given file to 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']; const note = await app().loadItem(BaseModel.TYPE_NOTE, title, { parent: app().currentFolder() }); this.encryptionCheck(note); if (!note) throw new Error(_('Cannot find "%s".', title)); const localFilePath = args['file']; await shim.attachFileToNote(note, localFilePath); } } module.exports = Command;