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

64 lines
1.7 KiB
React
Raw Normal View History

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,
};
export default function EmbedTextArea(props: Props) {
2019-10-29 17:23:56 +01:00
const { doToast, snackMessage, label, claim } = props;
const { claim_id: claimId, name } = claim;
const input = useRef();
2019-12-16 18:44:31 +01:00
const streamUrl = generateEmbedUrl(name, claimId);
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 (
<fieldset-section>
<FormField
type="textarea"
className="form-field--copyable"
label={label}
value={embedText || ''}
ref={input}
2019-11-22 22:13:00 +01:00
helper={
<Button
icon={ICONS.COPY}
button="link"
label={__('Copy')}
onClick={() => {
copyToClipboard();
}}
/>
}
2019-10-29 17:23:56 +01:00
onFocus={onFocus}
/>
</fieldset-section>
);
}