forked from CommercialTribe/react-native-opentok
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PublisherView.js
164 lines (155 loc) · 3.93 KB
/
PublisherView.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/**
* 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, NativeModules } from 'react-native';
import React from 'react';
import SessionViewProps from './SessionViewProps';
import withLoadingSpinner from './withLoadingSpinner';
const OpenTokPublisherViewManager = NativeModules.OpenTokPublisherViewManager;
const noop = () => {};
/**
* A React component for publishing video stream over OpenTok to the
* session provided
*
* `Publisher` supports default styling, just like any other View.
*
* After successfull session creation, the publisher view displaying live
* preview of a stream will be appended to the container and will take available
* space, as layed out by React.
*/
class PublisherView extends React.Component {
static propTypes = {
...View.propTypes,
...SessionViewProps,
/**
* This function is called on publish start
*/
onPublishStart: React.PropTypes.func,
/**
* This function is called on publish error
*/
onPublishError: React.PropTypes.func,
/**
* This function is called on publish stop
*/
onPublishStop: React.PropTypes.func,
/**
* This function is called when new client is connected to
* the current stream
*
* Receives payload:
* ```
* {
* connectionId: string,
* creationTime: string,
* data: string,
* }
* ```
*/
onClientConnected: React.PropTypes.func,
/**
* This function is called when client is disconnected from
* the current stream
*
* Receives payload:
* ```
* {
* connectionId: string,
* }
* ```
*/
onClientDisconnected: React.PropTypes.func,
/**
* This function is called when the connection is made to the server
* Not much use, mainly can be used as part of debugging process.
* Publishing will be initiated right away
*
* Receives payload:
* ```
* {
* sessionId: string,
* }
* ```
*/
onSessionDidConnect: React.PropTypes.func,
/**
* This function is called when we get disconnected from the session.
*
* Receives payload:
* ```
* {
* sessionId: string,
* }
* ```
*/
onSessionDidDisconnect: React.PropTypes.func,
/**
* This function is called when the session is being recorded
*
* Receives payload:
* ```
* {
* archiveId: string,
* name: string,
* }
* ```
*/
onArchiveStarted: React.PropTypes.func,
/**
* This function is called when the session recording finishes
*
* Receives payload:
* ```
* {
* archiveId: string,
* }
* ```
*/
onArchiveStopped: React.PropTypes.func,
/**
* This function is called when it succesfully takes a thumbnail
*
* Receives payload:
* ```
* {
* filePath: string,
* }
* ```
*/
onThumbnailReady: React.PropTypes.func,
/**
* Enable video
*/
videoEnabled: React.PropTypes.bool,
};
static defaultProps = {
onPublishStart: noop,
onPublishError: noop,
onPublishStop: noop,
onClientConnected: noop,
onClientDisconnected: noop,
onSessionDidConnect: noop,
onSessionDidDisconnect: noop,
onArchiveStarted: noop,
onArchiveStopped: noop,
onThumbnailReady: noop,
};
pausePublish() {
OpenTokPublisherViewManager.pausePublish();
}
resumePublish() {
OpenTokPublisherViewManager.resumePublish();
}
stopPublish() {
OpenTokPublisherViewManager.stopPublish();
}
render() {
return <RCTPublisherView {...this.props} />;
}
}
const RCTPublisherView = requireNativeComponent('RCTOpenTokPublisherView', PublisherView);
export default withLoadingSpinner(PublisherView, 'onPublishStart');