1ff70886a1
Co-authored-by: tobi <tobi.smethurst@protonmail.com> Reviewed-on: https://codeberg.org/superseriousbusiness/masto-fe-standalone/pulls/88 Co-authored-by: Zoë Bijl <moiety@noreply.codeberg.org> Co-committed-by: Zoë Bijl <moiety@noreply.codeberg.org>
56 lines
1.2 KiB
React
56 lines
1.2 KiB
React
import PropTypes from "prop-types";
|
|
import { PureComponent } from "react";
|
|
|
|
import { connect } from "react-redux";
|
|
|
|
import FeaturedTags from "mastodon/features/account/containers/featured_tags_container";
|
|
import { normalizeForLookup } from "mastodon/reducers/accounts_map";
|
|
|
|
const mapStateToProps = (state, { match: { params: { acct } } }) => {
|
|
const accountId = state.getIn(["accounts_map", normalizeForLookup(acct)]);
|
|
|
|
if (!accountId) {
|
|
return {
|
|
isLoading: true,
|
|
};
|
|
}
|
|
|
|
return {
|
|
accountId,
|
|
isLoading: false,
|
|
};
|
|
};
|
|
|
|
class AccountNavigation extends PureComponent {
|
|
|
|
static propTypes = {
|
|
match: PropTypes.shape({
|
|
params: PropTypes.shape({
|
|
acct: PropTypes.string,
|
|
tagged: PropTypes.string,
|
|
}).isRequired,
|
|
}).isRequired,
|
|
|
|
accountId: PropTypes.string,
|
|
isLoading: PropTypes.bool,
|
|
};
|
|
|
|
render () {
|
|
const { accountId, isLoading, match: { params: { tagged } } } = this.props;
|
|
|
|
if (isLoading) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<div className='flex-spacer' />
|
|
<FeaturedTags accountId={accountId} tagged={tagged} />
|
|
</>
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
export default connect(mapStateToProps)(AccountNavigation);
|