lbry-desktop/ui/component/fileViewerEmbeddedTitle/view.jsx

41 lines
1.2 KiB
React
Raw Normal View History

// @flow
import React from 'react';
import Button from 'component/button';
2020-05-22 22:47:10 +02:00
import FilePrice from 'component/filePrice';
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`;
}
const contentLinkProps = isInApp ? { navigate: contentLink } : { href: contentLink };
const lbryLinkProps = isInApp ? { navigate: '/' } : { href: URL };
return (
2020-05-22 22:47:10 +02:00
<div className="file-viewer__embedded-header">
<div className="file-viewer__embedded-gradient" />
2020-05-22 22:47:10 +02:00
<Button label={title} button="link" className="file-viewer__embedded-title" {...contentLinkProps} />
<div className="file-viewer__embedded-info">
<Button className="file-viewer__overlay-logo" icon={ICONS.LBRY} {...lbryLinkProps} />
2020-05-26 20:42:44 +02:00
{isInApp && <FilePrice uri={uri} />}
2020-05-22 22:47:10 +02:00
</div>
</div>
);
}
export default withRouter(FileViewerEmbeddedTitle);