added new properties

This commit is contained in:
u-e 2019-04-19 23:58:04 +03:00
parent de82ee0507
commit 2db76491cb
9 changed files with 205 additions and 91 deletions

View File

@ -1,4 +1,4 @@
import Card from './view/card/cardView';
import { Card } from './view/card/cardView';
import Chip from './view/chip/chipView';
import GrayWrapper from './view/grayWrapper/grayWrapperView';
import LineBreak from './view/lineBreak/lineBreakView';

View File

@ -2,6 +2,4 @@ import React from 'react';
import { View } from 'react-native';
import styles from './cardStyles';
const Card = ({ children }) => <View style={styles.wrapper}>{children}</View>;
export default Card;
export const Card = ({ children }) => <View style={styles.wrapper}>{children}</View>;

View File

@ -1,13 +1,14 @@
import React from 'react';
import { View, Text } from 'react-native';
import GrayWrapper from '../grayWrapper/grayWrapperView';
// Components
import GrayWrapper from '../grayWrapper/grayWrapperView';
import { Icon } from '../../../icon';
// Styles
import styles from './walletLineItemStyles';
const WalletLineItem = ({
circleIconColor,
description,
fitContent,
iconName,
@ -31,7 +32,7 @@ const WalletLineItem = ({
style={[
styles.iconWrapper,
isCircleIcon && styles.circleIcon,
circleIconColor && { backgroundColor: circleIconColor },
index && { backgroundColor: `${index && index % 2 !== 0 ? 'white' : '#f5f5f5'}` },
]}
>
<Icon style={styles.icon} name={iconName} iconType={iconType} />

View File

@ -1,9 +1,11 @@
import React, { Component } from 'react';
import React, { Component, Alert } from 'react';
import { connect } from 'react-redux';
// Services and Actions
import { getUser, getUserPoints } from '../../../providers/esteem/ePoint';
// Constant
import POINTS from '../../../constants/options/points';
// Component
import PointsView from '../view/pointsView';
@ -19,6 +21,7 @@ class PointsContainer extends Component {
this.state = {
userPoints: {},
userActivities: {},
refreshing: false,
};
}
@ -29,32 +32,59 @@ class PointsContainer extends Component {
// Component Functions
_groomUserActivities = userActivities => userActivities.map(item => ({
...item,
icon: POINTS[item.type].icon,
iconType: POINTS[item.type].iconType,
textKey: POINTS[item.type].textKey,
}));
_fetchuserPointActivities = async () => {
const { username } = this.props;
await getUser(username).then((userPoints) => {
this.setState({ refreshing: true });
await getUser(username)
.then((userPoints) => {
this.setState({ userPoints });
}).catch((err) => {
alert(err);
})
.catch((err) => {
Alert.alert(err);
});
await getUserPoints(username).then((userActivities) => {
// this.setState({ userPointActivities: res });
this.setState({ userActivities });
}).catch((err) => {
alert(err);
await getUserPoints(username)
.then((userActivities) => {
this.setState({
userActivities: this._groomUserActivities(userActivities),
});
}
})
.catch((err) => {
Alert.alert(err);
});
this.setState({ refreshing: false });
};
render() {
const { userPoints, userActivities } = this.state;
const {
userPoints, userActivities, isDarkTheme, refreshing,
} = this.state;
return <PointsView userPoints={userPoints} userActivities={userActivities} />;
return (
<PointsView
userPoints={userPoints}
userActivities={userActivities}
isDarkTheme={isDarkTheme}
fetchUserActivity={this._fetchuserPointActivities}
refreshing={refreshing}
/>
);
}
}
const mapStateToProps = state => ({
username: state.account.currentAccount.name,
isDarkTheme: state.application.isDarkTheme,
});
export default connect(mapStateToProps)(PointsContainer);

View File

@ -63,4 +63,7 @@ export default EStyleSheet.create({
activeBadge: {
backgroundColor: '$black',
},
listWrapper: {
marginHorizontal: 8,
},
});

View File

@ -1,11 +1,16 @@
import React, { Component, Fragment } from 'react';
import { Text, View, FlatList } from 'react-native';
import {
Text, View, FlatList, ScrollView, RefreshControl,
} from 'react-native';
import { injectIntl } from 'react-intl';
// Components
import { LineBreak } from '../../basicUIElements';
import { LineBreak, WalletLineItem } from '../../basicUIElements';
import { IconButton } from '../../iconButton';
// Utils
import { getTimeFromNow } from '../../../utils/time';
// Styles
import styles from './pointsStyles';
@ -24,13 +29,33 @@ class PointsView extends Component {
// Component Functions
refreshControl = () => {
const { fetchUserActivity, refreshing, isDarkTheme } = this.props;
return (
<RefreshControl
refreshing={refreshing}
onRefresh={fetchUserActivity}
progressBackgroundColor="#357CE6"
tintColor={!isDarkTheme ? '#357ce6' : '#96c0ff'}
titleColor="#fff"
colors={['#fff']}
/>
);
}
render() {
const { userActivities, userPoints, intl } = this.props;
const {
userActivities, userPoints, intl,
} = this.props;
const isActiveIcon = true;
return (
<Fragment>
<LineBreak height={12} />
<ScrollView
refreshControl={this.refreshControl()}
>
<Text style={styles.pointText}>{userPoints.points}</Text>
<Text style={styles.subText}>eSteem Points</Text>
@ -76,12 +101,26 @@ class PointsView extends Component {
</View>
</View>
<View style={styles.listWrapper}>
<FlatList
data={userActivities}
renderItem={({ item }) => (
<Text>{item.type}</Text>
renderItem={({ item, index }) => (
<WalletLineItem
key={item.id.toString()}
index={index + 1}
text={intl.formatMessage({ id: item.textKey })}
description={getTimeFromNow(item.created)}
isCircleIcon
isThin
isBlackText
iconName={item.icon}
iconType={item.iconType}
rightText={`${item.amount} ESTEEM`}
/>
)}
/>
</View>
</ScrollView>
</Fragment>
);
}

View File

@ -4,8 +4,6 @@ import { View } from 'react-native';
// Utilities
import { groomingTransactionData } from '../../../utils/wallet';
// Utils
import { getTimeFromNow } from '../../../utils/time';
// Components
@ -60,10 +58,10 @@ class TransactionView extends PureComponent {
<CollapsibleCard
noBorder
noContainer
key={index.toString()}
key={transactionData.transDate.toString()}
titleComponent={(
<WalletLineItem
key={index.toString()}
key={transactionData.transDate.toString()}
index={index}
text={intl.formatMessage({
id: `wallet.${transactionData.opName}`,

View File

@ -34,7 +34,14 @@
"points": {
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in"
"checkin": "Checki-in",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
},
"messages": {
"comingsoon": "Messages feature is coming soon!"

View File

@ -0,0 +1,38 @@
export default {
100: {
icon: 'post',
textKey: 'points.post_title',
iconType: 'MaterialIcons',
},
110: {
icon: 'comment',
textKey: 'points.comment_title',
iconType: 'MaterialIcons',
},
120: {
icon: 'upcircle',
textKey: 'points.vote_title',
iconType: 'AntDesign',
},
130: {
icon: 'repeat',
textKey: 'points.reblog_title',
iconType: 'MaterialIcons',
},
10: {
icon: 'check-circle',
textKey: 'points.checkin_title',
iconType: 'MaterialCommunityIcons',
},
20: {
icon: 'person',
textKey: 'points.login_title',
iconType: 'MaterialIcons',
},
30: {
icon: 'check-decagram',
textKey: 'points.checkin_extra_title',
iconType: 'MaterialCommunityIcons',
},
};