2019-10-29 17:23:56 +01:00
|
|
|
// @flow
|
|
|
|
import * as ICONS from 'constants/icons';
|
|
|
|
import { FormField } from 'component/common/form';
|
|
|
|
import Button from 'component/button';
|
|
|
|
import React, { useRef } from 'react';
|
2019-12-16 18:44:31 +01:00
|
|
|
import { generateEmbedUrl } from 'util/lbrytv';
|
2019-10-29 17:23:56 +01:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
copyable: string,
|
|
|
|
snackMessage: ?string,
|
|
|
|
doToast: ({ message: string }) => void,
|
|
|
|
label?: string,
|
|
|
|
claim: Claim,
|
2020-05-06 05:05:59 +02:00
|
|
|
includeStartTime: boolean,
|
|
|
|
startTime: number,
|
2019-10-29 17:23:56 +01:00
|
|
|
};
|
|
|
|
|
2019-12-30 20:54:53 +01:00
|
|
|
export default function EmbedTextArea(props: Props) {
|
2020-05-06 05:05:59 +02:00
|
|
|
const { doToast, snackMessage, label, claim, includeStartTime, startTime } = props;
|
2019-10-29 17:23:56 +01:00
|
|
|
const { claim_id: claimId, name } = claim;
|
|
|
|
const input = useRef();
|
|
|
|
|
2020-05-06 05:05:59 +02:00
|
|
|
const streamUrl = generateEmbedUrl(name, claimId, includeStartTime, startTime);
|
2019-10-29 17:23:56 +01:00
|
|
|
let embedText = `<iframe width="560" height="315" src="${streamUrl}" allowfullscreen></iframe>`;
|
2019-11-04 13:50:51 +01:00
|
|
|
|
2019-10-29 17:23:56 +01:00
|
|
|
function copyToClipboard() {
|
|
|
|
const topRef = input.current;
|
|
|
|
if (topRef && topRef.input && topRef.input.current) {
|
|
|
|
topRef.input.current.select();
|
2019-11-04 13:50:51 +01:00
|
|
|
document.execCommand('copy');
|
|
|
|
doToast({ message: snackMessage || 'Embed link copied' });
|
2019-10-29 17:23:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function onFocus() {
|
|
|
|
// We have to go a layer deep since the input is inside the form component
|
2019-11-04 13:50:51 +01:00
|
|
|
const topRef = input && input.current;
|
2019-10-29 17:23:56 +01:00
|
|
|
if (topRef && topRef.input && topRef.input.current) {
|
|
|
|
topRef.input.current.select();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2020-03-27 19:57:03 +01:00
|
|
|
<div className="section">
|
2019-10-29 17:23:56 +01:00
|
|
|
<FormField
|
|
|
|
type="textarea"
|
|
|
|
className="form-field--copyable"
|
|
|
|
label={label}
|
|
|
|
value={embedText || ''}
|
|
|
|
ref={input}
|
|
|
|
onFocus={onFocus}
|
2020-05-06 05:05:59 +02:00
|
|
|
readOnly
|
2019-10-29 17:23:56 +01:00
|
|
|
/>
|
2020-03-27 19:57:03 +01:00
|
|
|
|
|
|
|
<div className="section__actions">
|
|
|
|
<Button
|
|
|
|
icon={ICONS.COPY}
|
|
|
|
button="secondary"
|
|
|
|
label={__('Copy')}
|
|
|
|
onClick={() => {
|
|
|
|
copyToClipboard();
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-10-29 17:23:56 +01:00
|
|
|
);
|
|
|
|
}
|