2020-03-14 17:07:36 +01:00
|
|
|
// @flow
|
|
|
|
import React from 'react';
|
|
|
|
import DateTime from 'component/dateTime';
|
|
|
|
import FileViewCount from 'component/fileViewCount';
|
2020-09-30 22:46:20 +02:00
|
|
|
import FileActions from 'component/fileActions';
|
2020-03-14 17:07:36 +01:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
uri: string,
|
2021-03-18 18:21:49 +01:00
|
|
|
livestream?: boolean,
|
2021-03-19 21:14:31 +01:00
|
|
|
activeViewers?: number,
|
2021-04-14 17:40:36 +02:00
|
|
|
isLive?: boolean,
|
2020-03-14 17:07:36 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
function FileSubtitle(props: Props) {
|
2021-04-14 17:40:36 +02:00
|
|
|
const { uri, livestream = false, activeViewers, isLive = false } = props;
|
2020-03-14 17:07:36 +01:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="media__subtitle--between">
|
2020-09-30 22:46:20 +02:00
|
|
|
<div className="file__viewdate">
|
2021-03-18 18:21:49 +01:00
|
|
|
{livestream ? <span>{__('Right now')}</span> : <DateTime uri={uri} show={DateTime.SHOW_DATE} />}
|
2021-04-14 17:40:36 +02:00
|
|
|
|
|
|
|
<FileViewCount uri={uri} livestream={livestream} activeViewers={activeViewers} isLive={isLive} />
|
2020-09-30 22:46:20 +02:00
|
|
|
</div>
|
|
|
|
|
2021-07-22 18:01:35 +02:00
|
|
|
<FileActions uri={uri} hideRepost={livestream} livestream={livestream} />
|
2020-03-14 17:07:36 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default FileSubtitle;
|