From 44a7d87cb1f5df953b6c14c16c59e2e4ead1bcb9 Mon Sep 17 00:00:00 2001 From: Renaud Chaput Date: Mon, 20 Feb 2023 03:20:59 +0100 Subject: Rename JSX files with proper `.jsx` extension (#23733) --- .../features/getting_started/components/trends.jsx | 51 ++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 app/javascript/mastodon/features/getting_started/components/trends.jsx (limited to 'app/javascript/mastodon/features/getting_started/components/trends.jsx') diff --git a/app/javascript/mastodon/features/getting_started/components/trends.jsx b/app/javascript/mastodon/features/getting_started/components/trends.jsx new file mode 100644 index 000000000..8dcdb4f61 --- /dev/null +++ b/app/javascript/mastodon/features/getting_started/components/trends.jsx @@ -0,0 +1,51 @@ +import React from 'react'; +import ImmutablePureComponent from 'react-immutable-pure-component'; +import PropTypes from 'prop-types'; +import ImmutablePropTypes from 'react-immutable-proptypes'; +import { ImmutableHashtag as Hashtag } from 'mastodon/components/hashtag'; +import { FormattedMessage } from 'react-intl'; +import { Link } from 'react-router-dom'; + +export default class Trends extends ImmutablePureComponent { + + static defaultProps = { + loading: false, + }; + + static propTypes = { + trends: ImmutablePropTypes.list, + fetchTrends: PropTypes.func.isRequired, + }; + + componentDidMount () { + this.props.fetchTrends(); + this.refreshInterval = setInterval(() => this.props.fetchTrends(), 900 * 1000); + } + + componentWillUnmount () { + if (this.refreshInterval) { + clearInterval(this.refreshInterval); + } + } + + render () { + const { trends } = this.props; + + if (!trends || trends.isEmpty()) { + return null; + } + + return ( +
+

+ + + +

+ + {trends.take(3).map(hashtag => )} +
+ ); + } + +} -- cgit