forked from vergnet/application-amicale
Various UI improvements and fixes (mainly for ios)
This commit is contained in:
parent
dd4ba0a9fc
commit
6371d4a9ff
9 changed files with 82 additions and 35 deletions
21
App.js
21
App.js
|
@ -1,6 +1,7 @@
|
||||||
// @flow
|
// @flow
|
||||||
|
|
||||||
import * as React from 'react';
|
import * as React from 'react';
|
||||||
|
import {StatusBar, Platform } from 'react-native';
|
||||||
import {Root, StyleProvider} from 'native-base';
|
import {Root, StyleProvider} from 'native-base';
|
||||||
import {createAppContainerWithInitialRoute} from './navigation/AppNavigator';
|
import {createAppContainerWithInitialRoute} from './navigation/AppNavigator';
|
||||||
import ThemeManager from './utils/ThemeManager';
|
import ThemeManager from './utils/ThemeManager';
|
||||||
|
@ -45,9 +46,23 @@ export default class App extends React.Component<Props, State> {
|
||||||
this.setState({
|
this.setState({
|
||||||
currentTheme: ThemeManager.getCurrentTheme()
|
currentTheme: ThemeManager.getCurrentTheme()
|
||||||
});
|
});
|
||||||
|
this.setupStatusBar();
|
||||||
clearThemeCache();
|
clearThemeCache();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
setupStatusBar() {
|
||||||
|
if (Platform.OS === 'ios') {
|
||||||
|
console.log(ThemeManager.getNightMode());
|
||||||
|
if (ThemeManager.getNightMode()) {
|
||||||
|
console.log('setting light mode');
|
||||||
|
StatusBar.setBarStyle('light-content', true);
|
||||||
|
} else {
|
||||||
|
console.log('setting dark mode');
|
||||||
|
StatusBar.setBarStyle('dark-content', true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Callback when user ends the intro. Save in preferences to avaoid showing back the introSlides
|
* Callback when user ends the intro. Save in preferences to avaoid showing back the introSlides
|
||||||
*/
|
*/
|
||||||
|
@ -70,7 +85,7 @@ export default class App extends React.Component<Props, State> {
|
||||||
await AsyncStorageManager.getInstance().loadPreferences();
|
await AsyncStorageManager.getInstance().loadPreferences();
|
||||||
ThemeManager.getInstance().setUpdateThemeCallback(() => this.updateTheme());
|
ThemeManager.getInstance().setUpdateThemeCallback(() => this.updateTheme());
|
||||||
await NotificationsManager.initExpoToken();
|
await NotificationsManager.initExpoToken();
|
||||||
console.log(AsyncStorageManager.getInstance().preferences.expoToken.current);
|
// console.log(AsyncStorageManager.getInstance().preferences.expoToken.current);
|
||||||
}
|
}
|
||||||
|
|
||||||
onLoadFinished() {
|
onLoadFinished() {
|
||||||
|
@ -83,6 +98,10 @@ export default class App extends React.Component<Props, State> {
|
||||||
showUpdate: AsyncStorageManager.getInstance().preferences.showUpdate1.current === '1'
|
showUpdate: AsyncStorageManager.getInstance().preferences.showUpdate1.current === '1'
|
||||||
// showIntro: true
|
// showIntro: true
|
||||||
});
|
});
|
||||||
|
// Status bar goes dark if set too fast
|
||||||
|
setTimeout(this.setupStatusBar,
|
||||||
|
1000
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -14,7 +14,8 @@ type Props = {
|
||||||
navigation: Object,
|
navigation: Object,
|
||||||
headerTitle: string,
|
headerTitle: string,
|
||||||
headerRightButton: React.Node,
|
headerRightButton: React.Node,
|
||||||
children: React.Node
|
children: React.Node,
|
||||||
|
hasTabs: boolean,
|
||||||
}
|
}
|
||||||
|
|
||||||
type State = {
|
type State = {
|
||||||
|
@ -27,7 +28,8 @@ export default class BaseContainer extends React.Component<Props, State> {
|
||||||
willBlurSubscription: function;
|
willBlurSubscription: function;
|
||||||
|
|
||||||
static defaultProps = {
|
static defaultProps = {
|
||||||
headerRightButton: <View/>
|
headerRightButton: <View/>,
|
||||||
|
hasTabs: false,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -72,10 +74,12 @@ export default class BaseContainer extends React.Component<Props, State> {
|
||||||
width: '100%',
|
width: '100%',
|
||||||
height: '100%'
|
height: '100%'
|
||||||
}}>
|
}}>
|
||||||
<CustomSideMenu navigation={this.props.navigation} isOpen={this.state.isOpen}
|
<CustomSideMenu
|
||||||
|
navigation={this.props.navigation} isOpen={this.state.isOpen}
|
||||||
onChange={(isOpen) => this.updateMenuState(isOpen)}>
|
onChange={(isOpen) => this.updateMenuState(isOpen)}>
|
||||||
<Container>
|
<Container>
|
||||||
<CustomHeader navigation={this.props.navigation} title={this.props.headerTitle}
|
<CustomHeader
|
||||||
|
navigation={this.props.navigation} title={this.props.headerTitle}
|
||||||
leftButton={
|
leftButton={
|
||||||
<Touchable
|
<Touchable
|
||||||
style={{padding: 6}}
|
style={{padding: 6}}
|
||||||
|
@ -85,7 +89,8 @@ export default class BaseContainer extends React.Component<Props, State> {
|
||||||
icon="menu"/>
|
icon="menu"/>
|
||||||
</Touchable>
|
</Touchable>
|
||||||
}
|
}
|
||||||
rightButton={this.props.headerRightButton}/>
|
rightButton={this.props.headerRightButton}
|
||||||
|
hasTabs={this.props.hasTabs}/>
|
||||||
{this.props.children}
|
{this.props.children}
|
||||||
</Container>
|
</Container>
|
||||||
</CustomSideMenu>
|
</CustomSideMenu>
|
||||||
|
|
|
@ -50,7 +50,8 @@ export default class CustomHeader extends React.Component<Props> {
|
||||||
button = this.props.leftButton;
|
button = this.props.leftButton;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Header style={styles.header}>
|
<Header style={styles.header}
|
||||||
|
hasTabs={this.props.hasTabs}>
|
||||||
<Left>
|
<Left>
|
||||||
{button}
|
{button}
|
||||||
</Left>
|
</Left>
|
||||||
|
|
|
@ -342,10 +342,16 @@ export default class FetchedDataSectionList extends React.Component<Props, State
|
||||||
const nav = this.props.navigation;
|
const nav = this.props.navigation;
|
||||||
const dataset = this.createDataset(this.state.fetchedData);
|
const dataset = this.createDataset(this.state.fetchedData);
|
||||||
return (
|
return (
|
||||||
<BaseContainer navigation={nav} headerTitle={this.getHeaderTranslation()}
|
<BaseContainer
|
||||||
headerRightButton={this.getRightButton()}>
|
navigation={nav} headerTitle={this.getHeaderTranslation()}
|
||||||
|
headerRightButton={this.getRightButton()}
|
||||||
|
hasTabs={this.hasTabs()}>
|
||||||
{this.hasTabs() ?
|
{this.hasTabs() ?
|
||||||
<Tabs>
|
<Tabs
|
||||||
|
tabContainerStyle={{
|
||||||
|
elevation: 0, // Fix for android shadow
|
||||||
|
}}
|
||||||
|
>
|
||||||
{this.getTabbedView(dataset)}
|
{this.getTabbedView(dataset)}
|
||||||
</Tabs>
|
</Tabs>
|
||||||
:
|
:
|
||||||
|
|
|
@ -158,7 +158,7 @@ export default {
|
||||||
searchBarHeight: platform === "ios" ? 30 : 40,
|
searchBarHeight: platform === "ios" ? 30 : 40,
|
||||||
searchBarInputHeight: platform === "ios" ? 30 : 50,
|
searchBarInputHeight: platform === "ios" ? 30 : 50,
|
||||||
toolbarBtnTextColor: platform === "ios" ? "#be1522" : "#fff",
|
toolbarBtnTextColor: platform === "ios" ? "#be1522" : "#fff",
|
||||||
toolbarDefaultBorder: platform === "ios" ? "#a7a6ab" : "#ba1f0f",
|
toolbarDefaultBorder: platform === "ios" ? "#3f3f3f" : "#ba1f0f",
|
||||||
iosStatusbar: platform === "ios" ? "dark-content" : "light-content",
|
iosStatusbar: platform === "ios" ? "dark-content" : "light-content",
|
||||||
get statusBarColor() {
|
get statusBarColor() {
|
||||||
return color(this.toolbarDefaultBg)
|
return color(this.toolbarDefaultBg)
|
||||||
|
@ -199,7 +199,7 @@ export default {
|
||||||
|
|
||||||
// List
|
// List
|
||||||
listBg: "transparent",
|
listBg: "transparent",
|
||||||
listBorderColor: "#727272",
|
listBorderColor: "#3e3e3e",
|
||||||
listDividerBg: "#f4f4f4",
|
listDividerBg: "#f4f4f4",
|
||||||
listBtnUnderlayColor: "#DDD",
|
listBtnUnderlayColor: "#DDD",
|
||||||
listItemPadding: platform === "ios" ? 10 : 12,
|
listItemPadding: platform === "ios" ? 10 : 12,
|
||||||
|
@ -231,10 +231,10 @@ export default {
|
||||||
inverseSpinnerColor: "#1A191B",
|
inverseSpinnerColor: "#1A191B",
|
||||||
|
|
||||||
// Tab
|
// Tab
|
||||||
tabDefaultBg: platform === "ios" ? "#2b2b2b" : "#be1522",
|
tabDefaultBg: platform === "ios" ? "#333333" : "#be1522",
|
||||||
topTabBarTextColor: platform === "ios" ? "#6b6b6b" : "#b3c7f9",
|
topTabBarTextColor: platform === "ios" ? "#6b6b6b" : "#b3c7f9",
|
||||||
topTabBarActiveTextColor: platform === "ios" ? "#be1522" : "#fff",
|
topTabBarActiveTextColor: platform === "ios" ? "#be1522" : "#fff",
|
||||||
topTabBarBorderColor: platform === "ios" ? "#a7a6ab" : "#fff",
|
topTabBarBorderColor: platform === "ios" ? "#3f3f3f" : "#fff",
|
||||||
topTabBarActiveBorderColor: platform === "ios" ? "#be1522" : "#fff",
|
topTabBarActiveBorderColor: platform === "ios" ? "#be1522" : "#fff",
|
||||||
|
|
||||||
// Tabs
|
// Tabs
|
||||||
|
|
5
package-lock.json
generated
5
package-lock.json
generated
|
@ -1042,6 +1042,11 @@
|
||||||
"resolved": "https://registry.npmjs.org/@react-native-community/netinfo/-/netinfo-2.0.10.tgz",
|
"resolved": "https://registry.npmjs.org/@react-native-community/netinfo/-/netinfo-2.0.10.tgz",
|
||||||
"integrity": "sha512-NrIzyLe0eSbhgMnHl2QdSEhaA7yXh6p9jzMomfUa//hoTXE+xbObGDdiWWSQm2bnXnZJg8XCU3AB9qzvqcuLnA=="
|
"integrity": "sha512-NrIzyLe0eSbhgMnHl2QdSEhaA7yXh6p9jzMomfUa//hoTXE+xbObGDdiWWSQm2bnXnZJg8XCU3AB9qzvqcuLnA=="
|
||||||
},
|
},
|
||||||
|
"@react-native-community/status-bar": {
|
||||||
|
"version": "1.0.3",
|
||||||
|
"resolved": "https://registry.npmjs.org/@react-native-community/status-bar/-/status-bar-1.0.3.tgz",
|
||||||
|
"integrity": "sha512-5gwhG1gBTXqgSi/e9DbraBQBCtUtTCSrI9kuwEpwLOCa/pKLIyxQG/HM96ZjvytbZOTZXeaTiKtqLFvYNYSx3A=="
|
||||||
|
},
|
||||||
"@react-navigation/core": {
|
"@react-navigation/core": {
|
||||||
"version": "3.4.2",
|
"version": "3.4.2",
|
||||||
"resolved": "https://registry.npmjs.org/@react-navigation/core/-/core-3.4.2.tgz",
|
"resolved": "https://registry.npmjs.org/@react-navigation/core/-/core-3.4.2.tgz",
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@expo/vector-icons": "^10.0.2",
|
"@expo/vector-icons": "^10.0.2",
|
||||||
|
"@react-native-community/status-bar": "^1.0.3",
|
||||||
"@shoutem/theme": "^0.11.3",
|
"@shoutem/theme": "^0.11.3",
|
||||||
"expo": "^33.0.7",
|
"expo": "^33.0.7",
|
||||||
"expo-font": "^5.0.1",
|
"expo-font": "^5.0.1",
|
||||||
|
|
|
@ -128,9 +128,13 @@ export default class PlanningScreen extends React.Component<Props, State> {
|
||||||
// Surround description with div to allow text styling if the description is not html
|
// Surround description with div to allow text styling if the description is not html
|
||||||
<HTML html={"<div>" + this.state.modalCurrentDisplayItem.description + "</div>"}
|
<HTML html={"<div>" + this.state.modalCurrentDisplayItem.description + "</div>"}
|
||||||
tagsStyles={{
|
tagsStyles={{
|
||||||
p: {color: ThemeManager.getCurrentThemeVariables().textColor},
|
p: {
|
||||||
|
color: ThemeManager.getCurrentThemeVariables().textColor,
|
||||||
|
fontSize: ThemeManager.getCurrentThemeVariables().fontSizeBase
|
||||||
|
},
|
||||||
div: {color: ThemeManager.getCurrentThemeVariables().textColor}
|
div: {color: ThemeManager.getCurrentThemeVariables().textColor}
|
||||||
}}/>
|
}}
|
||||||
|
onLinkPress={(event, link) => openWebLink(link)}/>
|
||||||
: <View/>}
|
: <View/>}
|
||||||
</Content>
|
</Content>
|
||||||
</View>
|
</View>
|
||||||
|
|
|
@ -29,8 +29,14 @@ export default class ProxiwashAboutScreen extends React.Component<Props> {
|
||||||
const nav = this.props.navigation;
|
const nav = this.props.navigation;
|
||||||
return (
|
return (
|
||||||
<Container>
|
<Container>
|
||||||
<CustomHeader navigation={nav} title={i18n.t('screens.proxiwash')} hasBackButton={true}/>
|
<CustomHeader
|
||||||
<Tabs>
|
navigation={nav} title={i18n.t('screens.proxiwash')}
|
||||||
|
hasBackButton={true}
|
||||||
|
hasTabs={true}/>
|
||||||
|
<Tabs
|
||||||
|
tabContainerStyle={{
|
||||||
|
elevation: 0, // Fix for android shadow
|
||||||
|
}}>
|
||||||
<Tab
|
<Tab
|
||||||
heading={
|
heading={
|
||||||
<TabHeading>
|
<TabHeading>
|
||||||
|
|
Loading…
Reference in a new issue