-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathaudio.js
81 lines (77 loc) · 1.69 KB
/
audio.js
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
76
77
78
79
80
81
import React from 'react';
const formatMap = {
'3gp': 'audio/3gp',
aac: 'audio/aac',
flac: 'audio/flac',
mpg: 'audio/mpeg',
mpeg: 'audio/mpeg',
mp3: 'audio/mp3',
mp4: 'audio/mp4',
m4a: 'audio/mp4',
oga: 'audio/ogg',
ogg: 'audio/ogg',
wav: 'audio/wav',
webm: 'audio/webm',
};
function Audio({
id = undefined,
autoplay = undefined,
className = undefined,
controls = undefined,
fragment = false,
fragmentIndex = undefined,
fragmentStyle = undefined,
lazy = undefined,
loop = undefined,
muted = undefined,
preload = undefined,
src,
}) {
if (typeof src === 'object') {
return (
<audio
data-id={id}
id={id}
className={
className +
(fragment ? ' fragment' : '') +
(fragmentStyle ? ` ${fragmentStyle}` : '')
}
data-autoplay={autoplay}
controls={controls}
muted={muted}
loop={loop}
data-fragment-index={fragmentIndex}
>
{src.forEach((element) => (
<source
src={lazy ? false : element}
data-src={lazy ? element : false}
data-preload={preload}
type={formatMap[/\.[^.]+$/.exec(element)]}
/>
))}
</audio>
);
}
return (
<audio
data-id={id}
id={id}
className={
className +
(fragment ? ' fragment' : '') +
(fragmentStyle ? ` ${fragmentStyle}` : '')
}
data-autoplay={autoplay}
src={lazy ? false : src}
data-src={lazy ? src : false}
data-preload={preload}
controls={controls}
muted={muted}
loop={loop}
data-fragment-index={fragmentIndex}
/>
);
}
export default Audio;