forked from vergnet/application-amicale
Update About Screen
This commit is contained in:
parent
a8b9fd49b7
commit
a9a2b9150b
3 changed files with 193 additions and 154 deletions
|
@ -346,9 +346,7 @@
|
||||||
"license": "License",
|
"license": "License",
|
||||||
"debug": "Debug",
|
"debug": "Debug",
|
||||||
"team": "Team",
|
"team": "Team",
|
||||||
"author": "Author and maintainer",
|
|
||||||
"authorMail": "Send an email",
|
"authorMail": "Send an email",
|
||||||
"additionalDev": "Developer",
|
|
||||||
"technologies": "Technologies",
|
"technologies": "Technologies",
|
||||||
"reactNative": "Made with React Native",
|
"reactNative": "Made with React Native",
|
||||||
"libs": "Libraries used",
|
"libs": "Libraries used",
|
||||||
|
|
|
@ -345,9 +345,7 @@
|
||||||
"license": "Licence",
|
"license": "Licence",
|
||||||
"debug": "Debug",
|
"debug": "Debug",
|
||||||
"team": "Équipe",
|
"team": "Équipe",
|
||||||
"author": "Auteur et mainteneur",
|
|
||||||
"authorMail": "Envoyer un mail",
|
"authorMail": "Envoyer un mail",
|
||||||
"additionalDev": "Dévelopeur",
|
|
||||||
"technologies": "Technologies",
|
"technologies": "Technologies",
|
||||||
"reactNative": "Créé avec React Native",
|
"reactNative": "Créé avec React Native",
|
||||||
"libs": "Librairies utilisées",
|
"libs": "Librairies utilisées",
|
||||||
|
|
|
@ -1,19 +1,20 @@
|
||||||
// @flow
|
// @flow
|
||||||
|
|
||||||
import * as React from 'react';
|
import * as React from 'react';
|
||||||
import {FlatList, Linking, Platform, Image, View, ScrollView} from 'react-native';
|
import {FlatList, Linking, Platform, Image, View} from 'react-native';
|
||||||
import i18n from 'i18n-js';
|
import i18n from 'i18n-js';
|
||||||
import {Avatar, Card, List, Text, Title, withTheme} from 'react-native-paper';
|
import {Avatar, Card, List, withTheme} from 'react-native-paper';
|
||||||
import {StackNavigationProp} from '@react-navigation/stack';
|
import {StackNavigationProp} from '@react-navigation/stack';
|
||||||
import {Modalize} from "react-native-modalize";
|
import {Modalize} from "react-native-modalize";
|
||||||
import packageJson from '../../../package.json';
|
import packageJson from '../../../package.json';
|
||||||
import CollapsibleFlatList from '../../components/Collapsible/CollapsibleFlatList';
|
import CollapsibleFlatList from '../../components/Collapsible/CollapsibleFlatList';
|
||||||
import APP_LOGO from '../../../assets/android.icon.png';
|
import APP_LOGO from '../../../assets/android.icon.round.png';
|
||||||
import type {
|
import type {
|
||||||
CardTitleIconPropsType,
|
CardTitleIconPropsType,
|
||||||
ListIconPropsType,
|
ListIconPropsType,
|
||||||
} from '../../constants/PaperStyles';
|
} from '../../constants/PaperStyles';
|
||||||
import CustomModal from "../../components/Overrides/CustomModal";
|
import OptionsDialog from "../../components/Dialogs/OptionsDialog";
|
||||||
|
import type {OptionsDialogButtonType} from "../../components/Dialogs/OptionsDialog";
|
||||||
|
|
||||||
type ListItemType = {
|
type ListItemType = {
|
||||||
onPressCallback: () => void,
|
onPressCallback: () => void,
|
||||||
|
@ -22,6 +23,14 @@ type ListItemType = {
|
||||||
showChevron: boolean,
|
showChevron: boolean,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
type AthorsItemType = {
|
||||||
|
name: string,
|
||||||
|
message: string,
|
||||||
|
btnTrool: OptionsDialogButtonType,
|
||||||
|
btnLinkedin: OptionsDialogButtonType,
|
||||||
|
btnMail: OptionsDialogButtonType,
|
||||||
|
};
|
||||||
|
|
||||||
const links = {
|
const links = {
|
||||||
appstore: 'https://apps.apple.com/us/app/campus-amicale-insat/id1477722148',
|
appstore: 'https://apps.apple.com/us/app/campus-amicale-insat/id1477722148',
|
||||||
playstore:
|
playstore:
|
||||||
|
@ -32,13 +41,13 @@ const links = {
|
||||||
'https://git.etud.insa-toulouse.fr/vergnet/application-amicale/src/branch/master/Changelog.md',
|
'https://git.etud.insa-toulouse.fr/vergnet/application-amicale/src/branch/master/Changelog.md',
|
||||||
license:
|
license:
|
||||||
'https://git.etud.insa-toulouse.fr/vergnet/application-amicale/src/branch/master/LICENSE',
|
'https://git.etud.insa-toulouse.fr/vergnet/application-amicale/src/branch/master/LICENSE',
|
||||||
authorMail:
|
arnaudMail:
|
||||||
'mailto:vergnet@etud.insa-toulouse.fr?' +
|
'mailto:vergnet@etud.insa-toulouse.fr?' +
|
||||||
'subject=' +
|
'subject=' +
|
||||||
'Application Amicale INSA Toulouse' +
|
'Application Amicale INSA Toulouse' +
|
||||||
'&body=' +
|
'&body=' +
|
||||||
'Coucou !\n\n',
|
'Coucou !\n\n',
|
||||||
authorLinkedin: 'https://www.linkedin.com/in/arnaud-vergnet-434ba5179/',
|
arnaudLinkedin: 'https://www.linkedin.com/in/arnaud-vergnet-434ba5179/',
|
||||||
yohanMail:
|
yohanMail:
|
||||||
'mailto:ysimard@etud.insa-toulouse.fr?' +
|
'mailto:ysimard@etud.insa-toulouse.fr?' +
|
||||||
'subject=' +
|
'subject=' +
|
||||||
|
@ -68,6 +77,99 @@ function openWebLink(link: string) {
|
||||||
class AboutScreen extends React.Component<PropsType> {
|
class AboutScreen extends React.Component<PropsType> {
|
||||||
modalRef: Modalize | null;
|
modalRef: Modalize | null;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Data team
|
||||||
|
*/
|
||||||
|
teamUsers = {
|
||||||
|
arnaud: {
|
||||||
|
name: 'Arnaud VERGNET',
|
||||||
|
message: 'C vrément tro 1 bg !!',
|
||||||
|
icon: 'account-circle',
|
||||||
|
btnTrool: {
|
||||||
|
title: 'SWAG',
|
||||||
|
onPress: () => {
|
||||||
|
openWebLink(links.meme);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
btnLinkedin: {
|
||||||
|
title: 'Linkedin',
|
||||||
|
onPress: () => {
|
||||||
|
openWebLink(links.arnaudMail);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
btnMail: {
|
||||||
|
title: i18n.t('screens.about.authorMail'),
|
||||||
|
onPress: () => {
|
||||||
|
openWebLink(links.arnaudLinkedin);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
yohan: {
|
||||||
|
name: 'Yohan Simard',
|
||||||
|
message: 'Correction de quelques bugs',
|
||||||
|
icon: 'account-circle',
|
||||||
|
btnTrool: null,
|
||||||
|
btnLinkedin: {
|
||||||
|
title: 'Linkedin',
|
||||||
|
onPress: () => {
|
||||||
|
openWebLink(links.yohanLinkedin);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
btnMail: {
|
||||||
|
title: i18n.t('screens.about.authorMail'),
|
||||||
|
onPress: () => {
|
||||||
|
openWebLink(links.yohanMail);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Data thanks
|
||||||
|
*/
|
||||||
|
thanksUsers = {
|
||||||
|
beranger: {
|
||||||
|
name: 'Béranger Quintana Y Arciosana',
|
||||||
|
message: 'Étudiant en AE (2020) et Président de l’Amicale au moment de la création et du lancement du projet. L’application, c’était son idée. Il a beaucoup aidé pour trouver des bugs, de nouvelles fonctionnalités et faire de la com.',
|
||||||
|
icon: 'account-circle',
|
||||||
|
btnTrool: null,
|
||||||
|
btnLinkedin: null,
|
||||||
|
btnMail: null,
|
||||||
|
},
|
||||||
|
celine: {
|
||||||
|
name: 'Céline Tassin',
|
||||||
|
message: 'Étudiante en GPE (2020). Sans elle, tout serait moins mignon. Elle a aidé pour écrire le texte, faire de la com, et aussi à créer la mascotte 🦊.',
|
||||||
|
icon: 'account-circle',
|
||||||
|
btnTrool: null,
|
||||||
|
btnLinkedin: null,
|
||||||
|
btnMail: null,
|
||||||
|
},
|
||||||
|
damien: {
|
||||||
|
name: 'Damien Molina',
|
||||||
|
message: 'Étudiant en IR (2020) et créateur de la dernière version du site de l’Amicale. Grâce à son aide, intégrer les services de l’Amicale à l’application a été très simple.',
|
||||||
|
icon: 'account-circle',
|
||||||
|
btnTrool: null,
|
||||||
|
btnLinkedin: null,
|
||||||
|
btnMail: null,
|
||||||
|
},
|
||||||
|
titouan: {
|
||||||
|
name: 'Titouan Labourdette',
|
||||||
|
message: 'Étudiant en AE (2020) et Président de l’Amicale au moment de la création et du lancement du projet. L’application, c’était son idée. Il a beaucoup aidé pour trouver des bugs, de nouvelles fonctionnalités et faire de la com.',
|
||||||
|
icon: 'account-circle',
|
||||||
|
btnTrool: null,
|
||||||
|
btnLinkedin: null,
|
||||||
|
btnMail: null,
|
||||||
|
},
|
||||||
|
theo: {
|
||||||
|
name: 'Théo Tami',
|
||||||
|
message: 'Étudiant en IR (2020). Il a beaucoup aidé pour trouver des bugs et proposer des nouvelles fonctionnalités.',
|
||||||
|
icon: 'account-circle',
|
||||||
|
btnTrool: null,
|
||||||
|
btnLinkedin: null,
|
||||||
|
btnMail: null,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Data to be displayed in the app card
|
* Data to be displayed in the app card
|
||||||
*/
|
*/
|
||||||
|
@ -118,65 +220,25 @@ class AboutScreen extends React.Component<PropsType> {
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
|
||||||
* Data to be displayed in the author card
|
|
||||||
*/
|
|
||||||
authorData = [
|
|
||||||
{
|
|
||||||
onPressCallback: () => {
|
|
||||||
openWebLink(links.meme);
|
|
||||||
},
|
|
||||||
icon: 'account-circle',
|
|
||||||
text: 'Arnaud VERGNET',
|
|
||||||
showChevron: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
onPressCallback: () => {
|
|
||||||
openWebLink(links.authorMail);
|
|
||||||
},
|
|
||||||
icon: 'email',
|
|
||||||
text: i18n.t('screens.about.authorMail'),
|
|
||||||
showChevron: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
onPressCallback: () => {
|
|
||||||
openWebLink(links.authorLinkedin);
|
|
||||||
},
|
|
||||||
icon: 'linkedin',
|
|
||||||
text: 'Linkedin',
|
|
||||||
showChevron: true,
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Data to be displayed in the additional developer card
|
* Data to be displayed in the additional developer card
|
||||||
*/
|
*/
|
||||||
additionalDevData = [
|
teamData = [
|
||||||
{
|
{
|
||||||
onPressCallback: () => {
|
onPressCallback: () => {
|
||||||
this.onListItemPress(
|
this.onListItemPress(this.teamUsers.arnaud);
|
||||||
'Yohan Simard',
|
|
||||||
'Correction de quelques bugs');
|
|
||||||
},
|
},
|
||||||
icon: 'account',
|
icon: this.teamUsers.arnaud.icon,
|
||||||
text: 'Yohan SIMARD',
|
text: this.teamUsers.arnaud.name,
|
||||||
showChevron: false,
|
showChevron: false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
onPressCallback: () => {
|
onPressCallback: () => {
|
||||||
openWebLink(links.yohanMail);
|
this.onListItemPress(this.teamUsers.yohan);
|
||||||
},
|
},
|
||||||
icon: 'email',
|
icon: this.teamUsers.yohan.icon,
|
||||||
text: i18n.t('screens.about.authorMail'),
|
text: this.teamUsers.yohan.name,
|
||||||
showChevron: true,
|
showChevron: false,
|
||||||
},
|
|
||||||
{
|
|
||||||
onPressCallback: () => {
|
|
||||||
openWebLink(links.yohanLinkedin);
|
|
||||||
},
|
|
||||||
icon: 'linkedin',
|
|
||||||
text: 'Linkedin',
|
|
||||||
showChevron: true,
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -186,52 +248,42 @@ class AboutScreen extends React.Component<PropsType> {
|
||||||
thanksData = [
|
thanksData = [
|
||||||
{
|
{
|
||||||
onPressCallback: () => {
|
onPressCallback: () => {
|
||||||
this.onListItemPress(
|
this.onListItemPress(this.thanksUsers.beranger);
|
||||||
'Béranger Quintana Y Arciosana',
|
|
||||||
'Étudiant en AE (2020) et Président de l’Amicale au moment de la création et du lancement du projet. L’application, c’était son idée. Il a beaucoup aidé pour trouver des bugs, de nouvelles fonctionnalités et faire de la com.');
|
|
||||||
},
|
},
|
||||||
icon: 'account-circle',
|
icon: this.thanksUsers.beranger.icon,
|
||||||
text: 'Béranger Quintana Y Arciosana',
|
text: this.thanksUsers.beranger.name,
|
||||||
showChevron: false,
|
showChevron: false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
onPressCallback: () => {
|
onPressCallback: () => {
|
||||||
this.onListItemPress(
|
this.onListItemPress(this.thanksUsers.celine);
|
||||||
'Céline Tassin',
|
|
||||||
'Étudiante en GPE (2020). Sans elle, tout serait moins mignon. Elle a aidé pour écrire le texte, faire de la com, et aussi à créer la mascotte 🦊.');
|
|
||||||
},
|
},
|
||||||
icon: 'account-circle',
|
icon: this.thanksUsers.celine.icon,
|
||||||
text: 'Céline Tassin',
|
text: this.thanksUsers.celine.name,
|
||||||
showChevron: false,
|
showChevron: false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
onPressCallback: () => {
|
onPressCallback: () => {
|
||||||
this.onListItemPress(
|
this.onListItemPress(this.thanksUsers.damien);
|
||||||
'Damien Molina',
|
|
||||||
'Étudiant en IR (2020) et créateur de la dernière version du site de l’Amicale. Grâce à son aide, intégrer les services de l’Amicale à l’application a été très simple.');
|
|
||||||
},
|
},
|
||||||
icon: 'account-circle',
|
icon: this.thanksUsers.damien.icon,
|
||||||
text: 'Damien Molina',
|
text: this.thanksUsers.damien.name,
|
||||||
showChevron: false,
|
showChevron: false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
onPressCallback: () => {
|
onPressCallback: () => {
|
||||||
this.onListItemPress(
|
this.onListItemPress(this.thanksUsers.titouan);
|
||||||
'Titouan Labourdette',
|
|
||||||
'Étudiant en AE (2020) et Président de l’Amicale au moment de la création et du lancement du projet. L’application, c’était son idée. Il a beaucoup aidé pour trouver des bugs, de nouvelles fonctionnalités et faire de la com.');
|
|
||||||
},
|
},
|
||||||
icon: 'account-circle',
|
icon: this.thanksUsers.titouan.icon,
|
||||||
text: 'Titouan Labourdette',
|
text: this.thanksUsers.titouan.name,
|
||||||
showChevron: false,
|
showChevron: false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
onPressCallback: () => {
|
onPressCallback: () => {
|
||||||
this.onListItemPress(
|
this.onListItemPress(this.thanksUsers.theo);
|
||||||
'Titouan Labourdette',
|
|
||||||
'Étudiant en IR (2020). Il a beaucoup aidé pour trouver des bugs et proposer des nouvelles fonctionnalités.');
|
|
||||||
},
|
},
|
||||||
icon: 'account-circle',
|
icon: this.thanksUsers.theo.icon,
|
||||||
text: 'Titouan Labourdette',
|
text: this.thanksUsers.theo.name,
|
||||||
showChevron: false,
|
showChevron: false,
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
@ -277,10 +329,16 @@ class AboutScreen extends React.Component<PropsType> {
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
constructor() {
|
constructor(props: PropsType) {
|
||||||
super();
|
super(props);
|
||||||
this.state = {
|
this.state = {
|
||||||
modalCurrentDisplayItem: null,
|
dialogVisible: false,
|
||||||
|
dialogTitle: '',
|
||||||
|
dialogMessage: '',
|
||||||
|
dialogButtons: [],
|
||||||
|
onDialogDismiss: () => {
|
||||||
|
this.setState({dialogVisible: false});
|
||||||
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -288,16 +346,32 @@ class AboutScreen extends React.Component<PropsType> {
|
||||||
* Callback used when clicking an article in the list.
|
* Callback used when clicking an article in the list.
|
||||||
* It opens the modal to show detailed information about the article
|
* It opens the modal to show detailed information about the article
|
||||||
*
|
*
|
||||||
* @param title TODO
|
* @param user TODO
|
||||||
* @param message TODO
|
|
||||||
*/
|
*/
|
||||||
onListItemPress(title: string, message : string) {
|
onListItemPress(user: AthorsItemType) {
|
||||||
this.setState({
|
const dialogBtn: Array<OptionsDialogButtonType> = [
|
||||||
modalCurrentDisplayItem: AboutScreen.getModalItemContent(title, message),
|
{
|
||||||
});
|
title: 'OK',
|
||||||
if (this.modalRef) {
|
onPress: () => {
|
||||||
this.modalRef.open();
|
this.onDialogDismiss();
|
||||||
|
},
|
||||||
|
}
|
||||||
|
];
|
||||||
|
if(user.btnMail != null) {
|
||||||
|
dialogBtn.push(user.btnMail);
|
||||||
}
|
}
|
||||||
|
if(user.btnLinkedin != null) {
|
||||||
|
dialogBtn.push(user.btnLinkedin);
|
||||||
|
}
|
||||||
|
if(user.btnTrool != null) {
|
||||||
|
dialogBtn.push(user.btnTrool);
|
||||||
|
}
|
||||||
|
this.setState({
|
||||||
|
dialogVisible: true,
|
||||||
|
dialogTitle: user.name,
|
||||||
|
dialogMessage: user.message,
|
||||||
|
dialogButtons: dialogBtn,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -345,18 +419,9 @@ class AboutScreen extends React.Component<PropsType> {
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
<Card.Content>
|
<Card.Content>
|
||||||
<Title>{i18n.t('screens.about.author')}</Title>
|
|
||||||
<FlatList
|
<FlatList
|
||||||
data={this.authorData}
|
data={this.teamData}
|
||||||
keyExtractor={this.keyExtractor}
|
keyExtractor={this.keyExtractor}
|
||||||
listKey="1"
|
|
||||||
renderItem={this.getCardItem}
|
|
||||||
/>
|
|
||||||
<Title>{i18n.t('screens.about.additionalDev')}</Title>
|
|
||||||
<FlatList
|
|
||||||
data={this.additionalDevData}
|
|
||||||
keyExtractor={this.keyExtractor}
|
|
||||||
listKey="2"
|
|
||||||
renderItem={this.getCardItem}
|
renderItem={this.getCardItem}
|
||||||
/>
|
/>
|
||||||
</Card.Content>
|
</Card.Content>
|
||||||
|
@ -378,12 +443,13 @@ class AboutScreen extends React.Component<PropsType> {
|
||||||
<Avatar.Icon size={iconProps.size} icon="hand-heart" />
|
<Avatar.Icon size={iconProps.size} icon="hand-heart" />
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
<FlatList
|
<Card.Content>
|
||||||
data={this.thanksData}
|
<FlatList
|
||||||
keyExtractor={this.keyExtractor}
|
data={this.thanksData}
|
||||||
listKey="1"
|
keyExtractor={this.keyExtractor}
|
||||||
renderItem={this.getCardItem}
|
renderItem={this.getCardItem}
|
||||||
/>
|
/>
|
||||||
|
</Card.Content>
|
||||||
</Card>
|
</Card>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -395,42 +461,24 @@ class AboutScreen extends React.Component<PropsType> {
|
||||||
*/
|
*/
|
||||||
getTechnoCard(): React.Node {
|
getTechnoCard(): React.Node {
|
||||||
return (
|
return (
|
||||||
<Card style={{marginBottom: 10}}>
|
<Card style={{marginBottom: 10}}>
|
||||||
<Card.Content>
|
<Card.Title
|
||||||
<Title>{i18n.t('screens.about.technologies')}</Title>
|
title={i18n.t('screens.about.technologies')}
|
||||||
<FlatList
|
left={(iconProps: CardTitleIconPropsType): React.Node => (
|
||||||
data={this.technoData}
|
<Avatar.Icon size={iconProps.size} icon="build" />
|
||||||
keyExtractor={this.keyExtractor}
|
)}
|
||||||
renderItem={this.getCardItem}
|
|
||||||
/>
|
/>
|
||||||
</Card.Content>
|
<Card.Content>
|
||||||
</Card>
|
<FlatList
|
||||||
|
data={this.technoData}
|
||||||
|
keyExtractor={this.keyExtractor}
|
||||||
|
renderItem={this.getCardItem}
|
||||||
|
/>
|
||||||
|
</Card.Content>
|
||||||
|
</Card>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the modal content depending on the given article TODO
|
|
||||||
*
|
|
||||||
* @param title TODO
|
|
||||||
* @param message TODO
|
|
||||||
* @return {*}
|
|
||||||
*/
|
|
||||||
static getModalItemContent(title: string, message : string): React.Node {
|
|
||||||
return (
|
|
||||||
<View
|
|
||||||
style={{
|
|
||||||
flex: 1,
|
|
||||||
padding: 20,
|
|
||||||
}}>
|
|
||||||
<Title>{title}</Title>
|
|
||||||
<ScrollView>
|
|
||||||
<Text>{message}</Text>
|
|
||||||
</ScrollView>
|
|
||||||
</View>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets a chevron icon
|
* Gets a chevron icon
|
||||||
*
|
*
|
||||||
|
@ -512,15 +560,6 @@ class AboutScreen extends React.Component<PropsType> {
|
||||||
*/
|
*/
|
||||||
keyExtractor = (item: ListItemType): string => item.icon;
|
keyExtractor = (item: ListItemType): string => item.icon;
|
||||||
|
|
||||||
/**
|
|
||||||
* Callback used when receiving the modal ref
|
|
||||||
*
|
|
||||||
* @param ref
|
|
||||||
*/
|
|
||||||
onModalRef = (ref: Modalize) => {
|
|
||||||
this.modalRef = ref;
|
|
||||||
};
|
|
||||||
|
|
||||||
render(): React.Node {
|
render(): React.Node {
|
||||||
const {state} = this;
|
const {state} = this;
|
||||||
return (
|
return (
|
||||||
|
@ -533,9 +572,13 @@ class AboutScreen extends React.Component<PropsType> {
|
||||||
data={this.dataOrder}
|
data={this.dataOrder}
|
||||||
renderItem={this.getMainCard}
|
renderItem={this.getMainCard}
|
||||||
/>
|
/>
|
||||||
<CustomModal onRef={this.onModalRef}>
|
<OptionsDialog
|
||||||
{state.modalCurrentDisplayItem}
|
visible={state.dialogVisible}
|
||||||
</CustomModal>
|
title={state.dialogTitle}
|
||||||
|
message={state.dialogMessage}
|
||||||
|
buttons={state.dialogButtons}
|
||||||
|
onDismiss={state.onDialogDismiss}
|
||||||
|
/>
|
||||||
</View>
|
</View>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue