48 lines
1.3 KiB
TypeScript
48 lines
1.3 KiB
TypeScript
import React from 'react';
|
|
import { defineMessages, useIntl } from 'react-intl';
|
|
|
|
import { useAppSelector } from 'soapbox/hooks';
|
|
import { getFeatures } from 'soapbox/utils/features';
|
|
|
|
const messages = defineMessages({
|
|
following: {
|
|
id: 'morefollows.following_label',
|
|
defaultMessage: '…and {count} more {count, plural, one {follow} other {follows}} on remote sites.',
|
|
},
|
|
followers: {
|
|
id: 'morefollows.followers_label',
|
|
defaultMessage: '…and {count} more {count, plural, one {follower} other {followers}} on remote sites.',
|
|
},
|
|
});
|
|
|
|
interface IMoreFollows {
|
|
visible?: Boolean,
|
|
count?: number,
|
|
type: 'following' | 'followers',
|
|
}
|
|
|
|
const MoreFollows: React.FC<IMoreFollows> = ({ visible = true, count, type }) => {
|
|
const intl = useIntl();
|
|
const features = useAppSelector((state) => getFeatures(state.instance));
|
|
|
|
const getMessage = () => {
|
|
return intl.formatMessage(messages[type], { count });
|
|
};
|
|
|
|
// If the instance isn't federating, there are no remote followers
|
|
if (!features.federating) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<div className='morefollows-indicator'>
|
|
<div>
|
|
<div className='morefollows-indicator__label' style={{ visibility: visible ? 'visible' : 'hidden' }}>
|
|
{getMessage()}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default MoreFollows;
|