mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
25 lines
737 B
TypeScript
25 lines
737 B
TypeScript
import { CommandRuntime, CommandDeclaration, CommandContext } from '@joplin/lib/services/CommandService';
|
|
import { _ } from '@joplin/lib/locale';
|
|
import Note from '@joplin/lib/models/Note';
|
|
|
|
export const declaration: CommandDeclaration = {
|
|
name: 'duplicateNote',
|
|
label: () => _('Duplicate'),
|
|
};
|
|
|
|
export const runtime = (): CommandRuntime => {
|
|
return {
|
|
execute: async (context: CommandContext, noteIds: string[] = null) => {
|
|
if (noteIds === null) noteIds = context.state.selectedNoteIds;
|
|
|
|
for (let i = 0; i < noteIds.length; i++) {
|
|
const note = await Note.load(noteIds[i]);
|
|
await Note.duplicate(noteIds[i], {
|
|
uniqueTitle: _('%s - Copy', note.title),
|
|
});
|
|
}
|
|
},
|
|
enabledCondition: '!noteIsReadOnly',
|
|
};
|
|
};
|