forked from vergnet/application-amicale
136 lines
4.4 KiB
JavaScript
136 lines
4.4 KiB
JavaScript
// @flow
|
|
|
|
import * as React from 'react';
|
|
import {ScrollView, View} from 'react-native';
|
|
import HTML from "react-native-render-html";
|
|
import {Linking} from "expo";
|
|
import {Avatar, Card, Chip, Paragraph, withTheme} from 'react-native-paper';
|
|
import ImageModal from 'react-native-image-modal';
|
|
import i18n from "i18n-js";
|
|
|
|
type Props = {
|
|
navigation: Object,
|
|
route: Object
|
|
};
|
|
|
|
type State = {
|
|
imageModalVisible: boolean,
|
|
};
|
|
|
|
function openWebLink(event, link) {
|
|
Linking.openURL(link).catch((err) => console.error('Error opening link', err));
|
|
}
|
|
|
|
/**
|
|
* Class defining a planning event information page.
|
|
*/
|
|
class ClubDisplayScreen extends React.Component<Props, State> {
|
|
|
|
displayData = this.props.route.params['data'];
|
|
categories = this.props.route.params['categories'];
|
|
|
|
colors: Object;
|
|
|
|
state = {
|
|
imageModalVisible: false,
|
|
};
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
this.colors = props.theme.colors;
|
|
}
|
|
|
|
componentDidMount(): * {
|
|
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}}
|
|
key={i.toString()}>
|
|
{this.getCategoryName(categories[i])}
|
|
</Chip>
|
|
);
|
|
}
|
|
}
|
|
return <View style={{flexDirection: 'row', marginTop: 5}}>{final}</View>;
|
|
}
|
|
|
|
getManagersRender(resp: Array<string>) {
|
|
let final = [];
|
|
for (let i = 0; i < resp.length; i++) {
|
|
final.push(<Paragraph key={i.toString()}>{resp[i]}</Paragraph>)
|
|
}
|
|
const hasManagers = resp.length > 0;
|
|
return (
|
|
<Card style={{marginTop: 10, marginBottom: 10}}>
|
|
<Card.Title
|
|
title={i18n.t('clubs.managers')}
|
|
subtitle={hasManagers ? i18n.t('clubs.managersSubtitle') : i18n.t('clubs.managersUnavailable')}
|
|
left={(props) => <Avatar.Icon
|
|
{...props}
|
|
style={{backgroundColor: 'transparent'}}
|
|
color={hasManagers ? this.colors.success : this.colors.primary}
|
|
icon="account-tie"/>}
|
|
/>
|
|
<Card.Content>
|
|
{final}
|
|
</Card.Content>
|
|
</Card>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<ScrollView style={{paddingLeft: 5, paddingRight: 5}}>
|
|
{this.getCategoriesRender(this.displayData.category)}
|
|
{this.displayData.logo !== null ?
|
|
<View style={{
|
|
marginLeft: 'auto',
|
|
marginRight: 'auto',
|
|
marginTop: 10,
|
|
marginBottom: 10,
|
|
}}>
|
|
<ImageModal
|
|
resizeMode="contain"
|
|
imageBackgroundColor={this.colors.background}
|
|
style={{
|
|
width: 300,
|
|
height: 300,
|
|
}}
|
|
source={{
|
|
uri: this.displayData.logo,
|
|
}}
|
|
/></View>
|
|
: <View/>}
|
|
|
|
{this.displayData.description !== null ?
|
|
// Surround description with div to allow text styling if the description is not html
|
|
<Card.Content>
|
|
<HTML html={"<div>" + this.displayData.description + "</div>"}
|
|
tagsStyles={{
|
|
p: {color: this.colors.text,},
|
|
div: {color: this.colors.text}
|
|
}}
|
|
onLinkPress={openWebLink}/>
|
|
</Card.Content>
|
|
: <View/>}
|
|
{this.getManagersRender(this.displayData.responsibles)}
|
|
</ScrollView>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default withTheme(ClubDisplayScreen);
|