mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
40 lines
588 B
TypeScript
40 lines
588 B
TypeScript
|
import { CommandDeclaration } from '@joplin/lib/services/CommandService';
|
||
|
|
||
|
export const enabledCondition = (_commandName: string) => {
|
||
|
const output = [
|
||
|
'!modalDialogVisible',
|
||
|
'!noteIsReadOnly',
|
||
|
];
|
||
|
|
||
|
return output.filter(c => !!c).join(' && ');
|
||
|
};
|
||
|
|
||
|
const declarations: CommandDeclaration[] = [
|
||
|
{
|
||
|
name: 'insertText',
|
||
|
},
|
||
|
{
|
||
|
name: 'editor.undo',
|
||
|
},
|
||
|
{
|
||
|
name: 'editor.redo',
|
||
|
},
|
||
|
{
|
||
|
name: 'selectedText',
|
||
|
},
|
||
|
{
|
||
|
name: 'replaceSelection',
|
||
|
},
|
||
|
{
|
||
|
name: 'editor.setText',
|
||
|
},
|
||
|
{
|
||
|
name: 'editor.focus',
|
||
|
},
|
||
|
{
|
||
|
name: 'editor.execCommand',
|
||
|
},
|
||
|
];
|
||
|
|
||
|
export default declarations;
|