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 BaseModel from '@joplin/lib/BaseModel' ;
import Folder from '@joplin/lib/models/Folder' ;
import Note from '@joplin/lib/models/Note' ;
2017-07-10 22:03:46 +02:00
class Command extends BaseCommand {
2023-12-20 21:08:07 +02:00
public override usage() {
2022-09-05 13:37:51 +02:00
return 'mv <item> [notebook]' ;
2017-07-10 22:03:46 +02:00
}
2023-12-20 21:08:07 +02:00
public override description() {
2022-10-30 20:37:58 +02:00
return _ ( 'Moves the given <item> to [notebook]' ) ;
2017-07-10 22:03:46 +02:00
}
2024-04-05 13:16:49 +02:00
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
2023-12-20 21:08:07 +02:00
public override async action ( args : any ) {
2022-09-05 13:37:51 +02:00
const pattern = args [ 'item' ] ;
2017-08-04 18:02:43 +02:00
const destination = args [ 'notebook' ] ;
2022-09-05 13:37:51 +02:00
let folder = null ;
2019-07-30 09:35:42 +02:00
2022-09-05 13:37:51 +02:00
if ( destination !== 'root' ) {
folder = await app ( ) . loadItem ( BaseModel . TYPE_FOLDER , destination ) ;
if ( ! folder ) throw new Error ( _ ( 'Cannot find "%s".' , destination ) ) ;
}
2017-07-10 22:03:46 +02:00
2022-09-05 13:37:51 +02:00
const destinationDuplicates = await Folder . search ( { titlePattern : destination , limit : 2 } ) ;
if ( destinationDuplicates . length > 1 ) {
2023-01-11 20:37:22 +02:00
throw new Error ( _ ( 'Ambiguous notebook "%s". Please use short notebook id instead - press "ti" to see the short notebook id' , destination ) ) ;
2022-09-05 13:37:51 +02:00
}
2017-07-10 22:03:46 +02:00
2022-09-05 13:37:51 +02:00
const itemFolder = await app ( ) . loadItem ( BaseModel . TYPE_FOLDER , pattern ) ;
if ( itemFolder ) {
const sourceDuplicates = await Folder . search ( { titlePattern : pattern , limit : 2 } ) ;
if ( sourceDuplicates . length > 1 ) {
throw new Error ( _ ( 'Ambiguous notebook "%s". Please use notebook id instead - press "ti" to see the short notebook id or use $b for current selected notebook' , pattern ) ) ;
}
if ( destination === 'root' ) {
await Folder . moveToFolder ( itemFolder . id , '' ) ;
} else {
await Folder . moveToFolder ( itemFolder . id , folder . id ) ;
}
} else {
const notes = await app ( ) . loadItems ( BaseModel . TYPE_NOTE , pattern ) ;
if ( notes . length === 0 ) throw new Error ( _ ( 'Cannot find "%s".' , pattern ) ) ;
for ( let i = 0 ; i < notes . length ; i ++ ) {
await Note . moveToFolder ( notes [ i ] . id , folder . id ) ;
}
2017-07-10 22:03:46 +02:00
}
}
}
2019-07-30 09:35:42 +02:00
module .exports = Command ;