Skip to content

Instantly share code, notes, and snippets.

@furkancelik
Created September 21, 2017 17:54
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save furkancelik/63068ca371c5dfeb3e8a6f513bc96b73 to your computer and use it in GitHub Desktop.
Save furkancelik/63068ca371c5dfeb3e8a6f513bc96b73 to your computer and use it in GitHub Desktop.
/* @flow */
import React, { PureComponent } from 'react';
import { TouchableHighlight, Image, Dimensions } from 'react-native';
const { width }: { width: number } = Dimensions.get('window');
type node = { node: { image: { uri: string } } };
type State = {};
type Props = {
item: node,
selectImageItem: Object | node,
selectImage(item: Object): void,
};
export default class ProfilePictureItem extends PureComponent<void, Props, State> {
props: Props;
state: State;
selectImage(item: Object) {
this.props.selectImage(item);
}
render() {
const { item } = this.props;
return (
<TouchableHighlight onPress={() => this.selectImage(item)}>
<Image
source={{ uri: item.node.image.uri }}
style={{
width: width / 4 - 5,
height: width / 4 - 5,
margin: 2,
borderWidth:
this.props.selectImageItem.node.image.uri === item.node.image.uri
? (width / 4 - 5) / 2
: 0,
borderColor:
this.props.selectImageItem.node.image.uri === item.node.image.uri
? 'rgba(255,255,255,0.4)'
: 'transparent',
}}
/>
</TouchableHighlight>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment