forked from qiuxiang/react-native-recording
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
102 lines (92 loc) · 2.4 KB
/
index.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import React, { Component } from "react";
import { AppRegistry, PermissionsAndroid, Platform } from "react-native";
import WebView from "react-native-webview";
import Recording from "react-native-recording";
class App extends Component {
async componentDidMount() {
if (Platform.OS === "android") {
await PermissionsAndroid.requestMultiple([
PermissionsAndroid.PERMISSIONS.RECORD_AUDIO,
]);
}
Recording.init({
bufferSize: 4096,
sampleRate: 44100,
bitsPerChannel: 16,
channelsPerFrame: 1,
});
this.listener = Recording.addRecordingEventListener((data) => {
if (this.loaded) {
this.webView.injectJavaScript(`
waveform.update("${data}".split(",").map(function (value) {
return parseInt(value)
}));
true;
`);
}
});
Recording.start();
}
componentWillUnmount() {
this.listener.remove();
Recording.stop();
}
render() {
return (
<WebView
ref={(ref) => (this.webView = ref)}
style={{ flex: 1 }}
onLoad={() => (this.loaded = true)}
source={{
html: `<!doctype html>
<meta name="viewport" content="width=device-width, user-scalable=no">
<style>
html {
height: 100%;
}
body {
height: 100%;
margin: 0;
overflow: hidden;
}
canvas {
display: block;
width: 100%;
height: 100%;
}
</style>
<canvas id="canvas"></canvas>
<script>
const Waveform = function (selector) {
this.canvas = document.querySelector(selector)
this.canvas.width = document.body.clientWidth * window.devicePixelRatio
this.canvas.height = document.body.clientHeight * window.devicePixelRatio
this.context = this.canvas.getContext('2d')
this.context.strokeStyle = '#34495e'
}
Waveform.prototype.update = function (data) {
const slice = this.canvas.width / (data.length - 1)
this.context.clearRect(0, 0, this.canvas.width, this.canvas.height)
this.context.beginPath()
data.reduce((function (x, value, index) {
const y = (0.5 + value / 16384) * this.canvas.height
if (index > 0) {
this.context.lineTo(x, y)
} else {
this.context.moveTo(x, y)
}
return x + slice
}).bind(this), 0)
this.context.stroke()
}
window.waveform = new Waveform('#canvas')
document.ontouchmove = function (event) {
event.preventDefault()
}
</script>`,
}}
/>
);
}
}
AppRegistry.registerComponent("RNRecording", () => App);