Embed: add replay button + msg resizing (#7141)
* Embed: add replay button Also, changed "Rewatch or Discuss" to "Discuss + external arrow" since there is a dedicated re-watch button. * Embed: resize "ended message" based on container height
This commit is contained in:
parent
63fd867757
commit
aefa889ee4
3 changed files with 26 additions and 4 deletions
|
@ -2169,5 +2169,6 @@
|
|||
"Content Page": "Content Page",
|
||||
"Card Last 4": "Card Last 4",
|
||||
"Search blocked channel name": "Search blocked channel name",
|
||||
"Discuss": "Discuss",
|
||||
"--end--": "--end--"
|
||||
}
|
||||
|
|
|
@ -196,7 +196,11 @@
|
|||
}
|
||||
|
||||
.file-viewer_embed-ended-title {
|
||||
white-space: pre-wrap;
|
||||
max-width: 100%;
|
||||
p {
|
||||
font-size: 6vh;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
}
|
||||
|
||||
.content__viewer--floating {
|
||||
|
@ -231,6 +235,10 @@
|
|||
.button + .button {
|
||||
margin-left: var(--spacing-m);
|
||||
}
|
||||
|
||||
.button--link {
|
||||
vertical-align: middle;
|
||||
}
|
||||
}
|
||||
|
||||
.file-viewer__overlay-logo {
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
// @flow
|
||||
import React from 'react';
|
||||
import Button from 'component/button';
|
||||
import * as ICONS from 'constants/icons';
|
||||
import { formatLbryUrlForWeb } from 'util/url';
|
||||
import { withRouter } from 'react-router';
|
||||
import { URL, SITE_NAME } from 'config';
|
||||
|
@ -34,6 +35,7 @@ function FileViewerEmbeddedEnded(props: Props) {
|
|||
// $FlowFixMe
|
||||
const prompt = prompts[promptKey];
|
||||
const lbrytvLink = `${URL}${formatLbryUrlForWeb(uri)}?src=${promptKey}`;
|
||||
const showReplay = Boolean(window.player);
|
||||
|
||||
return (
|
||||
<div className="file-viewer__overlay">
|
||||
|
@ -44,11 +46,22 @@ function FileViewerEmbeddedEnded(props: Props) {
|
|||
</div>
|
||||
{!preferEmbed && (
|
||||
<>
|
||||
<div className="file-viewer__overlay-title file-viewer_embed-ended-title">{prompt}</div>
|
||||
<div className="file-viewer__overlay-title file-viewer_embed-ended-title">
|
||||
<p>{prompt}</p>
|
||||
</div>
|
||||
<div className="file-viewer__overlay-actions">
|
||||
{ /* add button to replay? */ }
|
||||
<>
|
||||
<Button label={__('Rewatch or Discuss')} button="primary" href={lbrytvLink} />
|
||||
{showReplay && (
|
||||
<Button
|
||||
title={__('Replay')}
|
||||
button="link"
|
||||
iconRight={ICONS.REPLAY}
|
||||
onClick={() => {
|
||||
if (window.player) window.player.play();
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
<Button label={__('Discuss')} iconRight={ICONS.EXTERNAL} button="primary" href={lbrytvLink} />
|
||||
{!isAuthenticated && (
|
||||
<Button
|
||||
label={__('Join %SITE_NAME%', { SITE_NAME })}
|
||||
|
|
Loading…
Reference in a new issue