mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
30 lines
686 B
TypeScript
30 lines
686 B
TypeScript
import { utils, CommandRuntime, CommandDeclaration } from '../services/CommandService';
|
|
import { _ } from 'lib/locale';
|
|
|
|
export const declaration:CommandDeclaration = {
|
|
name: 'historyForward',
|
|
label: () => _('Forward'),
|
|
iconName: 'icon-forward',
|
|
};
|
|
|
|
interface Props {
|
|
hasForwardNotes: boolean,
|
|
}
|
|
|
|
export const runtime = ():CommandRuntime => {
|
|
return {
|
|
execute: async (props:Props) => {
|
|
if (!props.hasForwardNotes) return;
|
|
utils.store.dispatch({
|
|
type: 'HISTORY_FORWARD',
|
|
});
|
|
},
|
|
isEnabled: (props:Props) => {
|
|
return props.hasForwardNotes;
|
|
},
|
|
mapStateToProps: (state:any) => {
|
|
return { hasForwardNotes: state.forwardHistoryNotes.length > 0 };
|
|
},
|
|
};
|
|
};
|