2023-12-20 21:08:07 +02:00
import BaseCommand from './base-command' ;
2024-01-20 16:29:21 +02:00
import app from './app' ;
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' ;
2024-03-02 16:25:27 +02:00
const { substrWithEllipsis } = require ( '@joplin/lib/string-utils' ) ;
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 ) ) ;
2024-03-02 16:25:27 +02:00
const msg = _ ( 'Move notebook "%s" to the trash?\n\nAll notes and sub-notebooks within this notebook will also be moved to the trash.' , substrWithEllipsis ( folder . title , 0 , 32 ) ) ;
const ok = force ? true : await this . prompt ( msg , { booleanAnswerDefault : 'n' } ) ;
2017-10-23 23:48:29 +02:00
if ( ! ok ) return ;
2024-03-09 12:33:05 +02:00
await Folder . delete ( folder . id , { toTrash : true , sourceDescription : 'rmbook command' } ) ;
2017-10-23 23:48:29 +02:00
}
}
2019-07-30 09:35:42 +02:00
module .exports = Command ;