Fixed subcomment design issue

This commit is contained in:
Mustafa Buyukcelebi 2019-11-27 21:01:02 +03:00
parent 6872baec43
commit ae9e41762b
3 changed files with 5 additions and 4 deletions

View File

@ -36,6 +36,7 @@ export default EStyleSheet.create({
alignSelf: 'flex-end',
position: 'absolute',
right: 0,
bottom: -10,
},
voteCountText: {
alignSelf: 'center',

View File

@ -80,6 +80,7 @@ class CommentView extends PureComponent {
<View style={[{ marginLeft: marginLeft || 29 }, styles.bodyWrapper]}>
<PostBody
isComment
commentDepth={comment.depth}
handleOnUserPress={handleOnUserPress}
body={comment.body}
textSelectable={false}

View File

@ -17,6 +17,7 @@ const WIDTH = Dimensions.get('window').width;
const PostBody = ({
navigation,
body,
commentDepth,
isComment,
textSelectable = true,
handleOnUserPress,
@ -208,10 +209,8 @@ const PostBody = ({
return (
<Fragment>
<AutoHeightWebView
source={{
html: test,
}}
style={{ width: isComment ? WIDTH - 61 : WIDTH - 32 }}
source={{ html: test }}
style={{ width: isComment ? WIDTH - (32 + 29 * commentDepth) : WIDTH - 32 }}
customStyle={customStyle}
onMessage={_handleOnLinkPress}
customScript={script.toString()}