mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
19 lines
434 B
TypeScript
19 lines
434 B
TypeScript
|
import { CommandDeclaration, CommandRuntime } from '../../../lib/services/CommandService';
|
||
|
const { _ } = require('lib/locale');
|
||
|
|
||
|
export const declaration:CommandDeclaration = {
|
||
|
name: 'toggleSidebar',
|
||
|
label: () => _('Toggle sidebar'),
|
||
|
iconName: 'fa-bars',
|
||
|
};
|
||
|
|
||
|
export const runtime = (comp:any):CommandRuntime => {
|
||
|
return {
|
||
|
execute: async () => {
|
||
|
comp.props.dispatch({
|
||
|
type: 'SIDEBAR_VISIBILITY_TOGGLE',
|
||
|
});
|
||
|
},
|
||
|
};
|
||
|
};
|