2023-12-20 21:08:07 +02:00
import BaseCommand from './base-command' ;
2017-11-03 02:09:34 +02:00
const { app } = require ( './app.js' ) ;
2023-12-20 21:08:07 +02:00
import { _ } from '@joplin/lib/locale' ;
import Folder from '@joplin/lib/models/Folder' ;
import BaseModel from '@joplin/lib/BaseModel' ;
2017-10-23 23:48:29 +02:00
class Command extends BaseCommand {
2023-12-20 21:08:07 +02:00
public override usage() {
2017-10-23 23:48:29 +02:00
return 'rmbook <notebook>' ;
}
2023-12-20 21:08:07 +02:00
public override description() {
2017-10-23 23:48:29 +02:00
return _ ( 'Deletes the given notebook.' ) ;
}
2023-12-20 21:08:07 +02:00
public override 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
}
2023-12-20 21:08:07 +02:00
public override async action ( args : any ) {
2017-10-23 23:48:29 +02:00
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 ;