-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.android.js
121 lines (98 loc) · 2.44 KB
/
index.android.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/**
* @flow
*/
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View,
Button,
Slider,
NativeModules
} from 'react-native';
const SuperpoweredModule = NativeModules.SuperpoweredModule;
export default class ReactNativeSuperpowered extends Component {
constructor(props) {
super(props);
this.state = {
init: null,
playPause: false,
buttonTitle: 'Play',
}
this.playPause = this.playPause.bind(this);
}
componentDidMount() {
this.init();
}
async init() {
try {
let init = await SuperpoweredModule.init();
this.setState({ init });
} catch (e) {
console.error(e);
}
}
async playPause() {
try {
let playPause = await SuperpoweredModule.playPause();
let buttonTitle = 'Play';
if (this.state.buttonTitle == buttonTitle) {
buttonTitle = 'Pause';
}
this.setState({ playPause, buttonTitle });
} catch (e) {
console.error(e);
}
}
updateCrossFader(value) {
SuperpoweredModule.crossFader(value);
}
updateFxFlanger(value) {
SuperpoweredModule.fxValue(0, value);
}
updateFxFilter(value) {
SuperpoweredModule.fxValue(1, value);
}
updateFxRoll(value) {
SuperpoweredModule.fxValue(2, value);
}
render() {
return (
<View style={styles.container}>
{
this.state.init == "true" &&
<View>
<Button
style={styles.button}
onPress={this.playPause}
title={this.state.buttonTitle}
/>
<Text style={styles.text}>Crossfader</Text>
<Slider value={0} onValueChange={this.updateCrossFader} />
<Text style={styles.text}>Flanger</Text>
<Slider value={0} onValueChange={this.updateFxFlanger} />
<Text style={styles.text}>Filter</Text>
<Slider value={0} onValueChange={this.updateFxFilter} />
<Text style={styles.text}>Roll</Text>
<Slider value={0} onValueChange={this.updateFxRoll} />
</View>
}
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
backgroundColor: '#F5FCFF',
},
text: {
textAlign: 'center',
margin: 10,
width: 270,
},
});
AppRegistry.registerComponent('ReactNativeSuperpowered', () => ReactNativeSuperpowered);