mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
56 lines
1.3 KiB
TypeScript
56 lines
1.3 KiB
TypeScript
import { utils, CommandRuntime, CommandDeclaration } from '../services/CommandService';
|
|
const { _ } = require('lib/locale');
|
|
const { reg } = require('lib/registry.js');
|
|
|
|
export const declaration:CommandDeclaration = {
|
|
name: 'synchronize',
|
|
label: () => _('Synchronise'),
|
|
iconName: 'fa-sync-alt',
|
|
};
|
|
|
|
export const runtime = ():CommandRuntime => {
|
|
return {
|
|
execute: async ({ syncStarted }:any) => {
|
|
const action = syncStarted ? 'cancel' : 'start';
|
|
|
|
if (!(await reg.syncTarget().isAuthenticated())) {
|
|
if (reg.syncTarget().authRouteName()) {
|
|
utils.store.dispatch({
|
|
type: 'NAV_GO',
|
|
routeName: reg.syncTarget().authRouteName(),
|
|
});
|
|
return 'auth';
|
|
}
|
|
|
|
reg.logger().info('Not authentified with sync target - please check your credential.');
|
|
return 'error';
|
|
}
|
|
|
|
let sync = null;
|
|
try {
|
|
sync = await reg.syncTarget().synchronizer();
|
|
} catch (error) {
|
|
reg.logger().info('Could not acquire synchroniser:');
|
|
reg.logger().info(error);
|
|
return 'error';
|
|
}
|
|
|
|
if (action == 'cancel') {
|
|
sync.cancel();
|
|
return 'cancel';
|
|
} else {
|
|
reg.scheduleSync(0);
|
|
return 'sync';
|
|
}
|
|
},
|
|
isEnabled: (props:any) => {
|
|
return !props.syncStarted;
|
|
},
|
|
mapStateToProps: (state:any):any => {
|
|
return {
|
|
syncStarted: state.syncStarted,
|
|
};
|
|
},
|
|
};
|
|
};
|