mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-12-22 20:00:16 +03:00
c2e6d732c4
Expecting bugs!
41 lines
1,018 B
JavaScript
41 lines
1,018 B
JavaScript
import './embed-modal.css';
|
|
|
|
import { t, Trans } from '@lingui/macro';
|
|
|
|
import Icon from './icon';
|
|
|
|
function EmbedModal({ html, url, width, height, onClose = () => {} }) {
|
|
return (
|
|
<div class="embed-modal-container">
|
|
<div class="top-controls">
|
|
<button type="button" class="light" onClick={() => onClose()}>
|
|
<Icon icon="x" alt={t`Close`} />
|
|
</button>
|
|
{url && (
|
|
<a
|
|
href={url}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
class="button plain"
|
|
>
|
|
<span>
|
|
<Trans>Open in new window</Trans>
|
|
</span>{' '}
|
|
<Icon icon="external" />
|
|
</a>
|
|
)}
|
|
</div>
|
|
<div
|
|
class="embed-content"
|
|
dangerouslySetInnerHTML={{ __html: html }}
|
|
style={{
|
|
'--width': width + 'px',
|
|
'--height': height + 'px',
|
|
'--aspect-ratio': `${width}/${height}`,
|
|
}}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default EmbedModal;
|