const React = require('react'); const { View, Button, Text, TextInput, TouchableOpacity, StyleSheet, ScrollView } = require('react-native'); const { connect } = require('react-redux'); const { ScreenHeader } = require('lib/components/screen-header.js'); const { _ } = require('lib/locale.js'); const { BaseScreenComponent } = require('lib/components/base-screen.js'); const DialogBox = require('react-native-dialogbox').default; const { dialogs } = require('lib/dialogs.js'); const Shared = require('lib/components/shared/dropbox-login-shared'); const { themeStyle } = require('lib/components/global-style.js'); class DropboxLoginScreenComponent extends BaseScreenComponent { constructor() { super(); this.styles_ = {}; this.shared_ = new Shared(this, msg => dialogs.info(this, msg), msg => dialogs.error(this, msg)); } UNSAFE_componentWillMount() { this.shared_.refreshUrl(); } styles() { const themeId = this.props.theme; const theme = themeStyle(themeId); if (this.styles_[themeId]) return this.styles_[themeId]; this.styles_ = {}; let styles = { container: { padding: theme.margin, }, stepText: Object.assign({}, theme.normalText, { marginBottom: theme.margin }), urlText: Object.assign({}, theme.urlText, { marginBottom: theme.margin }), }; this.styles_[themeId] = StyleSheet.create(styles); return this.styles_[themeId]; } render() { const theme = themeStyle(this.props.theme); return ( {_('To allow Joplin to synchronise with Dropbox, please follow the steps below:')} {_('Step 1: Open this URL in your browser to authorise the application:')} {this.state.loginUrl} {_('Step 2: Enter the code provided by Dropbox:')} {/* Add this extra padding to make sure the view is scrollable when the keyboard is visible on small screens (iPhone SE) */} { this.dialogbox = dialogbox; }} /> ); } } const DropboxLoginScreen = connect(state => { return { theme: state.settings.theme, }; })(DropboxLoginScreenComponent); module.exports = { DropboxLoginScreen };