import * as React from 'react'; import { useState, useRef, useCallback } from 'react'; import { _ } from '@joplin/lib/locale'; import DialogButtonRow from '../DialogButtonRow'; import Dialog from '../Dialog'; import styled from 'styled-components'; import DialogTitle from '../DialogTitle'; import SyncTargetRegistry, { SyncTargetInfo } from '@joplin/lib/SyncTargetRegistry'; import useElementSize from '@joplin/lib/hooks/useElementSize'; import Button, { ButtonLevel } from '../Button/Button'; import bridge from '../../services/bridge'; import StyledInput from '../style/StyledInput'; import Setting from '../../../lib/models/Setting'; import SyncTargetJoplinCloud from '../../../lib/SyncTargetJoplinCloud'; import StyledLink from '../style/StyledLink'; interface Props { themeId: number; dispatch: Function; } const StyledRoot = styled.div` min-width: 500px; max-width: 1200px; `; const SyncTargetDescription = styled.div` ${props => props.height ? `height: ${props.height}px` : ''}; margin-bottom: 1.3em; line-height: ${props => props.theme.lineHeight}; font-size: 16px; `; const CreateAccountLink = styled(StyledLink)` font-size: 16px; `; const ContentRoot = styled.div` background-color: ${props => props.theme.backgroundColor3}; padding: 1em; padding-right: 0; `; const SelfHostingMessage = styled.div` color: ${props => props.theme.color}; padding-right: 1em; font-style: italic; margin-top: 1em; opacity: 0.6; `; const SyncTargetBoxes = styled.div` display: flex; flex-direction: row; justify-content: center; `; const SyncTargetTitle = styled.p` display: flex; flex-direction: row; font-weight: bold; font-size: 1.7em; align-items: center; white-space: nowrap; `; const SyncTargetLogo = styled.img` height: 1.3em; margin-right: 0.4em; `; const SyncTargetBox = styled.div` display: flex; flex: 1; flex-direction: column; font-family: ${props => props.theme.fontFamily}; color: ${props => props.theme.color}; background-color: ${props => props.theme.backgroundColor}; border: 1px solid ${props => props.theme.dividerColor}; border-radius: 8px; padding: 0.8em 2.2em 2em 2.2em; margin-right: 1em; max-width: 400px; opacity: ${props => props.faded ? 0.5 : 1}; `; const FeatureList = styled.div` margin-bottom: 1em; `; const FeatureIcon = styled.i` display: inline-flex; width: 16px; justify-content: center; color: ${props => props.theme.color4}; position: absolute; `; const FeatureLine = styled.div` margin-bottom: .5em; opacity: ${props => props.enabled ? 1 : 0.5}; position: relative; font-size: 16px; `; const FeatureLabel = styled.div` margin-left: 24px; line-height: ${props => props.theme.lineHeight}; `; const SelectButton = styled(Button)` padding: 10px 10px; height: auto; min-height: auto; max-height: fit-content; font-size: 1em; `; const JoplinCloudLoginForm = styled.div` display: flex; flex-direction: column; `; const FormLabel = styled.label` font-weight: bold; margin: 1em 0 0.6em 0; `; const syncTargetNames: string[] = [ 'joplinCloud', 'dropbox', 'onedrive', 'nextcloud', 'webdav', 'amazon_s3', 'joplinServer', ]; const logosImageNames: Record = { 'dropbox': 'Dropbox.svg', 'joplinCloud': 'JoplinCloud.svg', 'onedrive': 'OneDrive.svg', }; export default function(props: Props) { const [showJoplinCloudForm, setShowJoplinCloudForm] = useState(false); const joplinCloudDescriptionRef = useRef(null); const [joplinCloudEmail, setJoplinCloudEmail] = useState(''); const [joplinCloudPassword, setJoplinCloudPassword] = useState(''); const [joplinCloudLoginInProgress, setJoplinCloudLoginInProgress] = useState(false); function closeDialog(dispatch: Function) { dispatch({ type: 'DIALOG_CLOSE', name: 'syncWizard', }); } const onButtonRowClick = useCallback(() => { closeDialog(props.dispatch); }, [props.dispatch]); const { height: descriptionHeight } = useElementSize(joplinCloudDescriptionRef); function renderFeature(enabled: boolean, label: string) { const className = enabled ? 'fas fa-check' : 'fas fa-times'; return ( {label} ); } function renderFeatures(name: string) { return ( {[ renderFeature(true, _('Sync your notes')), renderFeature(name === 'joplinCloud', _('Publish notes to the internet')), renderFeature(name === 'joplinCloud', _('Collaborate on notebooks with others')), ]} ); } const onJoplinCloudEmailChange = useCallback((event: any) => { setJoplinCloudEmail(event.target.value); }, []); const onJoplinCloudPasswordChange = useCallback((event: any) => { setJoplinCloudPassword(event.target.value); }, []); const onJoplinCloudLoginClick = useCallback(async () => { setJoplinCloudLoginInProgress(true); try { const result = await SyncTargetJoplinCloud.checkConfig({ password: () => joplinCloudPassword, path: () => Setting.value('sync.10.path'), userContentPath: () => Setting.value('sync.10.userContentPath'), username: () => joplinCloudEmail, }); if (result.ok) { Setting.setValue('sync.target', 10); Setting.setValue('sync.10.username', joplinCloudEmail); Setting.setValue('sync.10.password', joplinCloudPassword); await Setting.saveAll(); alert(_('Thank you! Your Joplin Cloud account is now setup and ready to use.')); closeDialog(props.dispatch); props.dispatch({ type: 'NAV_GO', routeName: 'Main', }); } else { alert(_('There was an error setting up your Joplin Cloud account. Please verify your email and password and try again. Error was:\n\n%s', result.errorMessage)); } } finally { setJoplinCloudLoginInProgress(false); } }, [joplinCloudEmail, joplinCloudPassword, props.dispatch]); const onJoplinCloudCreateAccountClick = useCallback(() => { bridge().openExternal('https://joplinapp.org/plans/'); }, []); function renderJoplinCloudLoginForm() { return (
{_('Login below.')} {_('Or create an account.')}
Email Password
); } const onSelectButtonClick = useCallback(async (name: string) => { if (name === 'joplinCloud') { setShowJoplinCloudForm(true); } else { Setting.setValue('sync.target', name === 'dropbox' ? 7 : 3); await Setting.saveAll(); closeDialog(props.dispatch); props.dispatch({ type: 'NAV_GO', routeName: name === 'dropbox' ? 'DropboxLogin' : 'OneDriveLogin', }); } }, [props.dispatch]); function renderSelectArea(info: SyncTargetInfo) { if (info.name === 'joplinCloud' && showJoplinCloudForm) { return renderJoplinCloudLoginForm(); } else { return ( onSelectButtonClick(info.name)} disabled={joplinCloudLoginInProgress} /> ); } } function renderSyncTarget(info: SyncTargetInfo) { const key = `syncTarget_${info.name}`; const height = info.name !== 'joplinCloud' ? descriptionHeight : null; const logoImageName = logosImageNames[info.name]; const logoImageSrc = logoImageName ? `${bridge().buildDir()}/images/syncTargetLogos/${logoImageName}` : ''; const logo = logoImageSrc ? : null; const descriptionComp = {info.description}; const featuresComp = showJoplinCloudForm && info.name === 'joplinCloud' ? null : renderFeatures(info.name); return ( {logo}{info.label} {descriptionComp} {featuresComp} {renderSelectArea(info)} ); } const onSelfHostingClick = useCallback(() => { closeDialog(props.dispatch); props.dispatch({ type: 'NAV_GO', routeName: 'Config', props: { defaultSection: 'sync', }, }); }, [props.dispatch]); function renderContent() { const boxes: any[] = []; for (const name of syncTargetNames) { const info = SyncTargetRegistry.infoByName(name); if (info.supportsSelfHosted) continue; boxes.push(renderSyncTarget(info)); } const selfHostingMessage = showJoplinCloudForm ? null : Self-hosting? Joplin also supports various self-hosting options such as Nextcloud, WebDAV, AWS S3 and Joplin Server. Click here to select one.; return ( {boxes} {selfHostingMessage} ); } function renderDialogWrapper() { return ( {renderContent()} ); } return ( ); }