2021-09-09 09:02:31 +02:00
|
|
|
// @flow
|
|
|
|
import React from 'react';
|
2021-09-29 21:04:43 +02:00
|
|
|
import 'scss/component/_view_count.scss';
|
2021-09-09 09:02:31 +02:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
uri: string,
|
|
|
|
isLivestream?: boolean,
|
|
|
|
// --- select ---
|
|
|
|
claim: ?StreamClaim,
|
|
|
|
viewCount: string,
|
2021-09-16 11:01:14 +02:00
|
|
|
lang: ?string,
|
2021-09-09 09:02:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export default function FileViewCountInline(props: Props) {
|
2021-09-16 11:01:14 +02:00
|
|
|
const { isLivestream, claim, viewCount, lang } = props;
|
|
|
|
let formattedViewCount;
|
|
|
|
|
|
|
|
try {
|
2021-09-29 21:04:43 +02:00
|
|
|
// SI notation that changes 1234 to 1.2K, look up Intl.NumberFormat() for docs
|
2021-09-16 11:01:14 +02:00
|
|
|
formattedViewCount = Number(viewCount).toLocaleString(lang || 'en', {
|
|
|
|
compactDisplay: 'short',
|
|
|
|
notation: 'compact',
|
|
|
|
});
|
|
|
|
} catch (err) {
|
|
|
|
formattedViewCount = Number(viewCount).toLocaleString();
|
|
|
|
}
|
2021-09-09 09:02:31 +02:00
|
|
|
|
2021-09-20 03:23:04 +02:00
|
|
|
// Limit the view-count visibility to Channel Pages for now. I believe we'll
|
|
|
|
// eventually show it everywhere, so this band-aid would be the easiest to
|
|
|
|
// clean up (only one place edit/remove).
|
|
|
|
const isChannelPage = window.location.pathname.startsWith('/@');
|
|
|
|
|
2021-10-16 20:12:09 +02:00
|
|
|
// Checks if search page and gives a bullet between claim name and ago.
|
|
|
|
const isSearchPage = window.location.pathname.startsWith('/$/search');
|
|
|
|
|
2021-09-29 21:04:43 +02:00
|
|
|
// dont show if no view count, if it's a repost, a livestream or isn't a channel page
|
2021-09-20 03:23:04 +02:00
|
|
|
if (!viewCount || (claim && claim.repost_url) || isLivestream || !isChannelPage) {
|
2021-09-09 09:02:31 +02:00
|
|
|
// (1) Currently, makeSelectViewCountForUri doesn't differentiate between
|
2021-09-16 11:01:14 +02:00
|
|
|
// un-fetched view-count vs zero view-count. But since it's probably not
|
2021-09-09 09:02:31 +02:00
|
|
|
// ideal to highlight that a view has 0 count, let's just not show anything.
|
2021-09-16 11:01:14 +02:00
|
|
|
// (2) No idea how to get the repost source's claim ID from the repost claim,
|
2021-09-09 09:02:31 +02:00
|
|
|
// so hiding it for now.
|
2021-10-16 20:12:09 +02:00
|
|
|
if (isSearchPage) {
|
|
|
|
return <> • </>;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return null;
|
|
|
|
}
|
2021-09-09 09:02:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<span className="view_count">
|
|
|
|
{viewCount !== 1 ? __('%view_count% views', { view_count: formattedViewCount }) : __('1 view')}
|
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|