2020-04-29 22:50:06 +02:00
|
|
|
// @flow
|
|
|
|
import React from 'react';
|
|
|
|
import Button from 'component/button';
|
2020-05-22 22:47:10 +02:00
|
|
|
import FilePrice from 'component/filePrice';
|
2020-04-29 22:50:06 +02:00
|
|
|
import { formatLbryUrlForWeb } from 'util/url';
|
|
|
|
import { withRouter } from 'react-router';
|
|
|
|
import { URL } from 'config';
|
|
|
|
import * as ICONS from 'constants/icons';
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
uri: string,
|
|
|
|
title: ?string,
|
|
|
|
isInApp: boolean,
|
|
|
|
};
|
|
|
|
|
|
|
|
function FileViewerEmbeddedTitle(props: Props) {
|
|
|
|
const { uri, title, isInApp } = props;
|
|
|
|
|
|
|
|
let contentLink = `${formatLbryUrlForWeb(uri)}`;
|
|
|
|
|
|
|
|
if (!isInApp) {
|
|
|
|
contentLink = `${contentLink}?src=embed`;
|
|
|
|
}
|
|
|
|
|
2020-05-18 19:07:42 +02:00
|
|
|
const contentLinkProps = isInApp ? { navigate: contentLink } : { href: contentLink };
|
2020-04-29 22:50:06 +02:00
|
|
|
const lbryLinkProps = isInApp ? { navigate: '/' } : { href: URL };
|
|
|
|
|
|
|
|
return (
|
2020-05-22 22:47:10 +02:00
|
|
|
<div className="file-viewer__embedded-header">
|
2020-10-20 19:10:02 +02:00
|
|
|
<div className="file-viewer__embedded-gradient" />
|
2021-03-01 12:00:31 +01:00
|
|
|
<Button
|
|
|
|
label={title}
|
|
|
|
aria-label={title}
|
|
|
|
button="link"
|
|
|
|
className="file-viewer__embedded-title"
|
|
|
|
{...contentLinkProps}
|
|
|
|
/>
|
2020-05-22 22:47:10 +02:00
|
|
|
<div className="file-viewer__embedded-info">
|
2021-03-01 12:00:31 +01:00
|
|
|
<Button className="file-viewer__overlay-logo" icon={ICONS.LBRY} aria-label={__('Home')} {...lbryLinkProps} />
|
2020-05-26 20:42:44 +02:00
|
|
|
{isInApp && <FilePrice uri={uri} />}
|
2020-05-22 22:47:10 +02:00
|
|
|
</div>
|
2020-04-29 22:50:06 +02:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default withRouter(FileViewerEmbeddedTitle);
|