1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-04-14 11:18:47 +02:00

90 lines
3.0 KiB
JavaScript
Raw Normal View History

2018-03-09 17:49:35 +00:00
const React = require("react");
const Component = React.Component;
const { connect } = require("react-redux");
const { NotesScreen } = require("lib/components/screens/notes.js");
const { SearchScreen } = require("lib/components/screens/search.js");
const { KeyboardAvoidingView, Keyboard, Platform, View } = require("react-native");
const { _ } = require("lib/locale.js");
const { themeStyle } = require("lib/components/global-style.js");
2017-07-14 18:49:14 +00:00
class AppNavComponent extends Component {
constructor() {
super();
this.previousRouteName_ = null;
this.state = {
autoCompletionBarExtraHeight: 0, // Extra padding for the auto completion bar at the top of the keyboard
2018-03-09 17:49:35 +00:00
};
}
componentWillMount() {
2018-03-09 17:49:35 +00:00
if (Platform.OS === "ios") {
this.keyboardDidShowListener = Keyboard.addListener("keyboardDidShow", this.keyboardDidShow.bind(this));
this.keyboardDidHideListener = Keyboard.addListener("keyboardDidHide", this.keyboardDidHide.bind(this));
}
}
componentWillUnmount() {
if (this.keyboardDidShowListener) this.keyboardDidShowListener.remove();
if (this.keyboardDidHideListener) this.keyboardDidHideListener.remove();
this.keyboardDidShowListener = null;
this.keyboardDidHideListener = null;
}
2018-03-09 17:49:35 +00:00
keyboardDidShow() {
this.setState({ autoCompletionBarExtraHeight: 30 });
}
2018-03-09 17:49:35 +00:00
keyboardDidHide() {
this.setState({ autoCompletionBarExtraHeight: 0 });
}
2017-08-01 17:59:01 +00:00
render() {
2018-03-09 17:49:35 +00:00
if (!this.props.route) throw new Error("Route must not be null");
2017-07-14 18:49:14 +00:00
// 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
2018-03-09 17:49:35 +00:00
if (route.routeName == "Notes") {
2017-07-31 22:03:12 +02:00
notesScreenVisible = true;
2018-03-09 17:49:35 +00:00
} 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.
2018-03-09 17:49:35 +00:00
let searchScreenLoaded = searchScreenVisible || (this.previousRouteName_ == "Search" && route.routeName == "Note");
this.previousRouteName_ = route.routeName;
const theme = themeStyle(this.props.theme);
2018-03-09 17:49:35 +00:00
const style = { flex: 1, backgroundColor: theme.backgroundColor };
2017-07-14 18:49:14 +00:00
return (
2018-03-09 17:49:35 +00:00
<KeyboardAvoidingView behavior={Platform.OS === "ios" ? "padding" : null} style={style}>
2017-07-31 22:03:12 +02:00
<NotesScreen visible={notesScreenVisible} navigation={{ state: route }} />
2018-03-09 17:49:35 +00:00
{searchScreenLoaded && <SearchScreen visible={searchScreenVisible} navigation={{ state: route }} />}
{!notesScreenVisible && !searchScreenVisible && <Screen navigation={{ state: route }} />}
<View style={{ height: this.state.autoCompletionBarExtraHeight }} />
</KeyboardAvoidingView>
2017-07-14 18:49:14 +00:00
);
}
}
2018-03-09 17:49:35 +00:00
const AppNav = connect(state => {
return {
route: state.route,
theme: state.settings.theme,
};
})(AppNavComponent);
2017-07-14 18:49:14 +00:00
2018-03-09 17:49:35 +00:00
module.exports = { AppNav };