forked from CommercialTribe/react-native-opentok
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SubscriberView.js
56 lines (50 loc) · 1.56 KB
/
SubscriberView.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
/**
* Copyright (c) 2015-present, Callstack Sp z o.o.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import { requireNativeComponent, View } from 'react-native';
import React from 'react';
import SessionViewProps from './SessionViewProps';
import withLoadingSpinner from './withLoadingSpinner';
const noop = () => {};
/**
* A React component for subscribing to video stream over OpenTok to the
* session provided
*
* `Subscriber` supports default styling, just like any other View.
*
* After successfull session creation, the subscriber view displaying live
* preview of a stream will be appended to the container and will take available
* space, as layed out by React.
*/
class SubscriberView extends React.Component {
static propTypes = {
...View.propTypes,
...SessionViewProps,
/**
* This function is called on subscribe start
*/
onSubscribeStart: React.PropTypes.func,
/**
* This function is called on subscribe error
*/
onSubscribeError: React.PropTypes.func,
/**
* This function is called on subscribe stop
*/
onSubscribeStop: React.PropTypes.func,
};
static defaultProps = {
onSubscribeStart: noop,
onSubscribeError: noop,
onSubscribeStop: noop,
};
render() {
return <RCTSubscriberView {...this.props} />;
}
}
const RCTSubscriberView = requireNativeComponent('RCTOpenTokSubscriberView', SubscriberView);
export default withLoadingSpinner(SubscriberView, 'onSubscribeStart');