mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
701 lines
22 KiB
TypeScript
701 lines
22 KiB
TypeScript
import ResourceEditWatcher from 'lib/services/ResourceEditWatcher/index';
|
|
import CommandService from 'lib/services/CommandService';
|
|
import KeymapService from 'lib/services/KeymapService';
|
|
import PluginService from 'lib/services/plugins/PluginService';
|
|
import resourceEditWatcherReducer, { defaultState as resourceEditWatcherDefaultState } from 'lib/services/ResourceEditWatcher/reducer';
|
|
import { defaultState, State } from 'lib/reducer';
|
|
import PluginRunner from './services/plugins/PluginRunner';
|
|
import PlatformImplementation from './services/plugins/PlatformImplementation';
|
|
import shim from 'lib/shim';
|
|
import AlarmService from 'lib/services/AlarmService';
|
|
import AlarmServiceDriverNode from 'lib/services/AlarmServiceDriverNode';
|
|
import Logger, { TargetType } from 'lib/Logger';
|
|
import Setting from 'lib/models/Setting';
|
|
import actionApi from 'lib/services/rest/actionApi.desktop';
|
|
import BaseApplication from 'lib/BaseApplication';
|
|
import { _, setLocale } from 'lib/locale';
|
|
|
|
require('app-module-path').addPath(__dirname);
|
|
|
|
const { FoldersScreenUtils } = require('lib/folders-screen-utils.js');
|
|
const MasterKey = require('lib/models/MasterKey');
|
|
const Folder = require('lib/models/Folder');
|
|
const fs = require('fs-extra');
|
|
const Tag = require('lib/models/Tag.js');
|
|
const { reg } = require('lib/registry.js');
|
|
const packageInfo = require('./packageInfo.js');
|
|
const DecryptionWorker = require('lib/services/DecryptionWorker');
|
|
const ResourceService = require('lib/services/ResourceService');
|
|
const ClipperServer = require('lib/ClipperServer');
|
|
const ExternalEditWatcher = require('lib/services/ExternalEditWatcher');
|
|
const bridge = require('electron').remote.require('./bridge').default;
|
|
const { webFrame } = require('electron');
|
|
const Menu = bridge().Menu;
|
|
const PluginManager = require('lib/services/PluginManager');
|
|
const RevisionService = require('lib/services/RevisionService');
|
|
const MigrationService = require('lib/services/MigrationService');
|
|
const TemplateUtils = require('lib/TemplateUtils');
|
|
const CssUtils = require('lib/CssUtils');
|
|
// const populateDatabase = require('lib/services/debug/populateDatabase').default;
|
|
|
|
const commands = [
|
|
require('./gui/NoteListControls/commands/focusSearch'),
|
|
require('./gui/MainScreen/commands/editAlarm'),
|
|
require('./gui/MainScreen/commands/exportPdf'),
|
|
require('./gui/MainScreen/commands/hideModalMessage'),
|
|
require('./gui/MainScreen/commands/moveToFolder'),
|
|
require('./gui/MainScreen/commands/newNote'),
|
|
require('./gui/MainScreen/commands/newFolder'),
|
|
require('./gui/MainScreen/commands/newTodo'),
|
|
require('./gui/MainScreen/commands/print'),
|
|
require('./gui/MainScreen/commands/renameFolder'),
|
|
require('./gui/MainScreen/commands/renameTag'),
|
|
require('./gui/MainScreen/commands/search'),
|
|
require('./gui/MainScreen/commands/selectTemplate'),
|
|
require('./gui/MainScreen/commands/setTags'),
|
|
require('./gui/MainScreen/commands/showModalMessage'),
|
|
require('./gui/MainScreen/commands/showNoteContentProperties'),
|
|
require('./gui/MainScreen/commands/showNoteProperties'),
|
|
require('./gui/MainScreen/commands/showShareNoteDialog'),
|
|
require('./gui/MainScreen/commands/toggleNoteList'),
|
|
require('./gui/MainScreen/commands/toggleSidebar'),
|
|
require('./gui/MainScreen/commands/toggleVisiblePanes'),
|
|
require('./gui/MainScreen/commands/toggleEditors'),
|
|
require('./gui/NoteEditor/commands/focusElementNoteBody'),
|
|
require('./gui/NoteEditor/commands/focusElementNoteTitle'),
|
|
require('./gui/NoteEditor/commands/showLocalSearch'),
|
|
require('./gui/NoteEditor/commands/showRevisions'),
|
|
require('./gui/NoteList/commands/focusElementNoteList'),
|
|
require('./gui/SideBar/commands/focusElementSideBar'),
|
|
];
|
|
|
|
// Commands that are not tied to any particular component.
|
|
// The runtime for these commands can be loaded when the app starts.
|
|
const globalCommands = [
|
|
require('./commands/focusElement'),
|
|
require('./commands/startExternalEditing'),
|
|
require('./commands/stopExternalEditing'),
|
|
require('./commands/toggleExternalEditing'),
|
|
require('./commands/copyDevCommand'),
|
|
require('lib/commands/synchronize'),
|
|
require('lib/commands/historyBackward'),
|
|
require('lib/commands/historyForward'),
|
|
];
|
|
|
|
const editorCommandDeclarations = require('./gui/NoteEditor/commands/editorCommandDeclarations').default;
|
|
|
|
const pluginClasses = [
|
|
require('./plugins/GotoAnything.min'),
|
|
];
|
|
|
|
interface AppStateRoute {
|
|
type: string,
|
|
routeName: string,
|
|
props: any,
|
|
}
|
|
|
|
export interface AppState extends State {
|
|
route: AppStateRoute,
|
|
navHistory: any[],
|
|
noteVisiblePanes: string[],
|
|
sidebarVisibility: boolean,
|
|
noteListVisibility: boolean,
|
|
windowContentSize: any,
|
|
watchedNoteFiles: string[],
|
|
lastEditorScrollPercents: any,
|
|
devToolsVisible: boolean,
|
|
visibleDialogs: any, // empty object if no dialog is visible. Otherwise contains the list of visible dialogs.
|
|
focusedField: string,
|
|
|
|
// Extra reducer keys go here
|
|
watchedResources: any,
|
|
}
|
|
|
|
const appDefaultState:AppState = {
|
|
...defaultState,
|
|
route: {
|
|
type: 'NAV_GO',
|
|
routeName: 'Main',
|
|
props: {},
|
|
},
|
|
navHistory: [],
|
|
noteVisiblePanes: ['editor', 'viewer'],
|
|
sidebarVisibility: true,
|
|
noteListVisibility: true,
|
|
windowContentSize: bridge().windowContentSize(),
|
|
watchedNoteFiles: [],
|
|
lastEditorScrollPercents: {},
|
|
devToolsVisible: false,
|
|
visibleDialogs: {}, // empty object if no dialog is visible. Otherwise contains the list of visible dialogs.
|
|
focusedField: null,
|
|
...resourceEditWatcherDefaultState,
|
|
};
|
|
|
|
class Application extends BaseApplication {
|
|
|
|
constructor() {
|
|
super();
|
|
|
|
this.bridge_nativeThemeUpdated = this.bridge_nativeThemeUpdated.bind(this);
|
|
}
|
|
|
|
hasGui() {
|
|
return true;
|
|
}
|
|
|
|
checkForUpdateLoggerPath() {
|
|
return `${Setting.value('profileDir')}/log-autoupdater.txt`;
|
|
}
|
|
|
|
reducer(state:AppState = appDefaultState, action:any) {
|
|
let newState = state;
|
|
|
|
try {
|
|
switch (action.type) {
|
|
|
|
case 'NAV_BACK':
|
|
case 'NAV_GO':
|
|
|
|
{
|
|
const goingBack = action.type === 'NAV_BACK';
|
|
|
|
if (goingBack && !state.navHistory.length) break;
|
|
|
|
const currentRoute = state.route;
|
|
|
|
newState = Object.assign({}, state);
|
|
const newNavHistory = state.navHistory.slice();
|
|
|
|
if (goingBack) {
|
|
let newAction = null;
|
|
while (newNavHistory.length) {
|
|
newAction = newNavHistory.pop();
|
|
if (newAction.routeName !== state.route.routeName) break;
|
|
}
|
|
|
|
if (!newAction) break;
|
|
|
|
action = newAction;
|
|
}
|
|
|
|
if (!goingBack) newNavHistory.push(currentRoute);
|
|
newState.navHistory = newNavHistory;
|
|
newState.route = action;
|
|
}
|
|
break;
|
|
|
|
case 'WINDOW_CONTENT_SIZE_SET':
|
|
|
|
newState = Object.assign({}, state);
|
|
newState.windowContentSize = action.size;
|
|
break;
|
|
|
|
case 'NOTE_VISIBLE_PANES_TOGGLE':
|
|
|
|
{
|
|
const getNextLayout = (currentLayout:any) => {
|
|
currentLayout = panes.length === 2 ? 'both' : currentLayout[0];
|
|
|
|
let paneOptions;
|
|
if (state.settings.layoutButtonSequence === Setting.LAYOUT_EDITOR_VIEWER) {
|
|
paneOptions = ['editor', 'viewer'];
|
|
} else if (state.settings.layoutButtonSequence === Setting.LAYOUT_EDITOR_SPLIT) {
|
|
paneOptions = ['editor', 'both'];
|
|
} else if (state.settings.layoutButtonSequence === Setting.LAYOUT_VIEWER_SPLIT) {
|
|
paneOptions = ['viewer', 'both'];
|
|
} else {
|
|
paneOptions = ['editor', 'viewer', 'both'];
|
|
}
|
|
|
|
const currentLayoutIndex = paneOptions.indexOf(currentLayout);
|
|
const nextLayoutIndex = currentLayoutIndex === paneOptions.length - 1 ? 0 : currentLayoutIndex + 1;
|
|
|
|
const nextLayout = paneOptions[nextLayoutIndex];
|
|
return nextLayout === 'both' ? ['editor', 'viewer'] : [nextLayout];
|
|
};
|
|
|
|
newState = Object.assign({}, state);
|
|
|
|
const panes = state.noteVisiblePanes.slice();
|
|
newState.noteVisiblePanes = getNextLayout(panes);
|
|
}
|
|
break;
|
|
|
|
case 'NOTE_VISIBLE_PANES_SET':
|
|
|
|
newState = Object.assign({}, state);
|
|
newState.noteVisiblePanes = action.panes;
|
|
break;
|
|
|
|
case 'SIDEBAR_VISIBILITY_TOGGLE':
|
|
|
|
newState = Object.assign({}, state);
|
|
newState.sidebarVisibility = !state.sidebarVisibility;
|
|
break;
|
|
|
|
case 'SIDEBAR_VISIBILITY_SET':
|
|
newState = Object.assign({}, state);
|
|
newState.sidebarVisibility = action.visibility;
|
|
break;
|
|
|
|
case 'NOTELIST_VISIBILITY_TOGGLE':
|
|
newState = Object.assign({}, state);
|
|
newState.noteListVisibility = !state.noteListVisibility;
|
|
break;
|
|
|
|
case 'NOTELIST_VISIBILITY_SET':
|
|
newState = Object.assign({}, state);
|
|
newState.noteListVisibility = action.visibility;
|
|
break;
|
|
|
|
case 'NOTE_FILE_WATCHER_ADD':
|
|
|
|
if (newState.watchedNoteFiles.indexOf(action.id) < 0) {
|
|
newState = Object.assign({}, state);
|
|
const watchedNoteFiles = newState.watchedNoteFiles.slice();
|
|
watchedNoteFiles.push(action.id);
|
|
newState.watchedNoteFiles = watchedNoteFiles;
|
|
}
|
|
break;
|
|
|
|
case 'NOTE_FILE_WATCHER_REMOVE':
|
|
|
|
{
|
|
newState = Object.assign({}, state);
|
|
const idx = newState.watchedNoteFiles.indexOf(action.id);
|
|
if (idx >= 0) {
|
|
const watchedNoteFiles = newState.watchedNoteFiles.slice();
|
|
watchedNoteFiles.splice(idx, 1);
|
|
newState.watchedNoteFiles = watchedNoteFiles;
|
|
}
|
|
}
|
|
break;
|
|
|
|
case 'NOTE_FILE_WATCHER_CLEAR':
|
|
|
|
if (state.watchedNoteFiles.length) {
|
|
newState = Object.assign({}, state);
|
|
newState.watchedNoteFiles = [];
|
|
}
|
|
break;
|
|
|
|
case 'EDITOR_SCROLL_PERCENT_SET':
|
|
|
|
{
|
|
newState = Object.assign({}, state);
|
|
const newPercents = Object.assign({}, newState.lastEditorScrollPercents);
|
|
newPercents[action.noteId] = action.percent;
|
|
newState.lastEditorScrollPercents = newPercents;
|
|
}
|
|
break;
|
|
|
|
case 'NOTE_DEVTOOLS_TOGGLE':
|
|
newState = Object.assign({}, state);
|
|
newState.devToolsVisible = !newState.devToolsVisible;
|
|
break;
|
|
|
|
case 'NOTE_DEVTOOLS_SET':
|
|
newState = Object.assign({}, state);
|
|
newState.devToolsVisible = action.value;
|
|
break;
|
|
|
|
case 'VISIBLE_DIALOGS_ADD':
|
|
newState = Object.assign({}, state);
|
|
newState.visibleDialogs = Object.assign({}, newState.visibleDialogs);
|
|
newState.visibleDialogs[action.name] = true;
|
|
break;
|
|
|
|
case 'VISIBLE_DIALOGS_REMOVE':
|
|
newState = Object.assign({}, state);
|
|
newState.visibleDialogs = Object.assign({}, newState.visibleDialogs);
|
|
delete newState.visibleDialogs[action.name];
|
|
break;
|
|
|
|
case 'FOCUS_SET':
|
|
|
|
newState = Object.assign({}, state);
|
|
newState.focusedField = action.field;
|
|
break;
|
|
|
|
case 'FOCUS_CLEAR':
|
|
|
|
// A field can only clear its own state
|
|
if (action.field === state.focusedField) {
|
|
newState = Object.assign({}, state);
|
|
newState.focusedField = null;
|
|
}
|
|
break;
|
|
|
|
}
|
|
} catch (error) {
|
|
error.message = `In reducer: ${error.message} Action: ${JSON.stringify(action)}`;
|
|
throw error;
|
|
}
|
|
|
|
newState = resourceEditWatcherReducer(newState, action);
|
|
newState = super.reducer(newState, action);
|
|
|
|
return newState;
|
|
}
|
|
|
|
toggleDevTools(visible:boolean) {
|
|
if (visible) {
|
|
bridge().openDevTools();
|
|
} else {
|
|
bridge().closeDevTools();
|
|
}
|
|
}
|
|
|
|
async generalMiddleware(store:any, next:any, action:any) {
|
|
if (action.type == 'SETTING_UPDATE_ONE' && action.key == 'locale' || action.type == 'SETTING_UPDATE_ALL') {
|
|
setLocale(Setting.value('locale'));
|
|
// The bridge runs within the main process, with its own instance of locale.js
|
|
// so it needs to be set too here.
|
|
bridge().setLocale(Setting.value('locale'));
|
|
}
|
|
|
|
if (action.type == 'SETTING_UPDATE_ONE' && action.key == 'showTrayIcon' || action.type == 'SETTING_UPDATE_ALL') {
|
|
this.updateTray();
|
|
}
|
|
|
|
if (action.type == 'SETTING_UPDATE_ONE' && action.key == 'style.editor.fontFamily' || action.type == 'SETTING_UPDATE_ALL') {
|
|
this.updateEditorFont();
|
|
}
|
|
|
|
if (action.type == 'SETTING_UPDATE_ONE' && action.key == 'windowContentZoomFactor' || action.type == 'SETTING_UPDATE_ALL') {
|
|
webFrame.setZoomFactor(Setting.value('windowContentZoomFactor') / 100);
|
|
}
|
|
|
|
if (['EVENT_NOTE_ALARM_FIELD_CHANGE', 'NOTE_DELETE'].indexOf(action.type) >= 0) {
|
|
await AlarmService.updateNoteNotification(action.id, action.type === 'NOTE_DELETE');
|
|
}
|
|
|
|
const result = await super.generalMiddleware(store, next, action);
|
|
const newState = store.getState();
|
|
|
|
if (['NOTE_VISIBLE_PANES_TOGGLE', 'NOTE_VISIBLE_PANES_SET'].indexOf(action.type) >= 0) {
|
|
Setting.setValue('noteVisiblePanes', newState.noteVisiblePanes);
|
|
}
|
|
|
|
if (['SIDEBAR_VISIBILITY_TOGGLE', 'SIDEBAR_VISIBILITY_SET'].indexOf(action.type) >= 0) {
|
|
Setting.setValue('sidebarVisibility', newState.sidebarVisibility);
|
|
}
|
|
|
|
if (['NOTELIST_VISIBILITY_TOGGLE', 'NOTELIST_VISIBILITY_SET'].indexOf(action.type) >= 0) {
|
|
Setting.setValue('noteListVisibility', newState.noteListVisibility);
|
|
}
|
|
|
|
if (['NOTE_DEVTOOLS_TOGGLE', 'NOTE_DEVTOOLS_SET'].indexOf(action.type) >= 0) {
|
|
this.toggleDevTools(newState.devToolsVisible);
|
|
}
|
|
|
|
if (action.type === 'FOLDER_AND_NOTE_SELECT') {
|
|
await Folder.expandTree(newState.folders, action.folderId);
|
|
}
|
|
|
|
if (this.hasGui() && ((action.type == 'SETTING_UPDATE_ONE' && ['themeAutoDetect', 'theme', 'preferredLightTheme', 'preferredDarkTheme'].includes(action.key)) || action.type == 'SETTING_UPDATE_ALL')) {
|
|
this.handleThemeAutoDetect();
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
handleThemeAutoDetect() {
|
|
if (!Setting.value('themeAutoDetect')) return;
|
|
|
|
if (bridge().shouldUseDarkColors()) {
|
|
Setting.setValue('theme', Setting.value('preferredDarkTheme'));
|
|
} else {
|
|
Setting.setValue('theme', Setting.value('preferredLightTheme'));
|
|
}
|
|
}
|
|
|
|
bridge_nativeThemeUpdated() {
|
|
this.handleThemeAutoDetect();
|
|
}
|
|
|
|
updateTray() {
|
|
const app = bridge().electronApp();
|
|
|
|
if (app.trayShown() === Setting.value('showTrayIcon')) return;
|
|
|
|
if (!Setting.value('showTrayIcon')) {
|
|
app.destroyTray();
|
|
} else {
|
|
const contextMenu = Menu.buildFromTemplate([
|
|
{ label: _('Open %s', app.electronApp().name), click: () => { app.window().show(); } },
|
|
{ type: 'separator' },
|
|
{ label: _('Exit'), click: () => { app.quit(); } },
|
|
]);
|
|
app.createTray(contextMenu);
|
|
}
|
|
}
|
|
|
|
updateEditorFont() {
|
|
const fontFamilies = [];
|
|
if (Setting.value('style.editor.fontFamily')) fontFamilies.push(`"${Setting.value('style.editor.fontFamily')}"`);
|
|
fontFamilies.push('monospace');
|
|
|
|
// The '*' and '!important' parts are necessary to make sure Russian text is displayed properly
|
|
// https://github.com/laurent22/joplin/issues/155
|
|
|
|
const css = `.CodeMirror * { font-family: ${fontFamilies.join(', ')} !important; }`;
|
|
const styleTag = document.createElement('style');
|
|
styleTag.type = 'text/css';
|
|
styleTag.appendChild(document.createTextNode(css));
|
|
document.head.appendChild(styleTag);
|
|
}
|
|
|
|
async loadCustomCss(filePath:string) {
|
|
let cssString = '';
|
|
if (await fs.pathExists(filePath)) {
|
|
try {
|
|
cssString = await fs.readFile(filePath, 'utf-8');
|
|
|
|
} catch (error) {
|
|
let msg = error.message ? error.message : '';
|
|
msg = `Could not load custom css from ${filePath}\n${msg}`;
|
|
error.message = msg;
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
return cssString;
|
|
}
|
|
|
|
async start(argv:string[]):Promise<any> {
|
|
const electronIsDev = require('electron-is-dev');
|
|
|
|
await fs.mkdirp(Setting.value('templateDir'), 0o755);
|
|
|
|
// If running inside a package, the command line, instead of being "node.exe <path> <flags>" is "joplin.exe <flags>" so
|
|
// insert an extra argument so that they can be processed in a consistent way everywhere.
|
|
if (!electronIsDev) argv.splice(1, 0, '.');
|
|
|
|
argv = await super.start(argv);
|
|
|
|
await this.applySettingsSideEffects();
|
|
|
|
if (Setting.value('sync.upgradeState') === Setting.SYNC_UPGRADE_STATE_MUST_DO) {
|
|
reg.logger().info('app.start: doing upgradeSyncTarget action');
|
|
bridge().window().show();
|
|
return { action: 'upgradeSyncTarget' };
|
|
}
|
|
|
|
reg.logger().info('app.start: doing regular boot');
|
|
|
|
const dir = Setting.value('profileDir');
|
|
|
|
// Loads app-wide styles. (Markdown preview-specific styles loaded in app.js)
|
|
const filename = Setting.custom_css_files.JOPLIN_APP;
|
|
await CssUtils.injectCustomStyles(`${dir}/${filename}`);
|
|
|
|
const keymapService = KeymapService.instance();
|
|
|
|
try {
|
|
await keymapService.loadCustomKeymap(`${dir}/keymap-desktop.json`);
|
|
} catch (err) {
|
|
reg.logger().error(err.message);
|
|
}
|
|
|
|
AlarmService.setDriver(new AlarmServiceDriverNode({ appName: packageInfo.build.appId }));
|
|
AlarmService.setLogger(reg.logger());
|
|
|
|
reg.setShowErrorMessageBoxHandler((message:string) => { bridge().showErrorMessageBox(message); });
|
|
|
|
if (Setting.value('flagOpenDevTools')) {
|
|
bridge().openDevTools();
|
|
}
|
|
|
|
PluginManager.instance().dispatch_ = this.dispatch.bind(this);
|
|
PluginManager.instance().setLogger(reg.logger());
|
|
PluginManager.instance().register(pluginClasses);
|
|
|
|
this.initRedux();
|
|
|
|
CommandService.instance().initialize(this.store());
|
|
|
|
for (const command of commands) {
|
|
CommandService.instance().registerDeclaration(command.declaration);
|
|
}
|
|
|
|
for (const command of globalCommands) {
|
|
CommandService.instance().registerDeclaration(command.declaration);
|
|
CommandService.instance().registerRuntime(command.declaration.name, command.runtime());
|
|
}
|
|
|
|
for (const declaration of editorCommandDeclarations) {
|
|
CommandService.instance().registerDeclaration(declaration);
|
|
}
|
|
|
|
// Since the settings need to be loaded before the store is created, it will never
|
|
// receive the SETTING_UPDATE_ALL even, which mean state.settings will not be
|
|
// initialised. So we manually call dispatchUpdateAll() to force an update.
|
|
Setting.dispatchUpdateAll();
|
|
|
|
await FoldersScreenUtils.refreshFolders();
|
|
|
|
const tags = await Tag.allWithNotes();
|
|
|
|
this.dispatch({
|
|
type: 'TAG_UPDATE_ALL',
|
|
items: tags,
|
|
});
|
|
|
|
const masterKeys = await MasterKey.all();
|
|
|
|
this.dispatch({
|
|
type: 'MASTERKEY_UPDATE_ALL',
|
|
items: masterKeys,
|
|
});
|
|
|
|
this.store().dispatch({
|
|
type: 'FOLDER_SELECT',
|
|
id: Setting.value('activeFolderId'),
|
|
});
|
|
|
|
this.store().dispatch({
|
|
type: 'FOLDER_SET_COLLAPSED_ALL',
|
|
ids: Setting.value('collapsedFolderIds'),
|
|
});
|
|
|
|
// Loads custom Markdown preview styles
|
|
const cssString = await CssUtils.loadCustomCss(`${Setting.value('profileDir')}/userstyle.css`);
|
|
this.store().dispatch({
|
|
type: 'LOAD_CUSTOM_CSS',
|
|
css: cssString,
|
|
});
|
|
|
|
const templates = await TemplateUtils.loadTemplates(Setting.value('templateDir'));
|
|
|
|
this.store().dispatch({
|
|
type: 'TEMPLATE_UPDATE_ALL',
|
|
templates: templates,
|
|
});
|
|
|
|
this.store().dispatch({
|
|
type: 'NOTE_DEVTOOLS_SET',
|
|
value: Setting.value('flagOpenDevTools'),
|
|
});
|
|
|
|
// Note: Auto-update currently doesn't work in Linux: it downloads the update
|
|
// but then doesn't install it on exit.
|
|
if (shim.isWindows() || shim.isMac()) {
|
|
const runAutoUpdateCheck = () => {
|
|
if (Setting.value('autoUpdateEnabled')) {
|
|
bridge().checkForUpdates(true, bridge().window(), this.checkForUpdateLoggerPath(), { includePreReleases: Setting.value('autoUpdate.includePreReleases') });
|
|
}
|
|
};
|
|
|
|
// Initial check on startup
|
|
shim.setTimeout(() => { runAutoUpdateCheck(); }, 5000);
|
|
// Then every x hours
|
|
shim.setInterval(() => { runAutoUpdateCheck(); }, 12 * 60 * 60 * 1000);
|
|
}
|
|
|
|
this.updateTray();
|
|
|
|
shim.setTimeout(() => {
|
|
AlarmService.garbageCollect();
|
|
}, 1000 * 60 * 60);
|
|
|
|
if (Setting.value('startMinimized') && Setting.value('showTrayIcon')) {
|
|
// Keep it hidden
|
|
} else {
|
|
bridge().window().show();
|
|
}
|
|
|
|
ResourceService.runInBackground();
|
|
|
|
if (Setting.value('env') === 'dev') {
|
|
AlarmService.updateAllNotifications();
|
|
} else {
|
|
reg.scheduleSync(1000).then(() => {
|
|
// Wait for the first sync before updating the notifications, since synchronisation
|
|
// might change the notifications.
|
|
AlarmService.updateAllNotifications();
|
|
|
|
DecryptionWorker.instance().scheduleStart();
|
|
});
|
|
}
|
|
|
|
const clipperLogger = new Logger();
|
|
clipperLogger.addTarget(TargetType.File, { path: `${Setting.value('profileDir')}/log-clipper.txt` });
|
|
clipperLogger.addTarget(TargetType.Console);
|
|
|
|
ClipperServer.instance().initialize(actionApi);
|
|
ClipperServer.instance().setLogger(clipperLogger);
|
|
ClipperServer.instance().setDispatch(this.store().dispatch);
|
|
|
|
if (Setting.value('clipperServer.autoStart')) {
|
|
ClipperServer.instance().start();
|
|
}
|
|
|
|
ExternalEditWatcher.instance().setLogger(reg.logger());
|
|
ExternalEditWatcher.instance().dispatch = this.store().dispatch;
|
|
|
|
ResourceEditWatcher.instance().initialize(reg.logger(), (action:any) => { this.store().dispatch(action); });
|
|
|
|
RevisionService.instance().runInBackground();
|
|
|
|
// Make it available to the console window - useful to call revisionService.collectRevisions()
|
|
(window as any).joplin = () => {
|
|
return {
|
|
revisionService: RevisionService.instance(),
|
|
migrationService: MigrationService.instance(),
|
|
decryptionWorker: DecryptionWorker.instance(),
|
|
bridge: bridge(),
|
|
};
|
|
};
|
|
|
|
bridge().addEventListener('nativeThemeUpdated', this.bridge_nativeThemeUpdated);
|
|
|
|
const pluginLogger = new Logger();
|
|
pluginLogger.addTarget(TargetType.File, { path: `${Setting.value('profileDir')}/log-plugins.txt` });
|
|
pluginLogger.addTarget(TargetType.Console, { prefix: 'Plugin Service:' });
|
|
pluginLogger.setLevel(Setting.value('env') == 'dev' ? Logger.LEVEL_DEBUG : Logger.LEVEL_INFO);
|
|
|
|
const pluginRunner = new PluginRunner();
|
|
PluginService.instance().setLogger(pluginLogger);
|
|
PluginService.instance().initialize(PlatformImplementation.instance(), pluginRunner, this.store());
|
|
|
|
try {
|
|
if (await shim.fsDriver().exists(Setting.value('pluginDir'))) await PluginService.instance().loadAndRunPlugins(Setting.value('pluginDir'));
|
|
} catch (error) {
|
|
this.logger().error(`There was an error loading plugins from ${Setting.value('pluginDir')}:`, error);
|
|
}
|
|
|
|
try {
|
|
if (Setting.value('plugins.devPluginPaths')) {
|
|
const paths = Setting.value('plugins.devPluginPaths').split(',').map((p:string) => p.trim());
|
|
await PluginService.instance().loadAndRunPlugins(paths);
|
|
}
|
|
|
|
// Also load dev plugins that have passed via command line arguments
|
|
if (Setting.value('startupDevPlugins')) {
|
|
await PluginService.instance().loadAndRunPlugins(Setting.value('startupDevPlugins'));
|
|
}
|
|
} catch (error) {
|
|
this.logger().error(`There was an error loading plugins from ${Setting.value('plugins.devPluginPaths')}:`, error);
|
|
}
|
|
|
|
// await populateDatabase(reg.db());
|
|
|
|
// setTimeout(() => {
|
|
// console.info(CommandService.instance().commandsToMarkdownTable(this.store().getState()));
|
|
// }, 2000);
|
|
|
|
return null;
|
|
}
|
|
|
|
}
|
|
|
|
let application_:Application = null;
|
|
|
|
function app() {
|
|
if (!application_) application_ = new Application();
|
|
return application_;
|
|
}
|
|
|
|
export default app;
|