This repository has been archived by the owner on Aug 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathindex.jsx
75 lines (71 loc) · 1.57 KB
/
index.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import React from 'react';
import { string, number } from 'prop-types';
import { Helmet } from 'react-helmet';
import { AmpImg } from '@bbc/psammead-image';
import Message from '../Message';
const AmpHead = () => (
<Helmet>
<script
async
custom-element="amp-iframe"
src="https://cdn.ampproject.org/v0/amp-iframe-0.1.js"
/>
</Helmet>
);
const AmpMediaPlayer = ({
src,
placeholderSrc,
placeholderSrcset,
title,
height,
width,
noJsMessage,
service,
}) => {
return (
<>
<AmpHead />
<amp-iframe
sandbox="allow-scripts allow-same-origin"
layout="fill"
scrolling="no"
frameborder="0"
src={src}
title={title}
allowfullscreen="allowfullscreen"
>
<AmpImg
layout="fill"
src={placeholderSrc}
srcset={placeholderSrcset}
placeholder
alt=""
height={height}
width={width}
/>
<noscript>
<Message
service={service}
message={noJsMessage}
placeholderSrc={placeholderSrc}
placeholderSrcset={placeholderSrcset}
/>
</noscript>
</amp-iframe>
</>
);
};
AmpMediaPlayer.propTypes = {
src: string.isRequired,
placeholderSrc: string.isRequired,
placeholderSrcset: string,
title: string.isRequired,
height: number.isRequired,
width: number.isRequired,
noJsMessage: string.isRequired,
service: string.isRequired,
};
AmpMediaPlayer.defaultProps = {
placeholderSrcset: null,
};
export default AmpMediaPlayer;