// @flow import React from 'react'; import Button from 'component/button'; 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 (
); } export default withRouter(FileViewerEmbeddedTitle);