Show intro slider on first start for april fools

This commit is contained in:
keplyx 2020-03-08 13:21:14 +01:00
parent 9e90c9d8f3
commit c555aabd5a
5 changed files with 45 additions and 7 deletions

17
App.js
View file

@ -12,6 +12,7 @@ import {createStackNavigator} from '@react-navigation/stack';
import DrawerNavigator from './navigation/DrawerNavigator'; import DrawerNavigator from './navigation/DrawerNavigator';
import NotificationsManager from "./utils/NotificationsManager"; import NotificationsManager from "./utils/NotificationsManager";
import {Provider as PaperProvider} from 'react-native-paper'; import {Provider as PaperProvider} from 'react-native-paper';
import AprilFoolsManager from "./utils/AprilFoolsManager";
type Props = {}; type Props = {};
@ -19,6 +20,7 @@ type State = {
isLoading: boolean, isLoading: boolean,
showIntro: boolean, showIntro: boolean,
showUpdate: boolean, showUpdate: boolean,
showAprilFools: boolean,
currentTheme: ?Object, currentTheme: ?Object,
}; };
@ -30,6 +32,7 @@ export default class App extends React.Component<Props, State> {
isLoading: true, isLoading: true,
showIntro: true, showIntro: true,
showUpdate: true, showUpdate: true,
showAprilFools: false,
currentTheme: null, currentTheme: null,
}; };
@ -68,9 +71,11 @@ export default class App extends React.Component<Props, State> {
this.setState({ this.setState({
showIntro: false, showIntro: false,
showUpdate: false, showUpdate: false,
showAprilFools: false,
}); });
AsyncStorageManager.getInstance().savePref(AsyncStorageManager.getInstance().preferences.showIntro.key, '0'); AsyncStorageManager.getInstance().savePref(AsyncStorageManager.getInstance().preferences.showIntro.key, '0');
AsyncStorageManager.getInstance().savePref(AsyncStorageManager.getInstance().preferences.showUpdate5.key, '0'); AsyncStorageManager.getInstance().savePref(AsyncStorageManager.getInstance().preferences.showUpdate5.key, '0');
AsyncStorageManager.getInstance().savePref(AsyncStorageManager.getInstance().preferences.showAprilFoolsStart.key, '0');
} }
async componentDidMount() { async componentDidMount() {
@ -96,7 +101,8 @@ export default class App extends React.Component<Props, State> {
isLoading: false, isLoading: false,
currentTheme: ThemeManager.getCurrentTheme(), currentTheme: ThemeManager.getCurrentTheme(),
showIntro: AsyncStorageManager.getInstance().preferences.showIntro.current === '1', showIntro: AsyncStorageManager.getInstance().preferences.showIntro.current === '1',
showUpdate: AsyncStorageManager.getInstance().preferences.showUpdate5.current === '1' showUpdate: AsyncStorageManager.getInstance().preferences.showUpdate5.current === '1',
showAprilFools: AprilFoolsManager.getInstance().isAprilFoolsEnabled() && AsyncStorageManager.getInstance().preferences.showAprilFoolsStart.current === '1',
}); });
// Status bar goes dark if set too fast // Status bar goes dark if set too fast
setTimeout(this.setupStatusBar, 1000); setTimeout(this.setupStatusBar, 1000);
@ -109,9 +115,12 @@ export default class App extends React.Component<Props, State> {
render() { render() {
if (this.state.isLoading) { if (this.state.isLoading) {
return null; return null;
} else if (this.state.showIntro || this.state.showUpdate) { } else if (this.state.showIntro || this.state.showUpdate || this.state.showAprilFools) {
return <CustomIntroSlider onDone={this.onIntroDone} return <CustomIntroSlider
isUpdate={this.state.showUpdate && !this.state.showIntro}/>; onDone={this.onIntroDone}
isUpdate={this.state.showUpdate && !this.state.showIntro}
isAprilFools={this.state.showAprilFools && !this.state.showIntro}
/>;
} else { } else {
return ( return (

View file

@ -39,13 +39,15 @@ const styles = StyleSheet.create({
type Props = { type Props = {
onDone: Function, onDone: Function,
isUpdate: boolean isUpdate: boolean,
isAprilFools: boolean,
}; };
export default class CustomIntroSlider extends React.Component<Props> { export default class CustomIntroSlider extends React.Component<Props> {
introSlides: Array<Object>; introSlides: Array<Object>;
updateSlides: Array<Object>; updateSlides: Array<Object>;
aprilFoolsSlides: Array<Object>;
constructor() { constructor() {
super(); super();
@ -108,7 +110,16 @@ export default class CustomIntroSlider extends React.Component<Props> {
icon: 'email', icon: 'email',
colors: ['#e01928', '#be1522'], colors: ['#e01928', '#be1522'],
}, },
] ];
this.aprilFoolsSlides = [
{
key: '1',
title: i18n.t('intro.aprilFoolsSlide.title'),
text: i18n.t('intro.aprilFoolsSlide.text'),
icon: 'information',
colors: ['#e01928', '#be1522'],
},
];
} }
@ -144,10 +155,15 @@ export default class CustomIntroSlider extends React.Component<Props> {
} }
render() { render() {
let slides = this.introSlides;
if (this.props.isUpdate)
slides = this.updateSlides;
else if (this.props.isAprilFools)
slides = this.aprilFoolsSlides;
return ( return (
<AppIntroSlider <AppIntroSlider
renderItem={CustomIntroSlider.getIntroRenderItem} renderItem={CustomIntroSlider.getIntroRenderItem}
slides={this.props.isUpdate ? this.updateSlides : this.introSlides} slides={slides}
onDone={this.props.onDone} onDone={this.props.onDone}
bottomButton bottomButton
showSkipButton showSkipButton

View file

@ -52,6 +52,10 @@
"title": "New in this update!", "title": "New in this update!",
"text": "Never miss an email anymore! Acces your INSA webmail from the app using the left menu.\nPlanex has also seen some improvements!\n\nSome of your remarks where taken into account for this update, more to come.\nThanks for your feedback on the survey! " "text": "Never miss an email anymore! Acces your INSA webmail from the app using the left menu.\nPlanex has also seen some improvements!\n\nSome of your remarks where taken into account for this update, more to come.\nThanks for your feedback on the survey! "
}, },
"aprilFoolsSlide": {
"title": "New in this update!",
"text": "We heard you, you don't like the new design and colors, so we changed them!\nLove."
},
"buttons": { "buttons": {
"next": "Next", "next": "Next",
"skip": "Skip", "skip": "Skip",

View file

@ -52,6 +52,10 @@
"title": "Nouveau dans cette mise à jour !", "title": "Nouveau dans cette mise à jour !",
"text": "Ne ratez plus jamais un email ! Accédez à vos mails INSA depuis le menu à gauche.\nPlanex a aussi été un peu amélioré !\n\nUne partie de vos remarques ont été prises en compte pour cette mise à jour, d'autres sont à venir.\nMerci pour votre retour lors du sondage !" "text": "Ne ratez plus jamais un email ! Accédez à vos mails INSA depuis le menu à gauche.\nPlanex a aussi été un peu amélioré !\n\nUne partie de vos remarques ont été prises en compte pour cette mise à jour, d'autres sont à venir.\nMerci pour votre retour lors du sondage !"
}, },
"aprilFoolsSlide": {
"title": "Nouveau dans cette mise à jour !",
"text": "Nous vous avons entendu, vous n'aimez pas le nouveau design et couleurs, alors on les as changés !\nLa bise."
},
"buttons": { "buttons": {
"next": "Suivant", "next": "Suivant",
"skip": "Passer", "skip": "Passer",

View file

@ -74,6 +74,11 @@ export default class AsyncStorageManager {
default: '1', default: '1',
current: '', current: '',
}, },
showAprilFoolsStart: {
key: 'showAprilFoolsStart',
default: '1',
current: '',
},
}; };
/** /**