1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-02-04 19:16:07 +02:00

60 lines
1.8 KiB
JavaScript
Raw Normal View History

2017-07-14 18:49:14 +00:00
import React, { Component } from 'react';
import { connect } from 'react-redux'
2017-07-31 22:03:12 +02:00
import { NotesScreen } from 'lib/components/screens/notes.js';
import { SearchScreen } from 'lib/components/screens/search.js';
2017-07-14 18:49:14 +00:00
import { View } from 'react-native';
import { _ } from 'lib/locale.js';
class AppNavComponent extends Component {
constructor() {
super();
this.previousRouteName_ = null;
}
2017-08-01 17:59:01 +00:00
render() {
2017-07-14 18:49:14 +00:00
if (!this.props.route) throw new Error('Route must not be null');
// Note: certain screens are kept into memory, in particular Notes and Search
// so that the scroll position is not lost when the user navigate away from them.
2017-07-14 18:49:14 +00:00
let route = this.props.route;
2017-07-31 22:03:12 +02:00
let Screen = null;
let notesScreenVisible = false;
let searchScreenVisible = false;
2017-07-31 22:03:12 +02:00
if (route.routeName == 'Notes') {
notesScreenVisible = true;
} else if (route.routeName == 'Search') {
searchScreenVisible = true;
2017-07-31 22:03:12 +02:00
} else {
Screen = this.props.screens[route.routeName].screen;
}
2017-07-14 18:49:14 +00:00
// Keep the search screen loaded if the user is viewing a note from that search screen
// so that if the back button is pressed, the screen is still loaded. However, unload
// it if navigating away.
let searchScreenLoaded = searchScreenVisible || (this.previousRouteName_ == 'Search' && route.routeName == 'Note');
this.previousRouteName_ = route.routeName;
2017-07-14 18:49:14 +00:00
return (
2017-07-21 23:42:24 +01:00
<View style={{ flex: 1 }}>
2017-07-31 22:03:12 +02:00
<NotesScreen visible={notesScreenVisible} navigation={{ state: route }} />
{ searchScreenLoaded && <SearchScreen visible={searchScreenVisible} navigation={{ state: route }} /> }
{ (!notesScreenVisible && !searchScreenVisible) && <Screen navigation={{ state: route }} /> }
2017-07-14 18:49:14 +00:00
</View>
);
}
}
const AppNav = connect(
(state) => {
return {
route: state.route,
};
}
)(AppNavComponent)
export { AppNav };