mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
31 lines
718 B
TypeScript
31 lines
718 B
TypeScript
import { utils, CommandRuntime, CommandDeclaration } from '../services/CommandService';
|
|
import { _ } from 'lib/locale';
|
|
|
|
export const declaration:CommandDeclaration = {
|
|
name: 'historyBackward',
|
|
label: () => _('Back'),
|
|
// iconName: 'fa-arrow-left',
|
|
iconName: 'icon-back',
|
|
};
|
|
|
|
interface Props {
|
|
hasBackwardNotes: boolean,
|
|
}
|
|
|
|
export const runtime = ():CommandRuntime => {
|
|
return {
|
|
execute: async (props:Props) => {
|
|
if (!props.hasBackwardNotes) return;
|
|
utils.store.dispatch({
|
|
type: 'HISTORY_BACKWARD',
|
|
});
|
|
},
|
|
isEnabled: (props:Props) => {
|
|
return props.hasBackwardNotes;
|
|
},
|
|
mapStateToProps: (state:any) => {
|
|
return { hasBackwardNotes: state.backwardHistoryNotes.length > 0 };
|
|
},
|
|
};
|
|
};
|