~cytrogen/masto-fe

ref: f8dc013b0d81d5d463c086e291ce99ab1d796a9d masto-fe/app/javascript/mastodon/features/explore/links.jsx -rw-r--r-- 2.5 KiB
f8dc013b — Cytrogen [feature] Add language selector to local settings 4 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
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 { fetchTrendingLinks } from "mastodon/actions/trends";
import { DismissableBanner } from "mastodon/components/dismissable_banner";
import { LoadingIndicator } from "mastodon/components/loading_indicator";

import Story from "./components/story";

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

class Links extends PureComponent {

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

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

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

    const banner = (
      <DismissableBanner id='explore/links'>
        <FormattedMessage id='dismissable_banner.explore_links' defaultMessage='These are news stories being shared the most on the social web today. Newer news stories posted by more different people are ranked higher.' />
      </DismissableBanner>
    );

    if (!isLoading && links.isEmpty()) {
      return (
        <div className='explore__links scrollable scrollable--flex'>
          {banner}

          <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__links scrollable' data-nosnippet>
        {banner}

        {isLoading ? (<LoadingIndicator />) : links.map((link, i) => (
          <Story
            key={link.get("id")}
            expanded={i === 0}
            lang={link.get("language")}
            url={link.get("url")}
            title={link.get("title")}
            publisher={link.get("provider_name")}
            publishedAt={link.get("published_at")}
            author={link.get("author_name")}
            sharedTimes={link.getIn(["history", 0, "accounts"]) * 1 + link.getIn(["history", 1, "accounts"]) * 1}
            thumbnail={link.get("image")}
            thumbnailDescription={link.get("image_description")}
            blurhash={link.get("blurhash")}
          />
        ))}
      </div>
    );
  }

}

export default connect(mapStateToProps)(Links);