mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Add twitter emojis to reviews
This commit is contained in:
parent
fc26e299a1
commit
c62207f605
@ -30,6 +30,7 @@
|
||||
"react-router-dom": "latest",
|
||||
"react-scripts": "2.1.8",
|
||||
"react-star-ratings": "^2.3.0",
|
||||
"react-twemoji": "^0.2.3",
|
||||
"react-virtualized": "^9.21.1",
|
||||
"reqwest": "^2.0.5",
|
||||
"storm-react-diagrams": "^5.2.1"
|
||||
|
||||
@ -13,4 +13,11 @@
|
||||
position: absolute;
|
||||
bottom: -40px;
|
||||
left: 50%;
|
||||
}
|
||||
|
||||
img.twemoji {
|
||||
height: 1em;
|
||||
width: 1em;
|
||||
margin: 0 .05em 0 .1em;
|
||||
vertical-align: -0.1em;
|
||||
}
|
||||
@ -1,10 +1,12 @@
|
||||
import React from "react";
|
||||
import {Avatar} from "antd";
|
||||
import {List,Typography} from "antd";
|
||||
import {List, Typography} from "antd";
|
||||
import StarRatings from "react-star-ratings";
|
||||
import Twemoji from "react-twemoji";
|
||||
import "./Reviews.css";
|
||||
|
||||
const {Text, Paragraph} = Typography;
|
||||
const colorList = ['#f0932b','#badc58','#6ab04c','#eb4d4b','#0abde3', '#9b59b6','#3498db','#22a6b3'];
|
||||
const colorList = ['#f0932b', '#badc58', '#6ab04c', '#eb4d4b', '#0abde3', '#9b59b6', '#3498db', '#22a6b3'];
|
||||
|
||||
class SingleReview extends React.Component {
|
||||
|
||||
@ -17,13 +19,17 @@ class SingleReview extends React.Component {
|
||||
<StarRatings
|
||||
rating={review.rating}
|
||||
starRatedColor="#777"
|
||||
starDimension = "12px"
|
||||
starSpacing = "2px"
|
||||
starDimension="12px"
|
||||
starSpacing="2px"
|
||||
numberOfStars={5}
|
||||
name='rating'
|
||||
/>
|
||||
<Text style={{fontSize: 12, color: "#aaa"}} type="secondary"> {review.createdAt}</Text><br/>
|
||||
<Paragraph ellipsis={{ rows: 3, expandable: true }} style={{color: "#777"}}>{review.content}</Paragraph>
|
||||
<Twemoji options={{className: 'twemoji'}}>
|
||||
<Paragraph ellipsis={{rows: 3, expandable: true}} style={{color: "#777"}}>
|
||||
{review.content}
|
||||
</Paragraph>
|
||||
</Twemoji>
|
||||
</div>
|
||||
);
|
||||
|
||||
@ -31,7 +37,7 @@ class SingleReview extends React.Component {
|
||||
<div>
|
||||
<List.Item.Meta
|
||||
avatar={
|
||||
<Avatar style={{ backgroundColor: randomColor, verticalAlign: 'middle' }} size="large">
|
||||
<Avatar style={{backgroundColor: randomColor, verticalAlign: 'middle'}} size="large">
|
||||
{avatarLetter}
|
||||
</Avatar>
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user