// @flow import * as React from 'react'; import {Image, ScrollView, TouchableOpacity, View} from 'react-native'; import HTML from "react-native-render-html"; import {Linking} from "expo"; import {Avatar, Card, Paragraph, Portal, withTheme} from 'react-native-paper'; import ImageView from "react-native-image-viewing"; 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 { displayData = this.props.route.params['data']; colors: Object; state = { imageModalVisible: false, }; constructor(props) { super(props); this.colors = props.theme.colors; } componentDidMount(): * { this.props.navigation.setOptions({title: this.displayData.name}) } showImageModal = () => { this.setState({imageModalVisible: true}); }; hideImageModal = () => { this.setState({imageModalVisible: false}); }; getResponsiblesRender(resp: Array) { let final = []; for (let i = 0; i < resp.length; i++) { final.push({resp[i]}) } return ( } /> {final} ); } render() { return ( {this.displayData.logo !== null ? : } {this.displayData.description !== null ? // Surround description with div to allow text styling if the description is not html " + this.displayData.description + ""} tagsStyles={{ p: {color: this.colors.text,}, div: {color: this.colors.text} }} onLinkPress={openWebLink}/> : } {this.getResponsiblesRender(this.displayData.responsibles)} ); } } export default withTheme(ClubDisplayScreen);