Last active
April 27, 2017 12:54
-
-
Save tmeasday/39cc9a88cd2036b6e90d7065d3ecce9c to your computer and use it in GitHub Desktop.
Raw
CommentList.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| import React from 'react'; | |
| import styled, {injectGlobal} from 'styled-components'; | |
| injectGlobal` | |
| @import url('https://fonts.googleapis.com/css?family=Nunito+Sans:400,400i,800'); | |
| `; | |
| const CommentListDiv = styled.div` | |
| font-family: "Nunito Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; | |
| color: #333; | |
| display: inline-block; | |
| vertical-align: top; | |
| width: 265px; | |
| `; | |
| const CommentItemDiv = styled.div` | |
| font-size: 12px; | |
| line-height: 14px; | |
| clear: both; | |
| height: 48px; | |
| margin-bottom: 10px; | |
| box-shadow: rgba(0,0,0,.2) 0 0 10px 0; | |
| background: linear-gradient(120deg, rgba(248, 248, 254, .95), rgba(250, 250, 250, .95)); | |
| border-radius: 48px; | |
| `; | |
| const AvatarDiv = styled.div` | |
| float: left; | |
| position: relative; | |
| overflow: hidden; | |
| height: 48px; | |
| width: 48px; | |
| margin-right: 14px; | |
| background: #dfecf2; | |
| border-radius: 48px; | |
| `; | |
| const AvatarImg = styled.img` | |
| position: absolute; | |
| height: 100%; | |
| width: 100%; | |
| left: 0; | |
| top: 0; | |
| z-index: 1; | |
| background: #999; | |
| `; | |
| const MessageDiv = styled.div` | |
| overflow: hidden; | |
| padding-top: 10px; | |
| padding-right: 20px; | |
| `; | |
| const AuthorSpan = styled.span` | |
| font-weight: bold; | |
| `; | |
| const TextSpan = styled.span``; | |
| export default function CommentList({loading, comments, totalCount}) { | |
| if (loading) { | |
| return <div>empty</div>; | |
| } | |
| if (comments.length === 0) { | |
| return <div>loading</div>; | |
| } | |
| return ( | |
| <CommentListDiv> | |
| {comments.map(({text, author: {name, avatar}}) => ( | |
| <CommentItemDiv> | |
| <AvatarDiv><AvatarImg src={avatar} /></AvatarDiv> | |
| <MessageDiv> | |
| <AuthorSpan>{name}</AuthorSpan>{' '} | |
| <TextSpan>{text}</TextSpan> | |
| </MessageDiv> | |
| </CommentItemDiv> | |
| ))} | |
| </CommentListDiv> | |
| ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment