import * as React from 'react'; import ResizableLayout from '../ResizableLayout/ResizableLayout'; import findItemByKey from '../ResizableLayout/utils/findItemByKey'; import { MoveButtonClickEvent } from '../ResizableLayout/MoveButtons'; import { move } from '../ResizableLayout/utils/movements'; import { LayoutItem } from '../ResizableLayout/utils/types'; import NoteEditor from '../NoteEditor/NoteEditor'; import NoteContentPropertiesDialog from '../NoteContentPropertiesDialog'; import ShareNoteDialog from '../ShareNoteDialog'; import CommandService from '@joplin/lib/services/CommandService'; import { PluginHtmlContents, PluginStates, utils as pluginUtils } from '@joplin/lib/services/plugins/reducer'; import Sidebar from '../Sidebar/Sidebar'; import UserWebview from '../../services/plugins/UserWebview'; import UserWebviewDialog from '../../services/plugins/UserWebviewDialog'; import { ContainerType } from '@joplin/lib/services/plugins/WebviewController'; import { stateUtils } from '@joplin/lib/reducer'; import InteropServiceHelper from '../../InteropServiceHelper'; import { _ } from '@joplin/lib/locale'; import NoteListWrapper from '../NoteListWrapper/NoteListWrapper'; import { AppState } from '../../app.reducer'; import { saveLayout, loadLayout } from '../ResizableLayout/utils/persist'; import Setting from '@joplin/lib/models/Setting'; import produce from 'immer'; import shim from '@joplin/lib/shim'; import bridge from '../../services/bridge'; import time from '@joplin/lib/time'; import styled from 'styled-components'; import { themeStyle } from '@joplin/lib/theme'; import validateLayout from '../ResizableLayout/utils/validateLayout'; import iterateItems from '../ResizableLayout/utils/iterateItems'; import removeItem from '../ResizableLayout/utils/removeItem'; import EncryptionService from '@joplin/lib/services/e2ee/EncryptionService'; import ShareFolderDialog from '../ShareFolderDialog/ShareFolderDialog'; import { ShareInvitation } from '@joplin/lib/services/share/reducer'; import removeKeylessItems from '../ResizableLayout/utils/removeKeylessItems'; import { localSyncInfoFromState } from '@joplin/lib/services/synchronizer/syncInfoUtils'; import { parseCallbackUrl } from '@joplin/lib/callbackUrlUtils'; import ElectronAppWrapper from '../../ElectronAppWrapper'; import { showMissingMasterKeyMessage } from '@joplin/lib/services/e2ee/utils'; import { MasterKeyEntity } from '@joplin/lib/services/e2ee/types'; import commands from './commands/index'; import invitationRespond from '../../services/share/invitationRespond'; import restart from '../../services/restart'; const { connect } = require('react-redux'); const { PromptDialog } = require('../PromptDialog.min.js'); const NotePropertiesDialog = require('../NotePropertiesDialog.min.js'); const PluginManager = require('@joplin/lib/services/PluginManager'); const ipcRenderer = require('electron').ipcRenderer; interface LayerModalState { visible: boolean; message: string; } interface Props { plugins: PluginStates; pluginHtmlContents: PluginHtmlContents; pluginsLoaded: boolean; hasNotesBeingSaved: boolean; dispatch: Function; mainLayout: LayoutItem; style: any; layoutMoveMode: boolean; editorNoteStatuses: any; customCss: string; shouldUpgradeSyncTarget: boolean; hasDisabledSyncItems: boolean; hasDisabledEncryptionItems: boolean; showMissingMasterKeyMessage: boolean; showNeedUpgradingMasterKeyMessage: boolean; showShouldReencryptMessage: boolean; showInstallTemplatesPlugin: boolean; themeId: number; settingEditorCodeView: boolean; pluginsLegacy: any; startupPluginsLoaded: boolean; shareInvitations: ShareInvitation[]; isSafeMode: boolean; needApiAuth: boolean; processingShareInvitationResponse: boolean; } interface ShareFolderDialogOptions { folderId: string; visible: boolean; } interface State { promptOptions: any; modalLayer: LayerModalState; notePropertiesDialogOptions: any; noteContentPropertiesDialogOptions: any; shareNoteDialogOptions: any; shareFolderDialogOptions: ShareFolderDialogOptions; } const StyledUserWebviewDialogContainer = styled.div` display: flex; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1000; box-sizing: border-box; `; const defaultLayout: LayoutItem = { key: 'root', children: [ { key: 'sideBar', width: 250 }, { key: 'noteList', width: 250 }, { key: 'editor' }, ], }; class MainScreenComponent extends React.Component { private waitForNotesSavedIID_: any; private isPrinting_: boolean; private styleKey_: string; private styles_: any; private promptOnClose_: Function; constructor(props: Props) { super(props); this.state = { promptOptions: null, modalLayer: { visible: false, message: '', }, notePropertiesDialogOptions: {}, noteContentPropertiesDialogOptions: {}, shareNoteDialogOptions: {}, shareFolderDialogOptions: { visible: false, folderId: '', }, }; this.updateMainLayout(this.buildLayout(props.plugins)); this.registerCommands(); this.setupAppCloseHandling(); this.notePropertiesDialog_close = this.notePropertiesDialog_close.bind(this); this.noteContentPropertiesDialog_close = this.noteContentPropertiesDialog_close.bind(this); this.shareNoteDialog_close = this.shareNoteDialog_close.bind(this); this.shareFolderDialog_close = this.shareFolderDialog_close.bind(this); this.resizableLayout_resize = this.resizableLayout_resize.bind(this); this.resizableLayout_renderItem = this.resizableLayout_renderItem.bind(this); this.resizableLayout_moveButtonClick = this.resizableLayout_moveButtonClick.bind(this); this.window_resize = this.window_resize.bind(this); this.rowHeight = this.rowHeight.bind(this); this.layoutModeListenerKeyDown = this.layoutModeListenerKeyDown.bind(this); window.addEventListener('resize', this.window_resize); ipcRenderer.on('asynchronous-message', (_event: any, message: string, args: any) => { if (message === 'openCallbackUrl') { this.openCallbackUrl(args.url); } }); const initialCallbackUrl = (bridge().electronApp() as ElectronAppWrapper).initialCallbackUrl(); if (initialCallbackUrl) { this.openCallbackUrl(initialCallbackUrl); } } private openCallbackUrl(url: string) { console.log(`openUrl ${url}`); const { command, params } = parseCallbackUrl(url); void CommandService.instance().execute(command.toString(), params.id); } private updateLayoutPluginViews(layout: LayoutItem, plugins: PluginStates) { const infos = pluginUtils.viewInfosByType(plugins, 'webview'); let newLayout = produce(layout, (draftLayout: LayoutItem) => { for (const info of infos) { if (info.view.containerType !== ContainerType.Panel) continue; const viewId = info.view.id; const existingItem = findItemByKey(draftLayout, viewId); if (!existingItem) { draftLayout.children.push({ key: viewId, context: { pluginId: info.plugin.id, }, }); } } }); // Remove layout items that belong to plugins that are no longer // active. const pluginIds = Object.keys(plugins); const itemsToRemove: string[] = []; iterateItems(newLayout, (_itemIndex: number, item: LayoutItem, _parent: LayoutItem) => { if (item.context && item.context.pluginId && !pluginIds.includes(item.context.pluginId)) { itemsToRemove.push(item.key); } return true; }); for (const itemKey of itemsToRemove) { newLayout = removeItem(newLayout, itemKey); } return newLayout !== layout ? validateLayout(newLayout) : layout; } private showShareInvitationNotification(props: Props): boolean { if (props.processingShareInvitationResponse) return false; return !!props.shareInvitations.find(i => i.status === 0); } private buildLayout(plugins: PluginStates): LayoutItem { const rootLayoutSize = this.rootLayoutSize(); const userLayout = Setting.value('ui.layout'); let output = null; try { output = loadLayout(Object.keys(userLayout).length ? userLayout : null, defaultLayout, rootLayoutSize); // For unclear reasons, layout items sometimes end up witout a key. // In that case, we can't do anything with them, so remove them // here. It could be due to the deprecated plugin API, which allowed // creating panel without a key, although in this case it should // have been set automatically. // https://github.com/laurent22/joplin/issues/4926 output = removeKeylessItems(output); if (!findItemByKey(output, 'sideBar') || !findItemByKey(output, 'noteList') || !findItemByKey(output, 'editor')) { throw new Error('"sideBar", "noteList" and "editor" must be present in the layout'); } } catch (error) { console.warn('Could not load layout - restoring default layout:', error); console.warn('Layout was:', userLayout); output = loadLayout(null, defaultLayout, rootLayoutSize); } return this.updateLayoutPluginViews(output, plugins); } window_resize() { this.updateRootLayoutSize(); } setupAppCloseHandling() { this.waitForNotesSavedIID_ = null; // This event is dispached from the main process when the app is about // to close. The renderer process must respond with the "appCloseReply" // and tell the main process whether the app can really be closed or not. // For example, it cannot be closed right away if a note is being saved. // If a note is being saved, we wait till it is saved and then call // "appCloseReply" again. ipcRenderer.on('appClose', async () => { if (this.waitForNotesSavedIID_) shim.clearInterval(this.waitForNotesSavedIID_); this.waitForNotesSavedIID_ = null; const sendCanClose = async (canClose: boolean) => { if (canClose) { Setting.setValue('wasClosedSuccessfully', true); await Setting.saveAll(); } ipcRenderer.send('asynchronous-message', 'appCloseReply', { canClose }); }; await sendCanClose(!this.props.hasNotesBeingSaved); if (this.props.hasNotesBeingSaved) { this.waitForNotesSavedIID_ = shim.setInterval(() => { if (!this.props.hasNotesBeingSaved) { shim.clearInterval(this.waitForNotesSavedIID_); this.waitForNotesSavedIID_ = null; void sendCanClose(true); } }, 50); } }); } notePropertiesDialog_close() { this.setState({ notePropertiesDialogOptions: {} }); } noteContentPropertiesDialog_close() { this.setState({ noteContentPropertiesDialogOptions: {} }); } private shareNoteDialog_close() { this.setState({ shareNoteDialogOptions: {} }); } private shareFolderDialog_close() { this.setState({ shareFolderDialogOptions: { visible: false, folderId: '' } }); } updateMainLayout(layout: LayoutItem) { this.props.dispatch({ type: 'MAIN_LAYOUT_SET', value: layout, }); } updateRootLayoutSize() { this.updateMainLayout(produce(this.props.mainLayout, (draft: any) => { const s = this.rootLayoutSize(); draft.width = s.width; draft.height = s.height; })); } componentDidUpdate(prevProps: Props, prevState: State) { if (prevProps.style.width !== this.props.style.width || prevProps.style.height !== this.props.style.height || this.messageBoxVisible(prevProps) !== this.messageBoxVisible(this.props) ) { this.updateRootLayoutSize(); } if (prevProps.plugins !== this.props.plugins) { this.updateMainLayout(this.updateLayoutPluginViews(this.props.mainLayout, this.props.plugins)); // this.setState({ layout: this.buildLayout(this.props.plugins) }); } if (this.state.notePropertiesDialogOptions !== prevState.notePropertiesDialogOptions) { this.props.dispatch({ type: this.state.notePropertiesDialogOptions && this.state.notePropertiesDialogOptions.visible ? 'VISIBLE_DIALOGS_ADD' : 'VISIBLE_DIALOGS_REMOVE', name: 'noteProperties', }); } if (this.state.noteContentPropertiesDialogOptions !== prevState.noteContentPropertiesDialogOptions) { this.props.dispatch({ type: this.state.noteContentPropertiesDialogOptions && this.state.noteContentPropertiesDialogOptions.visible ? 'VISIBLE_DIALOGS_ADD' : 'VISIBLE_DIALOGS_REMOVE', name: 'noteContentProperties', }); } if (this.state.shareNoteDialogOptions !== prevState.shareNoteDialogOptions) { this.props.dispatch({ type: this.state.shareNoteDialogOptions && this.state.shareNoteDialogOptions.visible ? 'VISIBLE_DIALOGS_ADD' : 'VISIBLE_DIALOGS_REMOVE', name: 'shareNote', }); } if (this.state.shareFolderDialogOptions !== prevState.shareFolderDialogOptions) { this.props.dispatch({ type: this.state.shareFolderDialogOptions && this.state.shareFolderDialogOptions.visible ? 'VISIBLE_DIALOGS_ADD' : 'VISIBLE_DIALOGS_REMOVE', name: 'shareFolder', }); } if (this.props.mainLayout !== prevProps.mainLayout) { const toSave = saveLayout(this.props.mainLayout); Setting.setValue('ui.layout', toSave); } if (prevState.promptOptions !== this.state.promptOptions) { this.props.dispatch({ type: !prevState.promptOptions ? 'VISIBLE_DIALOGS_ADD' : 'VISIBLE_DIALOGS_REMOVE', name: 'promptDialog', }); } } layoutModeListenerKeyDown(event: any) { if (event.key !== 'Escape') return; if (!this.props.layoutMoveMode) return; void CommandService.instance().execute('toggleLayoutMoveMode'); } componentDidMount() { window.addEventListener('keydown', this.layoutModeListenerKeyDown); } componentWillUnmount() { this.unregisterCommands(); window.removeEventListener('resize', this.window_resize); window.removeEventListener('keydown', this.layoutModeListenerKeyDown); } async waitForNoteToSaved(noteId: string) { while (noteId && this.props.editorNoteStatuses[noteId] === 'saving') { console.info('Waiting for note to be saved...', this.props.editorNoteStatuses); await time.msleep(100); } } async printTo_(target: string, options: any) { // Concurrent print calls are disallowed to avoid incorrect settings being restored upon completion if (this.isPrinting_) { console.info(`Printing ${options.path} to ${target} disallowed, already printing.`); return; } this.isPrinting_ = true; // Need to wait for save because the interop service reloads the note from the database await this.waitForNoteToSaved(options.noteId); if (target === 'pdf') { try { const pdfData = await InteropServiceHelper.exportNoteToPdf(options.noteId, { printBackground: true, pageSize: Setting.value('export.pdfPageSize'), landscape: Setting.value('export.pdfPageOrientation') === 'landscape', customCss: this.props.customCss, plugins: this.props.plugins, }); await shim.fsDriver().writeFile(options.path, pdfData, 'buffer'); } catch (error) { console.error(error); bridge().showErrorMessageBox(error.message); } } else if (target === 'printer') { try { await InteropServiceHelper.printNote(options.noteId, { printBackground: true, customCss: this.props.customCss, }); } catch (error) { console.error(error); bridge().showErrorMessageBox(error.message); } } this.isPrinting_ = false; } rootLayoutSize() { return { width: window.innerWidth, height: this.rowHeight(), }; } rowHeight() { if (!this.props) return 0; return this.props.style.height - (this.messageBoxVisible() ? this.messageBoxHeight() : 0); } messageBoxHeight() { return 50; } styles(themeId: number, width: number, height: number, messageBoxVisible: boolean) { const styleKey = [themeId, width, height, messageBoxVisible].join('_'); if (styleKey === this.styleKey_) return this.styles_; const theme = themeStyle(themeId); this.styleKey_ = styleKey; this.styles_ = {}; this.styles_.header = { width: width, }; this.styles_.messageBox = { width: width, height: this.messageBoxHeight(), display: 'flex', alignItems: 'center', paddingLeft: 10, backgroundColor: theme.warningBackgroundColor, }; const rowHeight = height - (messageBoxVisible ? this.styles_.messageBox.height : 0); this.styles_.rowHeight = rowHeight; this.styles_.resizableLayout = { height: rowHeight, }; this.styles_.prompt = { width: width, height: height, }; this.styles_.modalLayer = Object.assign({}, theme.textStyle, { zIndex: 10000, position: 'absolute', top: 0, left: 0, backgroundColor: theme.backgroundColor, width: width - 20, height: height - 20, padding: 10, }); return this.styles_; } private renderNotificationMessage(message: string, callForAction: string, callForActionHandler: Function, callForAction2: string = null, callForActionHandler2: Function = null) { const theme = themeStyle(this.props.themeId); const urlStyle: any = { color: theme.colorWarnUrl, textDecoration: 'underline' }; const cfa = ( callForActionHandler()}> {callForAction} ); const cfa2 = !callForAction2 ? null : ( callForActionHandler2()}> {callForAction2} ); return ( {message}{callForAction ? ' ' : ''} {cfa}{callForAction2 ? ' / ' : ''}{cfa2} ); } renderNotification(theme: any, styles: any) { if (!this.messageBoxVisible()) return null; const onViewStatusScreen = () => { this.props.dispatch({ type: 'NAV_GO', routeName: 'Status', }); }; const onViewEncryptionConfigScreen = () => { this.props.dispatch({ type: 'NAV_GO', routeName: 'Config', props: { defaultSection: 'encryption', }, }); }; const onViewPluginScreen = () => { this.props.dispatch({ type: 'NAV_GO', routeName: 'Config', props: { defaultSection: 'plugins', }, }); }; const onRestartAndUpgrade = async () => { Setting.setValue('sync.upgradeState', Setting.SYNC_UPGRADE_STATE_MUST_DO); await Setting.saveAll(); await restart(); }; const onDisableSafeModeAndRestart = async () => { Setting.setValue('isSafeMode', false); await Setting.saveAll(); await restart(); }; const onInvitationRespond = async (shareUserId: string, folderId: string, masterKey: MasterKeyEntity, accept: boolean) => { await invitationRespond(shareUserId, folderId, masterKey, accept); }; let msg = null; // When adding something here, don't forget to update the condition in // this.messageBoxVisible() if (this.props.isSafeMode) { msg = this.renderNotificationMessage( _('Safe mode is currently active. Note rendering and all plugins are temporarily disabled.'), _('Disable safe mode and restart'), onDisableSafeModeAndRestart ); } else if (this.props.shouldUpgradeSyncTarget) { msg = this.renderNotificationMessage( _('The sync target needs to be upgraded before Joplin can sync. The operation may take a few minutes to complete and the app needs to be restarted. To proceed please click on the link.'), _('Restart and upgrade'), onRestartAndUpgrade ); } else if (this.props.hasDisabledEncryptionItems) { msg = this.renderNotificationMessage( _('Some items cannot be decrypted.'), _('View them now'), onViewStatusScreen ); } else if (this.props.showNeedUpgradingMasterKeyMessage) { msg = this.renderNotificationMessage( _('One of your master keys use an obsolete encryption method.'), _('View them now'), onViewEncryptionConfigScreen ); } else if (this.props.showShouldReencryptMessage) { msg = this.renderNotificationMessage( _('The default encryption method has been changed, you should re-encrypt your data.'), _('More info'), onViewEncryptionConfigScreen ); } else if (this.showShareInvitationNotification(this.props)) { const invitation = this.props.shareInvitations.find(inv => inv.status === 0); const sharer = invitation.share.user; msg = this.renderNotificationMessage( _('%s (%s) would like to share a notebook with you.', sharer.full_name, sharer.email), _('Accept'), () => onInvitationRespond(invitation.id, invitation.share.folder_id, invitation.master_key, true), _('Reject'), () => onInvitationRespond(invitation.id, invitation.share.folder_id, invitation.master_key, false) ); } else if (this.props.hasDisabledSyncItems) { msg = this.renderNotificationMessage( _('Some items cannot be synchronised.'), _('View them now'), onViewStatusScreen ); } else if (this.props.showMissingMasterKeyMessage) { msg = this.renderNotificationMessage( _('One or more master keys need a password.'), _('Set the password'), onViewEncryptionConfigScreen ); } else if (this.props.showInstallTemplatesPlugin) { msg = this.renderNotificationMessage( 'The template feature has been moved to a plugin called "Templates".', 'Install plugin', onViewPluginScreen ); } return (
{msg}
); } messageBoxVisible(props: Props = null) { if (!props) props = this.props; return props.hasDisabledSyncItems || props.showMissingMasterKeyMessage || props.showNeedUpgradingMasterKeyMessage || props.showShouldReencryptMessage || props.hasDisabledEncryptionItems || this.props.shouldUpgradeSyncTarget || props.isSafeMode || this.showShareInvitationNotification(props) || this.props.needApiAuth || this.props.showInstallTemplatesPlugin; } registerCommands() { for (const command of commands) { CommandService.instance().registerRuntime(command.declaration.name, command.runtime(this)); } } unregisterCommands() { for (const command of commands) { CommandService.instance().unregisterRuntime(command.declaration.name); } } resizableLayout_resize(event: any) { this.updateMainLayout(event.layout); } resizableLayout_moveButtonClick(event: MoveButtonClickEvent) { const newLayout = move(this.props.mainLayout, event.itemKey, event.direction); this.updateMainLayout(newLayout); } resizableLayout_renderItem(key: string, event: any) { // Key should never be undefined but somehow it can happen, also not // clear how. For now in this case render nothing so that the app // doesn't crash. // https://discourse.joplinapp.org/t/rearranging-the-pannels-crushed-the-app-and-generated-fatal-error/14373?u=laurent if (!key) { console.error('resizableLayout_renderItem: Trying to render an item using an empty key. Full layout is:', this.props.mainLayout); return null; } const eventEmitter = event.eventEmitter; // const viewsToRemove:string[] = []; const components: any = { sideBar: () => { return ; }, noteList: () => { return ; }, editor: () => { const bodyEditor = this.props.settingEditorCodeView ? 'CodeMirror' : 'TinyMCE'; return ; }, }; if (components[key]) return components[key](); const viewsToRemove: string[] = []; if (key.indexOf('plugin-view') === 0) { const viewInfo = pluginUtils.viewInfoByViewId(this.props.plugins, event.item.key); if (!viewInfo) { // Once all startup plugins have loaded, we know that all the // views are ready so we can remove the orphans ones. // // Before they are loaded, there might be views that don't match // any plugins, but that's only because it hasn't loaded yet. if (this.props.startupPluginsLoaded) { console.warn(`Could not find plugin associated with view: ${event.item.key}`); viewsToRemove.push(event.item.key); } } else { const { view, plugin } = viewInfo; const html = this.props.pluginHtmlContents[plugin.id]?.[view.id] ?? ''; return ; } } else { throw new Error(`Invalid layout component: ${key}`); } if (viewsToRemove.length) { window.requestAnimationFrame(() => { let newLayout = this.props.mainLayout; for (const itemKey of viewsToRemove) { newLayout = removeItem(newLayout, itemKey); } if (newLayout !== this.props.mainLayout) { console.warn('Removed invalid views:', viewsToRemove); this.updateMainLayout(newLayout); } }); } } renderPluginDialogs() { const output = []; const infos = pluginUtils.viewInfosByType(this.props.plugins, 'webview'); for (const info of infos) { const { plugin, view } = info; if (view.containerType !== ContainerType.Dialog) continue; if (!view.opened) continue; const html = this.props.pluginHtmlContents[plugin.id]?.[view.id] ?? ''; output.push(); } if (!output.length) return null; return ( {output} ); } render() { const theme = themeStyle(this.props.themeId); const style = Object.assign( { color: theme.color, backgroundColor: theme.backgroundColor, }, this.props.style ); const promptOptions = this.state.promptOptions; const styles = this.styles(this.props.themeId, style.width, style.height, this.messageBoxVisible()); if (!this.promptOnClose_) { this.promptOnClose_ = (answer: any, buttonType: any) => { return this.state.promptOptions.onClose(answer, buttonType); }; } const messageComp = this.renderNotification(theme, styles); const dialogInfo = PluginManager.instance().pluginDialogToShow(this.props.pluginsLegacy); const pluginDialog = !dialogInfo ? null : ; const modalLayerStyle = Object.assign({}, styles.modalLayer, { display: this.state.modalLayer.visible ? 'block' : 'none' }); const notePropertiesDialogOptions = this.state.notePropertiesDialogOptions; const noteContentPropertiesDialogOptions = this.state.noteContentPropertiesDialogOptions; const shareNoteDialogOptions = this.state.shareNoteDialogOptions; const shareFolderDialogOptions = this.state.shareFolderDialogOptions; const layoutComp = this.props.mainLayout ? ( ) : null; return (
{this.state.modalLayer.message}
{this.renderPluginDialogs()} {noteContentPropertiesDialogOptions.visible && } {notePropertiesDialogOptions.visible && } {/* @ts-ignore */} {shareNoteDialogOptions.visible && } {/* @ts-ignore */} {shareFolderDialogOptions.visible && } {messageComp} {layoutComp} {pluginDialog}
); } } const mapStateToProps = (state: AppState) => { const syncInfo = localSyncInfoFromState(state); return { themeId: state.settings.theme, settingEditorCodeView: state.settings['editor.codeView'], hasDisabledSyncItems: state.hasDisabledSyncItems, hasDisabledEncryptionItems: state.hasDisabledEncryptionItems, showMissingMasterKeyMessage: showMissingMasterKeyMessage(syncInfo, state.notLoadedMasterKeys), showNeedUpgradingMasterKeyMessage: !!EncryptionService.instance().masterKeysThatNeedUpgrading(syncInfo.masterKeys).length, showShouldReencryptMessage: state.settings['encryption.shouldReencrypt'] >= Setting.SHOULD_REENCRYPT_YES, shouldUpgradeSyncTarget: state.settings['sync.upgradeState'] === Setting.SYNC_UPGRADE_STATE_SHOULD_DO, pluginsLegacy: state.pluginsLegacy, plugins: state.pluginService.plugins, pluginHtmlContents: state.pluginService.pluginHtmlContents, customCss: state.customCss, editorNoteStatuses: state.editorNoteStatuses, hasNotesBeingSaved: stateUtils.hasNotesBeingSaved(state), layoutMoveMode: state.layoutMoveMode, mainLayout: state.mainLayout, startupPluginsLoaded: state.startupPluginsLoaded, shareInvitations: state.shareService.shareInvitations, processingShareInvitationResponse: state.shareService.processingShareInvitationResponse, isSafeMode: state.settings.isSafeMode, needApiAuth: state.needApiAuth, showInstallTemplatesPlugin: state.hasLegacyTemplates && !state.pluginService.plugins['joplin.plugin.templates'], }; }; export default connect(mapStateToProps)(MainScreenComponent);