2017-11-03 02:09:34 +02:00
const { BaseCommand } = require ( './base-command.js' ) ;
const { app } = require ( './app.js' ) ;
const { _ } = require ( 'lib/locale.js' ) ;
2017-12-14 20:12:14 +02:00
const Folder = require ( 'lib/models/Folder.js' ) ;
const BaseModel = require ( 'lib/BaseModel.js' ) ;
2017-10-23 23:48:29 +02:00
class Command extends BaseCommand {
usage ( ) {
return 'rmbook <notebook>' ;
}
description ( ) {
return _ ( 'Deletes the given notebook.' ) ;
}
options ( ) {
2019-07-30 09:35:42 +02:00
return [ [ '-f, --force' , _ ( 'Deletes the notebook without asking for confirmation.' ) ] ] ;
2017-10-23 23:48:29 +02:00
}
async action ( args ) {
const pattern = args [ 'notebook' ] ;
const force = args . options && args . options . force === true ;
const folder = await app ( ) . loadItem ( BaseModel . TYPE _FOLDER , pattern ) ;
if ( ! folder ) throw new Error ( _ ( 'Cannot find "%s".' , pattern ) ) ;
2018-05-09 10:53:47 +02:00
const ok = force ? true : await this . prompt ( _ ( 'Delete notebook? All notes and sub-notebooks within this notebook will also be deleted.' ) , { booleanAnswerDefault : 'n' } ) ;
2017-10-23 23:48:29 +02:00
if ( ! ok ) return ;
await Folder . delete ( folder . id ) ;
}
}
2019-07-30 09:35:42 +02:00
module . exports = Command ;