2020-06-02 22:13:15 +02:00
import Slider from '@react-native-community/slider' ;
2019-07-30 09:35:42 +02:00
const React = require ( 'react' ) ;
2020-06-08 10:01:11 +02:00
const { Platform , TouchableOpacity , Linking , View , Switch , StyleSheet , Text , Button , ScrollView , TextInput , Alert , PermissionsAndroid } = require ( 'react-native' ) ;
2018-03-09 22:59:12 +02:00
const { connect } = require ( 'react-redux' ) ;
2020-11-05 18:58:23 +02:00
const { ScreenHeader } = require ( '../screen-header.js' ) ;
2020-11-07 17:59:37 +02:00
const { _ } = require ( '@joplin/lib/locale' ) ;
2020-11-05 18:58:23 +02:00
const { BaseScreenComponent } = require ( '../base-screen.js' ) ;
const { Dropdown } = require ( '../Dropdown.js' ) ;
const { themeStyle } = require ( '../global-style.js' ) ;
2020-11-07 17:59:37 +02:00
const Setting = require ( '@joplin/lib/models/Setting' ) . default ;
const shared = require ( '@joplin/lib/components/shared/config-shared.js' ) ;
const SyncTargetRegistry = require ( '@joplin/lib/SyncTargetRegistry' ) ;
const { reg } = require ( '@joplin/lib/registry.js' ) ;
2021-01-22 19:41:11 +02:00
const NavService = require ( '@joplin/lib/services/NavService' ) . default ;
2019-05-06 22:35:29 +02:00
const VersionInfo = require ( 'react-native-version-info' ) . default ;
2021-01-22 19:41:11 +02:00
const ReportService = require ( '@joplin/lib/services/ReportService' ) . default ;
2020-11-07 17:59:37 +02:00
const time = require ( '@joplin/lib/time' ) . default ;
const shim = require ( '@joplin/lib/shim' ) . default ;
2021-01-22 19:41:11 +02:00
const SearchEngine = require ( '@joplin/lib/services/searchengine/SearchEngine' ) . default ;
2019-06-26 01:13:13 +02:00
const RNFS = require ( 'react-native-fs' ) ;
2020-11-05 18:58:23 +02:00
const checkPermissions = require ( '../../utils/checkPermissions.js' ) . default ;
2021-04-25 10:50:52 +02:00
import setIgnoreTlsErrors from '../../utils/TlsUtils' ;
2017-07-23 20:26:50 +02:00
2017-08-01 19:59:01 +02:00
class ConfigScreenComponent extends BaseScreenComponent {
2019-09-13 00:16:42 +02:00
static navigationOptions ( ) {
2017-08-01 19:59:01 +02:00
return { header : null } ;
2017-07-30 23:04:26 +02:00
}
2017-07-23 20:26:50 +02:00
2017-08-01 19:59:01 +02:00
constructor ( ) {
super ( ) ;
this . styles _ = { } ;
2018-01-25 21:01:14 +02:00
2019-06-26 01:13:13 +02:00
this . state = {
creatingReport : false ,
2019-12-28 19:47:37 +02:00
profileExportStatus : 'idle' ,
profileExportPath : '' ,
2019-06-26 01:13:13 +02:00
} ;
2018-02-06 20:59:36 +02:00
shared . init ( this ) ;
this . checkSyncConfig _ = async ( ) => {
2021-04-25 10:50:52 +02:00
// to ignore TLS erros we need to chage the global state of the app, if the check fails we need to restore the original state
// this call sets the new value and returns the previous one which we can use later to revert the change
const prevIgnoreTlsErrors = await setIgnoreTlsErrors ( this . state . settings [ 'net.ignoreTlsErrors' ] ) ;
const result = await shared . checkSyncConfig ( this , this . state . settings ) ;
if ( ! result || ! result . ok ) {
await setIgnoreTlsErrors ( prevIgnoreTlsErrors ) ;
}
2019-07-30 09:35:42 +02:00
} ;
2018-02-06 20:59:36 +02:00
2019-06-26 01:13:13 +02:00
this . e2eeConfig _ = ( ) => {
NavService . go ( 'EncryptionConfig' ) ;
2019-07-30 09:35:42 +02:00
} ;
2019-06-26 01:13:13 +02:00
2019-07-13 15:51:54 +02:00
this . saveButton _press = async ( ) => {
2019-07-30 09:35:42 +02:00
if ( this . state . changedSettingKeys . includes ( 'sync.target' ) && this . state . settings [ 'sync.target' ] === SyncTargetRegistry . nameToId ( 'filesystem' ) && ! ( await this . checkFilesystemPermission ( ) ) ) {
Alert . alert ( _ ( 'Warning' ) , _ ( 'In order to use file system synchronisation your permission to write to external storage is required.' ) ) ;
2019-07-13 15:51:54 +02:00
// Save settings anyway, even if permission has not been granted
}
2021-04-25 10:50:52 +02:00
// changedSettingKeys is cleared in shared.saveSettings so reading it now
const setIgnoreTlsErrors = this . state . changedSettingKeys . includes ( 'net.ignoreTlsErrors' ) ;
await shared . saveSettings ( this ) ;
if ( setIgnoreTlsErrors ) {
await setIgnoreTlsErrors ( Setting . value ( 'net.ignoreTlsErrors' ) ) ;
}
2018-01-25 21:01:14 +02:00
} ;
2019-06-26 01:13:13 +02:00
this . syncStatusButtonPress _ = ( ) => {
NavService . go ( 'Status' ) ;
2019-07-30 09:35:42 +02:00
} ;
2019-06-26 01:13:13 +02:00
this . exportDebugButtonPress _ = async ( ) => {
this . setState ( { creatingReport : true } ) ;
const service = new ReportService ( ) ;
const logItems = await reg . logger ( ) . lastEntries ( null ) ;
2019-07-30 09:35:42 +02:00
const logItemRows = [ [ 'Date' , 'Level' , 'Message' ] ] ;
2019-06-26 01:13:13 +02:00
for ( let i = 0 ; i < logItems . length ; i ++ ) {
const item = logItems [ i ] ;
2019-07-30 09:35:42 +02:00
logItemRows . push ( [ time . formatMsToLocal ( item . timestamp , 'MM-DDTHH:mm:ss' ) , item . level , item . message ] ) ;
2019-06-26 01:13:13 +02:00
}
const logItemCsv = service . csvCreate ( logItemRows ) ;
const itemListCsv = await service . basicItemList ( { format : 'csv' } ) ;
2019-09-19 23:51:18 +02:00
const filePath = ` ${ RNFS . ExternalDirectoryPath } /syncReport- ${ new Date ( ) . getTime ( ) } .txt ` ;
2019-06-26 01:13:13 +02:00
2019-07-30 09:35:42 +02:00
const finalText = [ logItemCsv , itemListCsv ] . join ( '\n================================================================================\n' ) ;
2019-06-26 01:13:13 +02:00
await RNFS . writeFile ( filePath , finalText ) ;
2019-09-19 23:51:18 +02:00
alert ( ` Debug report exported to ${ filePath } ` ) ;
2019-06-26 01:13:13 +02:00
this . setState ( { creatingReport : false } ) ;
2019-07-30 09:35:42 +02:00
} ;
2019-06-26 01:13:13 +02:00
2019-06-28 01:48:52 +02:00
this . fixSearchEngineIndexButtonPress _ = async ( ) => {
this . setState ( { fixingSearchIndex : true } ) ;
await SearchEngine . instance ( ) . rebuildIndex ( ) ;
this . setState ( { fixingSearchIndex : false } ) ;
2019-07-30 09:35:42 +02:00
} ;
2019-06-28 01:48:52 +02:00
2019-12-28 19:47:37 +02:00
this . exportProfileButtonPress _ = async ( ) => {
const p = this . state . profileExportPath ? this . state . profileExportPath : ` ${ RNFS . ExternalStorageDirectoryPath } /JoplinProfileExport ` ;
this . setState ( {
profileExportStatus : 'prompt' ,
profileExportPath : p ,
} ) ;
} ;
this . exportProfileButtonPress2 _ = async ( ) => {
this . setState ( { profileExportStatus : 'exporting' } ) ;
const dbPath = '/data/data/net.cozic.joplin/databases' ;
2020-05-08 23:46:12 +02:00
const exportPath = this . state . profileExportPath ;
const resourcePath = ` ${ exportPath } /resources ` ;
2019-12-28 19:47:37 +02:00
try {
2020-10-16 17:26:19 +02:00
const response = await checkPermissions ( PermissionsAndroid . PERMISSIONS . WRITE _EXTERNAL _STORAGE ) ;
if ( response !== PermissionsAndroid . RESULTS . GRANTED ) {
2020-06-08 10:01:11 +02:00
throw new Error ( 'Permission denied' ) ;
}
const copyFiles = async ( source , dest ) => {
await shim . fsDriver ( ) . mkdir ( dest ) ;
const files = await shim . fsDriver ( ) . readDirStats ( source ) ;
2019-12-28 19:47:37 +02:00
2020-06-08 10:01:11 +02:00
for ( const file of files ) {
const source _ = ` ${ source } / ${ file . path } ` ;
const dest _ = ` ${ dest } / ${ file . path } ` ;
if ( ! file . isDirectory ( ) ) {
reg . logger ( ) . info ( ` Copying profile: ${ source _ } => ${ dest _ } ` ) ;
await shim . fsDriver ( ) . copy ( source _ , dest _ ) ;
} else {
await copyFiles ( source _ , dest _ ) ;
2020-05-08 23:46:12 +02:00
}
2020-06-08 10:01:11 +02:00
}
} ;
await copyFiles ( dbPath , exportPath ) ;
await copyFiles ( Setting . value ( 'resourceDir' ) , resourcePath ) ;
2019-12-28 19:47:37 +02:00
alert ( 'Profile has been exported!' ) ;
} catch ( error ) {
alert ( ` Could not export files: ${ error . message } ` ) ;
2020-05-09 16:39:02 +02:00
} finally {
2019-12-28 19:47:37 +02:00
this . setState ( { profileExportStatus : 'idle' } ) ;
}
} ;
2019-06-26 01:13:13 +02:00
this . logButtonPress _ = ( ) => {
NavService . go ( 'Log' ) ;
2019-07-30 09:35:42 +02:00
} ;
2018-01-25 21:01:14 +02:00
}
2019-07-13 15:51:54 +02:00
async checkFilesystemPermission ( ) {
if ( Platform . OS !== 'android' ) {
// Not implemented yet
return true ;
}
2020-06-08 10:01:11 +02:00
return await checkPermissions ( PermissionsAndroid . PERMISSIONS . WRITE _EXTERNAL _STORAGE , {
2019-07-30 09:35:42 +02:00
title : _ ( 'Information' ) ,
message : _ ( 'In order to use file system synchronisation your permission to write to external storage is required.' ) ,
buttonPositive : _ ( 'OK' ) ,
} ) ;
2019-07-13 15:51:54 +02:00
}
2018-04-30 18:38:19 +02:00
UNSAFE _componentWillMount ( ) {
2018-01-25 21:01:14 +02:00
this . setState ( { settings : this . props . settings } ) ;
2017-08-01 19:59:01 +02:00
}
2017-07-30 23:04:26 +02:00
2017-08-01 19:59:01 +02:00
styles ( ) {
2020-09-15 15:01:07 +02:00
const themeId = this . props . themeId ;
2017-08-01 19:59:01 +02:00
const theme = themeStyle ( themeId ) ;
if ( this . styles _ [ themeId ] ) return this . styles _ [ themeId ] ;
this . styles _ = { } ;
2020-03-14 01:46:14 +02:00
const styles = {
2017-11-19 01:59:07 +02:00
body : {
flex : 1 ,
2018-03-09 22:59:12 +02:00
justifyContent : 'flex-start' ,
flexDirection : 'column' ,
2017-11-19 01:59:07 +02:00
} ,
2017-08-01 19:59:01 +02:00
settingContainer : {
2017-11-19 01:59:07 +02:00
flex : 1 ,
2018-03-09 22:59:12 +02:00
flexDirection : 'row' ,
alignItems : 'center' ,
2017-08-01 19:59:01 +02:00
borderBottomWidth : 1 ,
borderBottomColor : theme . dividerColor ,
paddingTop : theme . marginTop ,
paddingBottom : theme . marginBottom ,
paddingLeft : theme . marginLeft ,
paddingRight : theme . marginRight ,
} ,
settingText : {
color : theme . color ,
fontSize : theme . fontSize ,
2017-11-19 01:59:07 +02:00
flex : 1 ,
2019-05-26 20:39:07 +02:00
paddingRight : 5 ,
2017-08-01 19:59:01 +02:00
} ,
2018-02-14 21:08:07 +02:00
descriptionText : {
2020-03-25 12:50:45 +02:00
color : theme . colorFaded ,
fontSize : theme . fontSizeSmaller ,
2018-02-14 21:08:07 +02:00
flex : 1 ,
} ,
2019-06-08 01:23:17 +02:00
sliderUnits : {
color : theme . color ,
fontSize : theme . fontSize ,
2019-06-27 01:05:17 +02:00
marginRight : 10 ,
2019-06-08 01:23:17 +02:00
} ,
2019-05-26 20:39:07 +02:00
settingDescriptionText : {
2020-03-25 12:50:45 +02:00
color : theme . colorFaded ,
fontSize : theme . fontSizeSmaller ,
2019-05-26 20:39:07 +02:00
flex : 1 ,
paddingLeft : theme . marginLeft ,
paddingRight : theme . marginRight ,
paddingBottom : theme . marginBottom ,
} ,
2018-05-21 18:24:09 +02:00
permissionText : {
color : theme . color ,
fontSize : theme . fontSize ,
flex : 1 ,
marginTop : 10 ,
} ,
2017-08-01 19:59:01 +02:00
settingControl : {
color : theme . color ,
2017-11-19 01:59:07 +02:00
flex : 1 ,
2017-08-01 19:59:01 +02:00
} ,
2020-04-05 21:47:30 +02:00
textInput : {
color : theme . color ,
} ,
2019-07-30 09:35:42 +02:00
} ;
2017-07-26 19:49:01 +02:00
2019-05-26 20:39:07 +02:00
styles . settingContainerNoBottomBorder = Object . assign ( { } , styles . settingContainer , {
borderBottomWidth : 0 ,
paddingBottom : theme . marginBottom / 2 ,
} ) ;
styles . settingControl . borderBottomWidth = 1 ;
2020-06-10 23:08:59 +02:00
styles . settingControl . borderBottomColor = theme . dividerColor ;
2018-02-05 20:32:59 +02:00
2017-08-01 19:59:01 +02:00
styles . switchSettingText = Object . assign ( { } , styles . settingText ) ;
2018-03-09 22:59:12 +02:00
styles . switchSettingText . width = '80%' ;
2017-07-26 19:49:01 +02:00
2017-08-01 19:59:01 +02:00
styles . switchSettingContainer = Object . assign ( { } , styles . settingContainer ) ;
2018-03-09 22:59:12 +02:00
styles . switchSettingContainer . flexDirection = 'row' ;
styles . switchSettingContainer . justifyContent = 'space-between' ;
2017-07-23 20:26:50 +02:00
2017-11-20 20:25:23 +02:00
styles . linkText = Object . assign ( { } , styles . settingText ) ;
styles . linkText . borderBottomWidth = 1 ;
styles . linkText . borderBottomColor = theme . color ;
styles . linkText . flex = 0 ;
2018-03-09 22:59:12 +02:00
styles . linkText . fontWeight = 'normal' ;
2017-11-20 20:25:23 +02:00
2019-07-30 09:35:42 +02:00
styles . headerWrapperStyle = Object . assign ( { } , styles . settingContainer , theme . headerWrapperStyle ) ;
2019-06-08 01:23:17 +02:00
2017-08-01 19:59:01 +02:00
styles . switchSettingControl = Object . assign ( { } , styles . settingControl ) ;
delete styles . switchSettingControl . color ;
2019-10-09 21:35:13 +02:00
// styles.switchSettingControl.width = '20%';
2017-11-19 02:23:18 +02:00
styles . switchSettingControl . flex = 0 ;
2017-08-01 19:59:01 +02:00
this . styles _ [ themeId ] = StyleSheet . create ( styles ) ;
return this . styles _ [ themeId ] ;
2017-07-23 20:26:50 +02:00
}
2019-06-08 01:23:17 +02:00
renderHeader ( key , title ) {
2020-09-15 15:01:07 +02:00
const theme = themeStyle ( this . props . themeId ) ;
2019-06-08 01:23:17 +02:00
return (
< View key = { key } style = { this . styles ( ) . headerWrapperStyle } >
< Text style = { theme . headerStyle } > { title } < / T e x t >
< / V i e w >
) ;
}
2019-06-26 01:13:13 +02:00
renderButton ( key , title , clickHandler , options = null ) {
if ( ! options ) options = { } ;
2019-06-28 01:48:52 +02:00
let descriptionComp = null ;
if ( options . description ) {
descriptionComp = (
2019-07-30 09:35:42 +02:00
< View style = { { flex : 1 , marginTop : 10 } } >
2019-06-28 01:48:52 +02:00
< Text style = { this . styles ( ) . descriptionText } > { options . description } < / T e x t >
< / V i e w >
) ;
}
2019-06-26 01:13:13 +02:00
return (
< View key = { key } style = { this . styles ( ) . settingContainer } >
2019-07-30 09:35:42 +02:00
< View style = { { flex : 1 , flexDirection : 'column' } } >
< View style = { { flex : 1 } } >
< Button title = { title } onPress = { clickHandler } disabled = { ! ! options . disabled } / >
2019-06-26 01:13:13 +02:00
< / V i e w >
2019-07-30 09:35:42 +02:00
{ options . statusComp }
{ descriptionComp }
2019-06-26 01:13:13 +02:00
< / V i e w >
< / V i e w >
) ;
}
2019-06-08 01:23:17 +02:00
sectionToComponent ( key , section , settings ) {
const settingComps = [ ] ;
for ( let i = 0 ; i < section . metadatas . length ; i ++ ) {
const md = section . metadatas [ i ] ;
if ( section . name === 'sync' && md . key === 'sync.resourceDownloadMode' ) {
const syncTargetMd = SyncTargetRegistry . idToMetadata ( settings [ 'sync.target' ] ) ;
if ( syncTargetMd . supportsConfigCheck ) {
const messages = shared . checkSyncConfigMessages ( this ) ;
const statusComp = ! messages . length ? null : (
2019-07-30 09:35:42 +02:00
< View style = { { flex : 1 , marginTop : 10 } } >
2019-06-08 01:23:17 +02:00
< Text style = { this . styles ( ) . descriptionText } > { messages [ 0 ] } < / T e x t >
2019-07-30 09:35:42 +02:00
{ messages . length >= 1 ? (
< View style = { { marginTop : 10 } } >
< Text style = { this . styles ( ) . descriptionText } > { messages [ 1 ] } < / T e x t >
< / V i e w >
) : null }
< / V i e w >
) ;
2019-06-08 01:23:17 +02:00
2019-06-26 01:13:13 +02:00
settingComps . push ( this . renderButton ( 'check_sync_config_button' , _ ( 'Check synchronisation configuration' ) , this . checkSyncConfig _ , { statusComp : statusComp } ) ) ;
2019-06-08 01:23:17 +02:00
}
}
const settingComp = this . settingToComponent ( md . key , settings [ md . key ] ) ;
settingComps . push ( settingComp ) ;
}
2019-06-26 01:13:13 +02:00
if ( section . name === 'sync' ) {
2019-06-26 19:51:12 +02:00
settingComps . push ( this . renderButton ( 'e2ee_config_button' , _ ( 'Encryption Config' ) , this . e2eeConfig _ ) ) ;
2019-06-26 01:13:13 +02:00
}
2019-09-16 23:59:45 +02:00
if ( ! settingComps . length ) return null ;
2019-06-08 01:23:17 +02:00
return (
< View key = { key } >
{ this . renderHeader ( section . name , Setting . sectionNameToLabel ( section . name ) ) }
2019-07-30 09:35:42 +02:00
< View > { settingComps } < / V i e w >
2019-06-08 01:23:17 +02:00
< / V i e w >
) ;
}
2017-07-31 22:51:24 +02:00
settingToComponent ( key , value ) {
2020-09-15 15:01:07 +02:00
const themeId = this . props . themeId ;
2017-11-19 01:59:07 +02:00
const theme = themeStyle ( themeId ) ;
2020-03-14 01:46:14 +02:00
const output = null ;
2017-07-23 20:26:50 +02:00
const updateSettingValue = ( key , value ) => {
2018-02-13 20:26:33 +02:00
return shared . updateSettingValue ( this , key , value ) ;
2019-07-30 09:35:42 +02:00
} ;
2017-07-23 20:26:50 +02:00
2017-07-31 22:51:24 +02:00
const md = Setting . settingMetadata ( key ) ;
2019-05-26 20:39:07 +02:00
const settingDescription = md . description ? md . description ( ) : '' ;
2017-07-31 22:51:24 +02:00
2020-03-25 12:50:45 +02:00
const descriptionComp = ! settingDescription ? null : < Text style = { this . styles ( ) . settingDescriptionText } > { settingDescription } < / T e x t > ;
const containerStyle = ! settingDescription ? this . styles ( ) . settingContainer : this . styles ( ) . settingContainerNoBottomBorder ;
2017-07-31 22:51:24 +02:00
if ( md . isEnum ) {
value = value . toString ( ) ;
2017-07-23 20:26:50 +02:00
2020-03-14 01:46:14 +02:00
const items = [ ] ;
2017-07-31 22:51:24 +02:00
const settingOptions = md . options ( ) ;
2020-03-14 01:46:14 +02:00
for ( const k in settingOptions ) {
2017-07-23 20:26:50 +02:00
if ( ! settingOptions . hasOwnProperty ( k ) ) continue ;
2017-11-19 01:59:07 +02:00
items . push ( { label : settingOptions [ k ] , value : k . toString ( ) } ) ;
2017-07-23 20:26:50 +02:00
}
return (
2019-07-30 09:35:42 +02:00
< View key = { key } style = { { flexDirection : 'column' , borderBottomWidth : 1 , borderBottomColor : theme . dividerColor } } >
2019-06-08 01:23:17 +02:00
< View style = { containerStyle } >
2019-07-30 09:35:42 +02:00
< Text key = "label" style = { this . styles ( ) . settingText } >
{ md . label ( ) }
< / T e x t >
2019-05-26 20:39:07 +02:00
< Dropdown
key = "control"
style = { this . styles ( ) . settingControl }
items = { items }
selectedValue = { value }
itemListStyle = { {
backgroundColor : theme . backgroundColor ,
} }
headerStyle = { {
color : theme . color ,
fontSize : theme . fontSize ,
} }
itemStyle = { {
color : theme . color ,
fontSize : theme . fontSize ,
} }
2019-09-13 00:16:42 +02:00
onValueChange = { ( itemValue ) => {
2019-07-30 09:35:42 +02:00
updateSettingValue ( key , itemValue ) ;
} }
2019-05-26 20:39:07 +02:00
/ >
< / V i e w >
{ descriptionComp }
2017-07-23 20:26:50 +02:00
< / V i e w >
) ;
2017-07-31 22:51:24 +02:00
} else if ( md . type == Setting . TYPE _BOOL ) {
2017-07-26 19:49:01 +02:00
return (
2020-03-25 12:50:45 +02:00
< View key = { key } >
< View style = { containerStyle } >
< Text key = "label" style = { this . styles ( ) . switchSettingText } >
{ md . label ( ) }
< / T e x t >
2020-06-10 23:08:59 +02:00
< Switch key = "control" style = { this . styles ( ) . switchSettingControl } trackColor = { { false : theme . dividerColor } } value = { value } onValueChange = { value => updateSettingValue ( key , value ) } / >
2020-03-25 12:50:45 +02:00
< / V i e w >
{ descriptionComp }
2017-07-26 19:49:01 +02:00
< / V i e w >
) ;
2017-07-31 22:51:24 +02:00
} else if ( md . type == Setting . TYPE _INT ) {
2019-05-06 22:35:29 +02:00
const unitLabel = md . unitLabel ? md . unitLabel ( value ) : value ;
2020-03-13 19:42:50 +02:00
// Note: Do NOT add the minimumTrackTintColor and maximumTrackTintColor props
// on the Slider as they are buggy and can crash the app on certain devices.
// https://github.com/laurent22/joplin/issues/2733
// https://github.com/react-native-community/react-native-slider/issues/161
2017-07-25 23:55:26 +02:00
return (
2017-08-01 19:59:01 +02:00
< View key = { key } style = { this . styles ( ) . settingContainer } >
2019-07-30 09:35:42 +02:00
< Text key = "label" style = { this . styles ( ) . settingText } >
{ md . label ( ) }
< / T e x t >
< View style = { { display : 'flex' , flexDirection : 'row' , alignItems : 'center' , flex : 1 } } >
2019-06-08 01:23:17 +02:00
< Text style = { this . styles ( ) . sliderUnits } > { unitLabel } < / T e x t >
2020-05-21 10:14:33 +02:00
< Slider key = "control" style = { { flex : 1 } } step = { md . step } minimumValue = { md . minimum } maximumValue = { md . maximum } value = { value } onValueChange = { value => updateSettingValue ( key , value ) } / >
2019-05-06 22:35:29 +02:00
< / V i e w >
2017-07-25 23:55:26 +02:00
< / V i e w >
) ;
2018-01-25 21:01:14 +02:00
} else if ( md . type == Setting . TYPE _STRING ) {
return (
< View key = { key } style = { this . styles ( ) . settingContainer } >
2019-07-30 09:35:42 +02:00
< Text key = "label" style = { this . styles ( ) . settingText } >
{ md . label ( ) }
< / T e x t >
2020-05-21 10:14:33 +02:00
< TextInput autoCorrect = { false } autoCompleteType = "off" selectionColor = { theme . textSelectionColor } keyboardAppearance = { theme . keyboardAppearance } autoCapitalize = "none" key = "control" style = { this . styles ( ) . settingControl } value = { value } onChangeText = { value => updateSettingValue ( key , value ) } secureTextEntry = { ! ! md . secure } / >
2018-01-25 21:01:14 +02:00
< / V i e w >
) ;
2017-07-26 19:49:01 +02:00
} else {
2019-10-09 21:35:13 +02:00
// throw new Error('Unsupported setting type: ' + md.type);
2017-07-23 20:26:50 +02:00
}
return output ;
}
render ( ) {
2018-01-25 21:01:14 +02:00
const settings = this . state . settings ;
2017-07-23 20:26:50 +02:00
2020-09-15 15:01:07 +02:00
const theme = themeStyle ( this . props . themeId ) ;
2020-04-17 00:35:31 +02:00
2019-06-08 01:23:17 +02:00
const settingComps = shared . settingsToComponents2 ( this , 'mobile' , settings ) ;
2018-02-06 20:59:36 +02:00
2019-06-26 19:51:12 +02:00
settingComps . push ( this . renderHeader ( 'tools' , _ ( 'Tools' ) ) ) ;
2019-06-26 01:13:13 +02:00
2019-06-26 19:51:12 +02:00
settingComps . push ( this . renderButton ( 'status_button' , _ ( 'Sync Status' ) , this . syncStatusButtonPress _ ) ) ;
settingComps . push ( this . renderButton ( 'log_button' , _ ( 'Log' ) , this . logButtonPress _ ) ) ;
2020-03-13 21:55:26 +02:00
if ( Platform . OS === 'android' ) {
settingComps . push ( this . renderButton ( 'export_report_button' , this . state . creatingReport ? _ ( 'Creating report...' ) : _ ( 'Export Debug Report' ) , this . exportDebugButtonPress _ , { disabled : this . state . creatingReport } ) ) ;
}
2019-07-22 00:27:13 +02:00
settingComps . push ( this . renderButton ( 'fix_search_engine_index' , this . state . fixingSearchIndex ? _ ( 'Fixing search index...' ) : _ ( 'Fix search index' ) , this . fixSearchEngineIndexButtonPress _ , { disabled : this . state . fixingSearchIndex , description : _ ( 'Use this to rebuild the search index if there is a problem with search. It may take a long time depending on the number of notes.' ) } ) ) ;
2019-06-26 01:13:13 +02:00
2019-12-28 19:47:37 +02:00
if ( shim . mobilePlatform ( ) === 'android' ) {
settingComps . push ( this . renderButton ( 'export_data' , this . state . profileExportStatus === 'exporting' ? _ ( 'Exporting profile...' ) : _ ( 'Export profile' ) , this . exportProfileButtonPress _ , { disabled : this . state . profileExportStatus === 'exporting' , description : _ ( 'For debugging purpose only: export your profile to an external SD card.' ) } ) ) ;
if ( this . state . profileExportStatus === 'prompt' ) {
const profileExportPrompt = (
2020-06-08 10:01:33 +02:00
< View style = { this . styles ( ) . settingContainer } key = "profileExport" >
2019-12-28 19:47:37 +02:00
< Text style = { this . styles ( ) . settingText } > Path : < / T e x t >
2020-04-17 00:35:31 +02:00
< TextInput style = { { ... this . styles ( ) . textInput , paddingRight : 20 } } onChange = { ( event ) => this . setState ( { profileExportPath : event . nativeEvent . text } ) } value = { this . state . profileExportPath } placeholder = "/path/to/sdcard" keyboardAppearance = { theme . keyboardAppearance } > < / T e x t I n p u t >
2019-12-28 19:47:37 +02:00
< Button title = "OK" onPress = { this . exportProfileButtonPress2 _ } > < / B u t t o n >
< / V i e w >
) ;
settingComps . push ( profileExportPrompt ) ;
}
}
2019-06-08 01:23:17 +02:00
settingComps . push ( this . renderHeader ( 'moreInfo' , _ ( 'More information' ) ) ) ;
2018-03-09 11:09:13 +02:00
2018-05-21 18:24:09 +02:00
if ( Platform . OS === 'android' && Platform . Version >= 23 ) {
// Note: `PermissionsAndroid` doesn't work so we have to ask the user to manually
// set these permissions. https://stackoverflow.com/questions/49771084/permission-always-returns-never-ask-again
2019-06-08 01:23:17 +02:00
2018-05-21 18:24:09 +02:00
settingComps . push (
< View key = "permission_info" style = { this . styles ( ) . settingContainer } >
< View key = "permission_info_wrapper" >
2019-07-30 09:35:42 +02:00
< Text key = "perm1a" style = { this . styles ( ) . settingText } >
{ _ ( 'To work correctly, the app needs the following permissions. Please enable them in your phone settings, in Apps > Joplin > Permissions' ) }
< / T e x t >
< Text key = "perm2" style = { this . styles ( ) . permissionText } >
{ _ ( '- Storage: to allow attaching files to notes and to enable filesystem synchronisation.' ) }
< / T e x t >
< Text key = "perm3" style = { this . styles ( ) . permissionText } >
{ _ ( '- Camera: to allow taking a picture and attaching it to a note.' ) }
< / T e x t >
< Text key = "perm4" style = { this . styles ( ) . permissionText } >
{ _ ( '- Location: to allow attaching geo-location information to a note.' ) }
< / T e x t >
2018-05-21 18:24:09 +02:00
< / V i e w >
< / V i e w >
) ;
}
2018-03-09 11:09:13 +02:00
settingComps . push (
< View key = "donate_link" style = { this . styles ( ) . settingContainer } >
2019-07-30 09:35:42 +02:00
< TouchableOpacity
onPress = { ( ) => {
Linking . openURL ( 'https://joplinapp.org/donate/' ) ;
} }
>
< Text key = "label" style = { this . styles ( ) . linkText } >
{ _ ( 'Make a donation' ) }
< / T e x t >
2018-03-09 11:09:13 +02:00
< / T o u c h a b l e O p a c i t y >
< / V i e w >
) ;
2018-11-02 02:43:42 +02:00
2017-11-20 20:25:23 +02:00
settingComps . push (
< View key = "website_link" style = { this . styles ( ) . settingContainer } >
2019-07-30 09:35:42 +02:00
< TouchableOpacity
onPress = { ( ) => {
Linking . openURL ( 'https://joplinapp.org/' ) ;
} }
>
< Text key = "label" style = { this . styles ( ) . linkText } >
{ _ ( 'Joplin website' ) }
< / T e x t >
2017-11-20 20:25:23 +02:00
< / T o u c h a b l e O p a c i t y >
< / V i e w >
) ;
settingComps . push (
< View key = "privacy_link" style = { this . styles ( ) . settingContainer } >
2019-07-30 09:35:42 +02:00
< TouchableOpacity
onPress = { ( ) => {
Linking . openURL ( 'https://joplinapp.org/privacy/' ) ;
} }
>
< Text key = "label" style = { this . styles ( ) . linkText } >
2021-01-21 20:23:32 +02:00
{ _ ( 'Privacy Policy' ) }
2019-07-30 09:35:42 +02:00
< / T e x t >
2017-11-20 20:25:23 +02:00
< / T o u c h a b l e O p a c i t y >
< / V i e w >
) ;
2017-07-23 20:26:50 +02:00
2018-11-02 02:43:42 +02:00
settingComps . push (
2018-12-28 22:40:29 +02:00
< View key = "version_info_app" style = { this . styles ( ) . settingContainer } >
2019-09-19 23:51:18 +02:00
< Text style = { this . styles ( ) . settingText } > { ` Joplin ${ VersionInfo . appVersion } ` } < / T e x t >
2018-12-28 22:40:29 +02:00
< / V i e w >
) ;
settingComps . push (
< View key = "version_info_db" style = { this . styles ( ) . settingContainer } >
< Text style = { this . styles ( ) . settingText } > { _ ( 'Database v%s' , reg . db ( ) . version ( ) ) } < / T e x t >
< / V i e w >
) ;
settingComps . push (
< View key = "version_info_fts" style = { this . styles ( ) . settingContainer } >
< Text style = { this . styles ( ) . settingText } > { _ ( 'FTS enabled: %d' , this . props . settings [ 'db.ftsEnabled' ] ) } < / T e x t >
2018-11-02 02:43:42 +02:00
< / V i e w >
) ;
2017-07-23 20:26:50 +02:00
return (
2020-09-15 15:01:07 +02:00
< View style = { this . rootStyle ( this . props . themeId ) . root } >
2019-07-30 09:35:42 +02:00
< ScreenHeader title = { _ ( 'Configuration' ) } showSaveButton = { true } showSearchButton = { false } showSideMenuButton = { false } saveButtonDisabled = { ! this . state . changedSettingKeys . length } onSaveButtonPress = { this . saveButton _press } / >
< ScrollView > { settingComps } < / S c r o l l V i e w >
2017-07-23 20:26:50 +02:00
< / V i e w >
) ;
}
}
2020-05-21 10:14:33 +02:00
const ConfigScreen = connect ( state => {
2019-07-30 09:35:42 +02:00
return {
settings : state . settings ,
2020-09-15 15:01:07 +02:00
themeId : state . settings . theme ,
2019-07-30 09:35:42 +02:00
} ;
} ) ( ConfigScreenComponent ) ;
2017-07-23 20:26:50 +02:00
2018-11-02 02:43:42 +02:00
module . exports = { ConfigScreen } ;