Skip to content
Snippets Groups Projects

Develop

Merged Jason Salyers requested to merge develop into master
19 files
+ 4620
858
Compare changes
  • Side-by-side
  • Inline
Files
19
@@ -2,30 +2,15 @@ import React from 'react';
@@ -2,30 +2,15 @@ import React from 'react';
import PropTypes from 'prop-types';
import PropTypes from 'prop-types';
import { connect } from 'react-redux';
import { connect } from 'react-redux';
import { Link } from 'react-router';
import { Link } from 'react-router';
import TimeAgoWrapper from 'app/components/elements/TimeAgoWrapper';
import _ from 'lodash';
 
import 'react-tabs/style/react-tabs.css';
 
import tt from 'counterpart';
 
import { Tab, Tabs, TabList, TabPanel } from 'react-tabs';
import LoadingIndicator from 'app/components/elements/LoadingIndicator';
import LoadingIndicator from 'app/components/elements/LoadingIndicator';
import { actions as fetchDataSagaActions } from 'app/redux/FetchDataSaga';
import { actions as fetchDataSagaActions } from 'app/redux/FetchDataSaga';
import * as globalActions from 'app/redux/GlobalReducer';
import ClaimBox from 'app/components/elements/ClaimBox';
import Callout from 'app/components/elements/Callout';
import Callout from 'app/components/elements/Callout';
import tt from 'counterpart';
class SubscriptionsList extends React.Component {
class SubscriptionsList extends React.Component {
static propTypes = {
username: PropTypes.string.isRequired,
subscriptions: PropTypes.arrayOf(PropTypes.arrayOf(PropTypes.string)),
loading: PropTypes.bool,
};
static defaultProps = {
subscriptions: [],
loading: true,
};
constructor() {
super();
}
componentWillMount() {
componentWillMount() {
const { username, getAccountSubscriptions } = this.props;
const { username, getAccountSubscriptions } = this.props;
if (username) {
if (username) {
@@ -41,7 +26,57 @@ class SubscriptionsList extends React.Component {
@@ -41,7 +26,57 @@ class SubscriptionsList extends React.Component {
}
}
render() {
render() {
const { subscriptions, loading } = this.props;
const { subscriptions, loading, badges, username } = this.props;
 
const badgesTypes = {
 
activity: [],
 
perso: [],
 
meetup: [],
 
challenge: [],
 
badges: [],
 
};
 
const hivebuzzBadges = _.get(badges, 'hivebuzz', []);
 
const peakdBadges = _.get(badges, 'peakd', []);
 
if (hivebuzzBadges) {
 
hivebuzzBadges.forEach(badge => {
 
const type = badge.get('type');
 
badgesTypes[type].push(
 
<a
 
className="BadgesAchievements__badge_image"
 
key={badge.get('id')}
 
href={`https://hivebuzz.me/@${username}`}
 
target="_blank"
 
rel="noopener noreferrer"
 
>
 
<img
 
src={badge.get('url')}
 
alt={badge.get('title')}
 
title={badge.get('title')}
 
/>
 
</a>
 
);
 
});
 
}
 
if (peakdBadges) {
 
peakdBadges.forEach(badge => {
 
const type = badge.get('type');
 
badgesTypes[type].push(
 
<a
 
className="BadgesAchievements__badge_image"
 
key={badge.get('id')}
 
href={`https://peakd.com/b/${badge.get('name')}`}
 
target="_blank"
 
rel="noopener noreferrer"
 
>
 
<img
 
src={badge.get('url')}
 
alt={badge.get('title')}
 
title={badge.get('title')}
 
className="UserProfile__badge_image"
 
/>
 
</a>
 
);
 
});
 
}
const renderItem = tuple => {
const renderItem = tuple => {
const [hive, name, role, title] = tuple;
const [hive, name, role, title] = tuple;
@@ -55,41 +90,131 @@ class SubscriptionsList extends React.Component {
@@ -55,41 +90,131 @@ class SubscriptionsList extends React.Component {
};
};
return (
return (
<div className="">
<div>
<h4>{tt('g.subscriptions')}</h4>
<div className="article_section">
{subscriptions &&
<h4>{tt('g.community_subscriptions')}</h4>
subscriptions.length > 0 && (
<p>{tt('g.community_subscriptions_description')}</p>
 
{!_.isEmpty(subscriptions) && (
<ul>{subscriptions.map(item => renderItem(item))}</ul>
<ul>{subscriptions.map(item => renderItem(item))}</ul>
)}
)}
{subscriptions.length === 0 &&
{_.isEmpty(subscriptions) &&
!loading && (
!loading && (
<Callout>
<Callout>
Welcome! You don't have any subscriptions yet.
{tt('g.community_no_subscriptions')}
</Callout>
</Callout>
 
)}
 
{loading && (
 
<center>
 
<LoadingIndicator
 
style={{ marginBottom: '2rem' }}
 
type="circle"
 
/>
 
</center>
)}
)}
</div>
{loading && (
<div className="article_section">
<center>
<h4>{tt('g.badges_and_achievements')}</h4>
<LoadingIndicator
{(!_.isEmpty(hivebuzzBadges) ||
style={{ marginBottom: '2rem' }}
!_.isEmpty(peakdBadges.size)) && (
type="circle"
<div>
/>
<p>
</center>
{tt('g.badges_and_achievements_description')}{' '}
)}
<a
 
href="https://peakd.com/"
 
target="_blank"
 
rel="noopener noreferrer"
 
>
 
Peakd
 
</a>{' '}
 
&{' '}
 
<a
 
href="https://hivebuzz.me"
 
target="_blank"
 
rel="noopener noreferrer"
 
>
 
Hivebuzz
 
</a>
 
.
 
</p>
 
<div className="BadgesAchievements row">
 
<div className="BadgesAchievements_tabs_container">
 
<Tabs>
 
<TabList>
 
{!_.isEmpty(badgesTypes.badges) && (
 
<Tab>Badges</Tab>
 
)}
 
{!_.isEmpty(
 
badgesTypes.activity
 
) && <Tab>Activity</Tab>}
 
{!_.isEmpty(badgesTypes.perso) && (
 
<Tab>Personal</Tab>
 
)}
 
{!_.isEmpty(badgesTypes.meetup) && (
 
<Tab>Meetups</Tab>
 
)}
 
{!_.isEmpty(
 
badgesTypes.challenge
 
) && <Tab>Challenges</Tab>}
 
</TabList>
 
{!_.isEmpty(badgesTypes.badges) && (
 
<TabPanel>
 
{badgesTypes.badges}
 
</TabPanel>
 
)}
 
{!_.isEmpty(badgesTypes.activity) && (
 
<TabPanel>
 
{badgesTypes.activity}
 
</TabPanel>
 
)}
 
{!_.isEmpty(badgesTypes.perso) && (
 
<TabPanel>
 
{badgesTypes.perso}
 
</TabPanel>
 
)}
 
{!_.isEmpty(badgesTypes.meetup) && (
 
<TabPanel>
 
{badgesTypes.meetup}
 
</TabPanel>
 
)}
 
{!_.isEmpty(badgesTypes.challenge) && (
 
<TabPanel>
 
{badgesTypes.challenge}
 
</TabPanel>
 
)}
 
</Tabs>
 
</div>
 
</div>
 
</div>
 
)}
 
{_.isEmpty(hivebuzzBadges) &&
 
!_.isEmpty(peakdBadges.size) && (
 
<p>{tt('g.badges_and_achievements_none')}</p>
 
)}
 
</div>
</div>
</div>
);
);
}
}
}
}
 
SubscriptionsList.defaultProps = {
 
subscriptions: [],
 
loading: true,
 
};
 
 
SubscriptionsList.propTypes = {
 
username: PropTypes.string.isRequired,
 
subscriptions: PropTypes.arrayOf(PropTypes.arrayOf(PropTypes.string)),
 
loading: PropTypes.bool,
 
};
 
export default connect(
export default connect(
(state, props) => {
(state, props) => {
 
const { username } = props;
 
const { user, global } = state;
const isOwnAccount =
const isOwnAccount =
state.user.getIn(['current', 'username'], '') === props.username;
user.getIn(['current', 'username'], '') === username;
const loading = state.global.getIn(['subscriptions', 'loading']);
const loading = global.getIn(['subscriptions', 'loading']);
const subscriptions = state.global.getIn([
const subscriptions = global.getIn(['subscriptions', username]);
'subscriptions',
props.username,
]);
return {
return {
...props,
...props,
subscriptions: subscriptions ? subscriptions.toJS() : [],
subscriptions: subscriptions ? subscriptions.toJS() : [],
Loading