~cytrogen/masto-fe

ref: 20a89f1c8eefa0f766a4650be4d2e5f1fa92ee71 masto-fe/app/javascript/flavours/glitch/features/explore/suggestions.jsx -rw-r--r-- 1.8 KiB
20a89f1c — Cytrogen [feature] Bookmark folders UI 11 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import PropTypes from "prop-types";
import { PureComponent } from "react";

import { FormattedMessage } from "react-intl";

import ImmutablePropTypes from "react-immutable-proptypes";
import { connect } from "react-redux";

import { fetchSuggestions, dismissSuggestion } from "flavours/glitch/actions/suggestions";
import { LoadingIndicator } from "flavours/glitch/components/loading_indicator";
import AccountCard from "flavours/glitch/features/directory/components/account_card";

const mapStateToProps = state => ({
  suggestions: state.getIn(["suggestions", "items"]),
  isLoading: state.getIn(["suggestions", "isLoading"]),
});

class Suggestions extends PureComponent {

  static propTypes = {
    isLoading: PropTypes.bool,
    suggestions: ImmutablePropTypes.list,
    dispatch: PropTypes.func.isRequired,
  };

  componentDidMount () {
    const { dispatch } = this.props;
    dispatch(fetchSuggestions(true));
  }

  handleDismiss = (accountId) => {
    const { dispatch } = this.props;
    dispatch(dismissSuggestion(accountId));
  };

  render () {
    const { isLoading, suggestions } = this.props;

    if (!isLoading && suggestions.isEmpty()) {
      return (
        <div className='explore__suggestions scrollable scrollable--flex'>
          <div className='empty-column-indicator'>
            <FormattedMessage id='empty_column.explore_statuses' defaultMessage='Nothing is trending right now. Check back later!' />
          </div>
        </div>
      );
    }

    return (
      <div className='explore__suggestions'>
        {isLoading ? <LoadingIndicator /> : suggestions.map(suggestion => (
          <AccountCard key={suggestion.get("account")} id={suggestion.get("account")} onDismiss={suggestion.get("source") === "past_interactions" ? this.handleDismiss : null} />
        ))}
      </div>
    );
  }

}

export default connect(mapStateToProps)(Suggestions);