about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/account/containers/featured_tags_container.js
blob: 6f0b0694197e4e326dc39ef2bfaea614a2299b0a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { connect } from 'react-redux';
import FeaturedTags from '../components/featured_tags';
import { makeGetAccount } from 'flavours/glitch/selectors';
import { List as ImmutableList } from 'immutable';

const mapStateToProps = () => {
  const getAccount = makeGetAccount();

  return (state, { accountId }) => ({
    account: getAccount(state, accountId),
    featuredTags: state.getIn(['user_lists', 'featured_tags', accountId, 'items'], ImmutableList()),
  });
};

export default connect(mapStateToProps)(FeaturedTags);