forked from vergnet/application-amicale
Added club categories on display screen
This commit is contained in:
parent
8380fb9a3d
commit
44ff396ae3
2 changed files with 27 additions and 3 deletions
|
@ -4,7 +4,7 @@ import * as React from 'react';
|
||||||
import {ScrollView, View} from 'react-native';
|
import {ScrollView, View} from 'react-native';
|
||||||
import HTML from "react-native-render-html";
|
import HTML from "react-native-render-html";
|
||||||
import {Linking} from "expo";
|
import {Linking} from "expo";
|
||||||
import {Avatar, Card, Paragraph, withTheme} from 'react-native-paper';
|
import {Avatar, Card, Chip, Paragraph, withTheme} from 'react-native-paper';
|
||||||
import ImageModal from 'react-native-image-modal';
|
import ImageModal from 'react-native-image-modal';
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
|
@ -26,6 +26,7 @@ function openWebLink(event, link) {
|
||||||
class ClubDisplayScreen extends React.Component<Props, State> {
|
class ClubDisplayScreen extends React.Component<Props, State> {
|
||||||
|
|
||||||
displayData = this.props.route.params['data'];
|
displayData = this.props.route.params['data'];
|
||||||
|
categories = this.props.route.params['categories'];
|
||||||
|
|
||||||
colors: Object;
|
colors: Object;
|
||||||
|
|
||||||
|
@ -42,6 +43,23 @@ class ClubDisplayScreen extends React.Component<Props, State> {
|
||||||
this.props.navigation.setOptions({title: this.displayData.name})
|
this.props.navigation.setOptions({title: this.displayData.name})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getCategoryName(id: number) {
|
||||||
|
for (let i = 0; i < this.categories.length; i++) {
|
||||||
|
if (id === this.categories[i].id)
|
||||||
|
return this.categories[i].name;
|
||||||
|
}
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
getCategoriesRender(categories: Array<number|null>) {
|
||||||
|
let final = [];
|
||||||
|
for (let i = 0; i < categories.length; i++) {
|
||||||
|
if (categories[i] !== null)
|
||||||
|
final.push(<Chip style={{marginRight: 5}}>{this.getCategoryName(categories[i])}</Chip>);
|
||||||
|
}
|
||||||
|
return <View style={{flexDirection: 'row', marginTop: 5}}>{final}</View>;
|
||||||
|
}
|
||||||
|
|
||||||
getResponsiblesRender(resp: Array<string>) {
|
getResponsiblesRender(resp: Array<string>) {
|
||||||
let final = [];
|
let final = [];
|
||||||
for (let i = 0; i < resp.length; i++) {
|
for (let i = 0; i < resp.length; i++) {
|
||||||
|
@ -67,8 +85,14 @@ class ClubDisplayScreen extends React.Component<Props, State> {
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<ScrollView style={{paddingLeft: 5, paddingRight: 5}}>
|
<ScrollView style={{paddingLeft: 5, paddingRight: 5}}>
|
||||||
|
{this.getCategoriesRender(this.displayData.category)}
|
||||||
{this.displayData.logo !== null ?
|
{this.displayData.logo !== null ?
|
||||||
<View style={{marginLeft: 'auto', marginRight: 'auto'}}>
|
<View style={{
|
||||||
|
marginLeft: 'auto',
|
||||||
|
marginRight: 'auto',
|
||||||
|
marginTop: 10,
|
||||||
|
marginBottom: 10,
|
||||||
|
}}>
|
||||||
<ImageModal
|
<ImageModal
|
||||||
resizeMode="contain"
|
resizeMode="contain"
|
||||||
imageBackgroundColor={this.colors.background}
|
imageBackgroundColor={this.colors.background}
|
||||||
|
|
|
@ -85,7 +85,7 @@ class ClubListScreen extends React.Component<Props, State> {
|
||||||
* @param item The article pressed
|
* @param item The article pressed
|
||||||
*/
|
*/
|
||||||
onListItemPress(item: Object) {
|
onListItemPress(item: Object) {
|
||||||
this.props.navigation.navigate("ClubDisplayScreen", {data: item});
|
this.props.navigation.navigate("ClubDisplayScreen", {data: item, categories: this.categories});
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
|
|
Loading…
Reference in a new issue