@byteplus/react-native-live-push 1.1.2-rc.0 → 1.1.2-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ios/VeLivePushHelper.h +5 -8
- package/ios/VeLivePushHelper.m +22 -41
- package/ios/VeLivePushSDK.m +30 -41
- package/ios/include/react-native-velive-push.modulemap +4 -0
- package/lib/commonjs/index.js +53 -3
- package/lib/module/index.js +53 -3
- package/lib/typescript/platforms/ios/helper.d.ts +8 -0
- package/package.json +1 -1
- package/react-native-velive-push.podspec +25 -15
package/ios/VeLivePushHelper.h
CHANGED
|
@@ -6,21 +6,18 @@
|
|
|
6
6
|
//
|
|
7
7
|
|
|
8
8
|
#import <Foundation/Foundation.h>
|
|
9
|
-
#import "TTSDKFramework/VeLivePusher.h"
|
|
10
9
|
|
|
11
10
|
NS_ASSUME_NONNULL_BEGIN
|
|
12
11
|
|
|
13
|
-
@
|
|
14
|
-
|
|
15
|
-
+ (instancetype)sharedInstance;
|
|
12
|
+
@class VeLivePusher;
|
|
16
13
|
|
|
17
|
-
|
|
14
|
+
@interface VeLivePushHelper : NSObject
|
|
18
15
|
|
|
19
|
-
|
|
16
|
+
+ (nullable VeLivePusher *)getPusher:(NSString *)key;
|
|
20
17
|
|
|
21
|
-
|
|
18
|
+
+ (void)setVeLivePusher:(VeLivePusher *)pusher forKey:(NSString *)key;
|
|
22
19
|
|
|
23
|
-
|
|
20
|
+
+ (void)removeVeLivePusher:(NSString *)key;
|
|
24
21
|
|
|
25
22
|
@end
|
|
26
23
|
|
package/ios/VeLivePushHelper.m
CHANGED
|
@@ -6,57 +6,38 @@
|
|
|
6
6
|
//
|
|
7
7
|
|
|
8
8
|
#import "VeLivePushHelper.h"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
@interface VeLivePushHelper ()
|
|
12
|
-
|
|
13
|
-
@property (nonatomic, strong) NSMapTable<NSString *, VeLivePusher *> *pusherMap;
|
|
14
|
-
|
|
15
|
-
@end
|
|
9
|
+
// 使用TTSDKFramework的VeLivePusher类,但在此不直接导入
|
|
10
|
+
// 在包含此SDK的项目中,VeLivePusher会被正确解析
|
|
16
11
|
|
|
17
12
|
@implementation VeLivePushHelper
|
|
18
13
|
|
|
19
|
-
|
|
20
|
-
static VeLivePushHelper *instance = nil;
|
|
21
|
-
static dispatch_once_t onceToken;
|
|
22
|
-
dispatch_once(&onceToken, ^{
|
|
23
|
-
instance = [[self alloc] init];
|
|
24
|
-
});
|
|
25
|
-
return instance;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
- (instancetype)init {
|
|
29
|
-
self = [super init];
|
|
30
|
-
if (self) {
|
|
31
|
-
_pusherMap = [NSMapTable strongToWeakObjectsMapTable];
|
|
32
|
-
}
|
|
33
|
-
return self;
|
|
34
|
-
}
|
|
14
|
+
static NSMapTable<NSString *, VeLivePusher *> *pusherMap;
|
|
35
15
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
return [self.pusherMap objectForKey:key];
|
|
16
|
+
+ (void)initialize {
|
|
17
|
+
if (self == [VeLivePushHelper class]) {
|
|
18
|
+
pusherMap = [NSMapTable strongToWeakObjectsMapTable];
|
|
19
|
+
}
|
|
41
20
|
}
|
|
42
21
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
22
|
+
+ (nullable VeLivePusher *)getPusher:(NSString *)key {
|
|
23
|
+
if (!key) {
|
|
24
|
+
return nil;
|
|
25
|
+
}
|
|
26
|
+
return [pusherMap objectForKey:key];
|
|
48
27
|
}
|
|
49
28
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
29
|
+
+ (void)setVeLivePusher:(VeLivePusher *)pusher forKey:(NSString *)key {
|
|
30
|
+
if (!key || !pusher) {
|
|
31
|
+
return;
|
|
32
|
+
}
|
|
33
|
+
[pusherMap setObject:pusher forKey:key];
|
|
55
34
|
}
|
|
56
35
|
|
|
57
|
-
|
|
58
|
-
|
|
36
|
+
+ (void)removeVeLivePusher:(NSString *)key {
|
|
37
|
+
if (!key) {
|
|
38
|
+
return;
|
|
39
|
+
}
|
|
40
|
+
[pusherMap removeObjectForKey:key];
|
|
59
41
|
}
|
|
60
42
|
|
|
61
43
|
@end
|
|
62
|
-
|
package/ios/VeLivePushSDK.m
CHANGED
|
@@ -5,14 +5,13 @@
|
|
|
5
5
|
// Created by ByteDance on 2024/4/10.
|
|
6
6
|
//
|
|
7
7
|
|
|
8
|
-
#import <UIKit/UIKit.h>
|
|
9
8
|
#import <Foundation/Foundation.h>
|
|
9
|
+
#import <UIKit/UIKit.h>
|
|
10
10
|
|
|
11
11
|
#import <TTSDKFramework/TTSDKFramework.h>
|
|
12
|
-
#import <TTSDKFramework/TTSDKFramework/VeLiveMediaPlayer.h>
|
|
13
12
|
|
|
14
|
-
#import "VolcApiEngine/VolcEventObserver.h"
|
|
15
13
|
#import "VeLivePushSDK.h"
|
|
14
|
+
#import "VolcApiEngine/VolcEventObserver.h"
|
|
16
15
|
|
|
17
16
|
#define EVENT_NAME @"VeLivePush:onEvent"
|
|
18
17
|
|
|
@@ -20,53 +19,54 @@
|
|
|
20
19
|
|
|
21
20
|
@end
|
|
22
21
|
|
|
22
|
+
@interface RCTVeLivePushModule () <VeLiveMediaPlayerListener>
|
|
23
|
+
|
|
24
|
+
@end
|
|
25
|
+
|
|
23
26
|
static RCTVeLivePushModule *instance = nil;
|
|
24
27
|
|
|
25
|
-
@implementation RCTVeLivePushModule
|
|
26
|
-
{
|
|
28
|
+
@implementation RCTVeLivePushModule {
|
|
27
29
|
bool hasListeners;
|
|
28
30
|
}
|
|
29
31
|
|
|
30
32
|
+ (instancetype)shareInstance {
|
|
31
|
-
|
|
33
|
+
return instance;
|
|
32
34
|
}
|
|
33
35
|
|
|
34
36
|
+ (BOOL)requiresMainQueueSetup {
|
|
35
|
-
|
|
37
|
+
return YES;
|
|
36
38
|
}
|
|
37
39
|
|
|
38
40
|
+ (void)_unsedForKeepOnly {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
+
Protocol *unused = @protocol(VeLivePlayerObserver);
|
|
42
|
+
NSLog(@"Loaded Protocol: %p", unused);
|
|
41
43
|
}
|
|
42
44
|
|
|
43
45
|
- (dispatch_queue_t)methodQueue {
|
|
44
|
-
|
|
46
|
+
return dispatch_get_main_queue();
|
|
45
47
|
}
|
|
46
48
|
|
|
47
49
|
- (instancetype)init {
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
50
|
+
self = [super init];
|
|
51
|
+
if (self != nil) {
|
|
52
|
+
self.apiEngine = nil;
|
|
53
|
+
instance = self;
|
|
54
|
+
}
|
|
55
|
+
return instance;
|
|
54
56
|
}
|
|
55
57
|
|
|
56
58
|
- (NSArray<NSString *> *)supportedEvents {
|
|
57
|
-
|
|
59
|
+
return @[ EVENT_NAME ];
|
|
58
60
|
}
|
|
59
61
|
|
|
60
|
-
- (void)onEvent:(NSString *)eventName data:(id)eventData
|
|
61
|
-
{
|
|
62
|
-
NSDictionary * dic = @{ @"event": eventName, @"data": eventData };
|
|
62
|
+
- (void)onEvent:(NSString *)eventName data:(id)eventData {
|
|
63
|
+
NSDictionary *dic = @{@"event" : eventName, @"data" : eventData};
|
|
63
64
|
[self sendEventWithName:EVENT_NAME body:dic];
|
|
64
65
|
}
|
|
65
66
|
|
|
66
67
|
RCT_EXPORT_MODULE();
|
|
67
68
|
|
|
68
|
-
RCT_EXPORT_BLOCKING_SYNCHRONOUS_METHOD(newApiEngine)
|
|
69
|
-
{
|
|
69
|
+
RCT_EXPORT_BLOCKING_SYNCHRONOUS_METHOD(newApiEngine) {
|
|
70
70
|
if (self.apiEngine == nil) {
|
|
71
71
|
self.apiEngine = [[VolcApiEngine alloc] init];
|
|
72
72
|
[self.apiEngine setObserver:self];
|
|
@@ -74,36 +74,25 @@ RCT_EXPORT_BLOCKING_SYNCHRONOUS_METHOD(newApiEngine)
|
|
|
74
74
|
return nil;
|
|
75
75
|
}
|
|
76
76
|
|
|
77
|
-
RCT_EXPORT_BLOCKING_SYNCHRONOUS_METHOD(destroyApiEngine)
|
|
78
|
-
|
|
79
|
-
//
|
|
77
|
+
RCT_EXPORT_BLOCKING_SYNCHRONOUS_METHOD(destroyApiEngine) {
|
|
78
|
+
//
|
|
80
79
|
return nil;
|
|
81
80
|
}
|
|
82
81
|
|
|
83
|
-
RCT_EXPORT_BLOCKING_SYNCHRONOUS_METHOD(callApiSync
|
|
84
|
-
{
|
|
82
|
+
RCT_EXPORT_BLOCKING_SYNCHRONOUS_METHOD(callApiSync
|
|
83
|
+
: (nonnull NSDictionary *)args) {
|
|
85
84
|
[self newApiEngine];
|
|
86
85
|
return [instance.apiEngine callApi:args];
|
|
87
86
|
}
|
|
88
87
|
|
|
89
|
-
RCT_EXPORT_METHOD(callApi
|
|
90
|
-
|
|
88
|
+
RCT_EXPORT_METHOD(callApi
|
|
89
|
+
: (nonnull NSDictionary *)args callback
|
|
90
|
+
: (RCTResponseSenderBlock)callback) {
|
|
91
91
|
[self newApiEngine];
|
|
92
92
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
93
93
|
id _val = [self.apiEngine callApi:args];
|
|
94
|
-
callback(@[_val]);
|
|
94
|
+
callback(@[ _val ]);
|
|
95
95
|
});
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
RCT_EXPORT_METHOD(test)
|
|
99
|
-
{
|
|
100
|
-
Protocol *p = @protocol(VeLiveMediaPlayerListener);
|
|
101
|
-
NSString *str = NSStringFromProtocol(p);
|
|
102
|
-
NSLog(@"protocol name %@", str);
|
|
103
|
-
|
|
104
|
-
Protocol *p2 = @protocol(VeLivePusherObserver);
|
|
105
|
-
NSString *str2 = NSStringFromProtocol(p2);
|
|
106
|
-
NSLog(@"protocol name %@", str2);
|
|
107
|
-
}
|
|
108
|
-
|
|
109
98
|
@end
|
package/lib/commonjs/index.js
CHANGED
|
@@ -12694,7 +12694,7 @@ var NativeUIView = function () {
|
|
|
12694
12694
|
return UIView;
|
|
12695
12695
|
})(NativeUIView));
|
|
12696
12696
|
|
|
12697
|
-
var VeLivePushHelper = function () {
|
|
12697
|
+
var VeLivePushHelper$1 = function () {
|
|
12698
12698
|
var _classDecorators = [NativeClass('com.volcengine.velive.rn.push.VeLivePushHelper')];
|
|
12699
12699
|
var _classDescriptor;
|
|
12700
12700
|
var _classExtraInitializers = [];
|
|
@@ -12742,6 +12742,54 @@ var VeLivePushHelper = function () {
|
|
|
12742
12742
|
return VeLivePushHelper = _classThis;
|
|
12743
12743
|
}();
|
|
12744
12744
|
|
|
12745
|
+
var VeLivePushHelper = function () {
|
|
12746
|
+
var _classDecorators = [NativeClass('VeLivePushHelper')];
|
|
12747
|
+
var _classDescriptor;
|
|
12748
|
+
var _classExtraInitializers = [];
|
|
12749
|
+
var _classThis;
|
|
12750
|
+
var _staticExtraInitializers = [];
|
|
12751
|
+
var _static_setVeLivePusher_decorators;
|
|
12752
|
+
var _static_removeVeLivePusher_decorators;
|
|
12753
|
+
var VeLivePushHelper = _classThis = /** @class */ (function () {
|
|
12754
|
+
function VeLivePushHelper_1() {
|
|
12755
|
+
}
|
|
12756
|
+
VeLivePushHelper_1.setPusher = function (viewId, pusher) {
|
|
12757
|
+
VeLivePushHelper.pusherMap.set(pusher, viewId);
|
|
12758
|
+
this.setVeLivePusher(pusher, viewId);
|
|
12759
|
+
};
|
|
12760
|
+
VeLivePushHelper_1.removePusher = function (pusher) {
|
|
12761
|
+
var viewId = VeLivePushHelper.pusherMap.get(pusher);
|
|
12762
|
+
if (viewId) {
|
|
12763
|
+
VeLivePushHelper.pusherMap.delete(pusher);
|
|
12764
|
+
this.removeVeLivePusher(viewId);
|
|
12765
|
+
}
|
|
12766
|
+
};
|
|
12767
|
+
VeLivePushHelper_1.setVeLivePusher = function (pusher, viewId) {
|
|
12768
|
+
throw new Error('');
|
|
12769
|
+
};
|
|
12770
|
+
VeLivePushHelper_1.removeVeLivePusher = function (viewId) {
|
|
12771
|
+
throw new Error('');
|
|
12772
|
+
};
|
|
12773
|
+
return VeLivePushHelper_1;
|
|
12774
|
+
}());
|
|
12775
|
+
__setFunctionName(_classThis, "VeLivePushHelper");
|
|
12776
|
+
(function () {
|
|
12777
|
+
var _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(null) : void 0;
|
|
12778
|
+
_static_setVeLivePusher_decorators = [NativeStaticMethodSync('setVeLivePusher:forKey:')];
|
|
12779
|
+
_static_removeVeLivePusher_decorators = [NativeStaticMethodSync('removeVeLivePusher:')];
|
|
12780
|
+
__esDecorate(_classThis, null, _static_setVeLivePusher_decorators, { kind: "method", name: "setVeLivePusher", static: true, private: false, access: { has: function (obj) { return "setVeLivePusher" in obj; }, get: function (obj) { return obj.setVeLivePusher; } }, metadata: _metadata }, null, _staticExtraInitializers);
|
|
12781
|
+
__esDecorate(_classThis, null, _static_removeVeLivePusher_decorators, { kind: "method", name: "removeVeLivePusher", static: true, private: false, access: { has: function (obj) { return "removeVeLivePusher" in obj; }, get: function (obj) { return obj.removeVeLivePusher; } }, metadata: _metadata }, null, _staticExtraInitializers);
|
|
12782
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
12783
|
+
VeLivePushHelper = _classThis = _classDescriptor.value;
|
|
12784
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
12785
|
+
})();
|
|
12786
|
+
_classThis.pusherMap = (__runInitializers(_classThis, _staticExtraInitializers), new WeakMap());
|
|
12787
|
+
(function () {
|
|
12788
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
12789
|
+
})();
|
|
12790
|
+
return VeLivePushHelper = _classThis;
|
|
12791
|
+
}();
|
|
12792
|
+
|
|
12745
12793
|
/** {zh}
|
|
12746
12794
|
* @detail keytype
|
|
12747
12795
|
* @brief 推流本地文件录制配置。
|
|
@@ -23713,11 +23761,12 @@ extendsClassMethod(VeLivePusher, 'destroy', function (origin) {
|
|
|
23713
23761
|
origin();
|
|
23714
23762
|
return runImpl(this, function (engine) { return __awaiter(_this, void 0, void 0, function () {
|
|
23715
23763
|
return __generator(this, function (_a) {
|
|
23716
|
-
VeLivePushHelper.removePusher(engine);
|
|
23764
|
+
VeLivePushHelper$1.removePusher(engine);
|
|
23717
23765
|
return [2 /*return*/];
|
|
23718
23766
|
});
|
|
23719
23767
|
}); }, function (engine) { return __awaiter(_this, void 0, void 0, function () {
|
|
23720
23768
|
return __generator(this, function (_a) {
|
|
23769
|
+
VeLivePushHelper.removePusher(engine);
|
|
23721
23770
|
return [2 /*return*/];
|
|
23722
23771
|
});
|
|
23723
23772
|
}); });
|
|
@@ -24535,7 +24584,7 @@ function initAndroidPusher(options) {
|
|
|
24535
24584
|
_d.sent();
|
|
24536
24585
|
viewTag = reactNative.findNodeHandle(element);
|
|
24537
24586
|
reactNative.UIManager.dispatchViewManagerCommand(viewTag, 'resetSurface', []);
|
|
24538
|
-
VeLivePushHelper.setPusher(viewId, pusher);
|
|
24587
|
+
VeLivePushHelper$1.setPusher(viewId, pusher);
|
|
24539
24588
|
return [2 /*return*/, packObject(pusher, VeLivePusher)];
|
|
24540
24589
|
}
|
|
24541
24590
|
});
|
|
@@ -24562,6 +24611,7 @@ function initIOSPusher(options) {
|
|
|
24562
24611
|
return [4 /*yield*/, pusher.setRenderView(uiView)];
|
|
24563
24612
|
case 1:
|
|
24564
24613
|
_b.sent();
|
|
24614
|
+
VeLivePushHelper.setPusher(viewId, unpackObject(pusher));
|
|
24565
24615
|
return [2 /*return*/, pusher];
|
|
24566
24616
|
}
|
|
24567
24617
|
});
|
package/lib/module/index.js
CHANGED
|
@@ -12692,7 +12692,7 @@ var NativeUIView = function () {
|
|
|
12692
12692
|
return UIView;
|
|
12693
12693
|
})(NativeUIView));
|
|
12694
12694
|
|
|
12695
|
-
var VeLivePushHelper = function () {
|
|
12695
|
+
var VeLivePushHelper$1 = function () {
|
|
12696
12696
|
var _classDecorators = [NativeClass('com.volcengine.velive.rn.push.VeLivePushHelper')];
|
|
12697
12697
|
var _classDescriptor;
|
|
12698
12698
|
var _classExtraInitializers = [];
|
|
@@ -12740,6 +12740,54 @@ var VeLivePushHelper = function () {
|
|
|
12740
12740
|
return VeLivePushHelper = _classThis;
|
|
12741
12741
|
}();
|
|
12742
12742
|
|
|
12743
|
+
var VeLivePushHelper = function () {
|
|
12744
|
+
var _classDecorators = [NativeClass('VeLivePushHelper')];
|
|
12745
|
+
var _classDescriptor;
|
|
12746
|
+
var _classExtraInitializers = [];
|
|
12747
|
+
var _classThis;
|
|
12748
|
+
var _staticExtraInitializers = [];
|
|
12749
|
+
var _static_setVeLivePusher_decorators;
|
|
12750
|
+
var _static_removeVeLivePusher_decorators;
|
|
12751
|
+
var VeLivePushHelper = _classThis = /** @class */ (function () {
|
|
12752
|
+
function VeLivePushHelper_1() {
|
|
12753
|
+
}
|
|
12754
|
+
VeLivePushHelper_1.setPusher = function (viewId, pusher) {
|
|
12755
|
+
VeLivePushHelper.pusherMap.set(pusher, viewId);
|
|
12756
|
+
this.setVeLivePusher(pusher, viewId);
|
|
12757
|
+
};
|
|
12758
|
+
VeLivePushHelper_1.removePusher = function (pusher) {
|
|
12759
|
+
var viewId = VeLivePushHelper.pusherMap.get(pusher);
|
|
12760
|
+
if (viewId) {
|
|
12761
|
+
VeLivePushHelper.pusherMap.delete(pusher);
|
|
12762
|
+
this.removeVeLivePusher(viewId);
|
|
12763
|
+
}
|
|
12764
|
+
};
|
|
12765
|
+
VeLivePushHelper_1.setVeLivePusher = function (pusher, viewId) {
|
|
12766
|
+
throw new Error('');
|
|
12767
|
+
};
|
|
12768
|
+
VeLivePushHelper_1.removeVeLivePusher = function (viewId) {
|
|
12769
|
+
throw new Error('');
|
|
12770
|
+
};
|
|
12771
|
+
return VeLivePushHelper_1;
|
|
12772
|
+
}());
|
|
12773
|
+
__setFunctionName(_classThis, "VeLivePushHelper");
|
|
12774
|
+
(function () {
|
|
12775
|
+
var _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(null) : void 0;
|
|
12776
|
+
_static_setVeLivePusher_decorators = [NativeStaticMethodSync('setVeLivePusher:forKey:')];
|
|
12777
|
+
_static_removeVeLivePusher_decorators = [NativeStaticMethodSync('removeVeLivePusher:')];
|
|
12778
|
+
__esDecorate(_classThis, null, _static_setVeLivePusher_decorators, { kind: "method", name: "setVeLivePusher", static: true, private: false, access: { has: function (obj) { return "setVeLivePusher" in obj; }, get: function (obj) { return obj.setVeLivePusher; } }, metadata: _metadata }, null, _staticExtraInitializers);
|
|
12779
|
+
__esDecorate(_classThis, null, _static_removeVeLivePusher_decorators, { kind: "method", name: "removeVeLivePusher", static: true, private: false, access: { has: function (obj) { return "removeVeLivePusher" in obj; }, get: function (obj) { return obj.removeVeLivePusher; } }, metadata: _metadata }, null, _staticExtraInitializers);
|
|
12780
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
12781
|
+
VeLivePushHelper = _classThis = _classDescriptor.value;
|
|
12782
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
12783
|
+
})();
|
|
12784
|
+
_classThis.pusherMap = (__runInitializers(_classThis, _staticExtraInitializers), new WeakMap());
|
|
12785
|
+
(function () {
|
|
12786
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
12787
|
+
})();
|
|
12788
|
+
return VeLivePushHelper = _classThis;
|
|
12789
|
+
}();
|
|
12790
|
+
|
|
12743
12791
|
/** {zh}
|
|
12744
12792
|
* @detail keytype
|
|
12745
12793
|
* @brief 推流本地文件录制配置。
|
|
@@ -23711,11 +23759,12 @@ extendsClassMethod(VeLivePusher, 'destroy', function (origin) {
|
|
|
23711
23759
|
origin();
|
|
23712
23760
|
return runImpl(this, function (engine) { return __awaiter(_this, void 0, void 0, function () {
|
|
23713
23761
|
return __generator(this, function (_a) {
|
|
23714
|
-
VeLivePushHelper.removePusher(engine);
|
|
23762
|
+
VeLivePushHelper$1.removePusher(engine);
|
|
23715
23763
|
return [2 /*return*/];
|
|
23716
23764
|
});
|
|
23717
23765
|
}); }, function (engine) { return __awaiter(_this, void 0, void 0, function () {
|
|
23718
23766
|
return __generator(this, function (_a) {
|
|
23767
|
+
VeLivePushHelper.removePusher(engine);
|
|
23719
23768
|
return [2 /*return*/];
|
|
23720
23769
|
});
|
|
23721
23770
|
}); });
|
|
@@ -24533,7 +24582,7 @@ function initAndroidPusher(options) {
|
|
|
24533
24582
|
_d.sent();
|
|
24534
24583
|
viewTag = findNodeHandle(element);
|
|
24535
24584
|
UIManager.dispatchViewManagerCommand(viewTag, 'resetSurface', []);
|
|
24536
|
-
VeLivePushHelper.setPusher(viewId, pusher);
|
|
24585
|
+
VeLivePushHelper$1.setPusher(viewId, pusher);
|
|
24537
24586
|
return [2 /*return*/, packObject(pusher, VeLivePusher)];
|
|
24538
24587
|
}
|
|
24539
24588
|
});
|
|
@@ -24560,6 +24609,7 @@ function initIOSPusher(options) {
|
|
|
24560
24609
|
return [4 /*yield*/, pusher.setRenderView(uiView)];
|
|
24561
24610
|
case 1:
|
|
24562
24611
|
_b.sent();
|
|
24612
|
+
VeLivePushHelper.setPusher(viewId, unpackObject(pusher));
|
|
24563
24613
|
return [2 /*return*/, pusher];
|
|
24564
24614
|
}
|
|
24565
24615
|
});
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { VeLivePusher } from '../../codegen/ios';
|
|
2
|
+
export declare class VeLivePushHelper {
|
|
3
|
+
static pusherMap: WeakMap<VeLivePusher, string>;
|
|
4
|
+
static setPusher(viewId: string, pusher: VeLivePusher): void;
|
|
5
|
+
static removePusher(pusher: VeLivePusher): void;
|
|
6
|
+
static setVeLivePusher(pusher: VeLivePusher, viewId: string): void;
|
|
7
|
+
static removeVeLivePusher(viewId: string): void;
|
|
8
|
+
}
|
package/package.json
CHANGED
|
@@ -16,27 +16,37 @@ Pod::Spec.new do |s|
|
|
|
16
16
|
|
|
17
17
|
s.source_files = "ios/**/*.{h,m,mm}"
|
|
18
18
|
|
|
19
|
+
s.static_framework = true
|
|
20
|
+
s.preserve_paths = ['ios/include/react-native-velive-push.modulemap']
|
|
21
|
+
|
|
22
|
+
s.pod_target_xcconfig = {
|
|
23
|
+
'DEFINES_MODULE' => 'YES',
|
|
24
|
+
'SWIFT_INCLUDE_PATHS' => '$(PODS_TARGET_SRCROOT)/ios/include',
|
|
25
|
+
'MODULEMAP_FILE' => '$(PODS_TARGET_SRCROOT)/ios/include/react-native-velive-push.modulemap',
|
|
26
|
+
'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES'
|
|
27
|
+
}
|
|
28
|
+
|
|
19
29
|
# Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0.
|
|
20
30
|
# See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79.
|
|
21
31
|
if respond_to?(:install_modules_dependencies, true)
|
|
22
32
|
install_modules_dependencies(s)
|
|
23
33
|
else
|
|
24
|
-
|
|
34
|
+
s.dependency "React-Core"
|
|
25
35
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
36
|
+
# Don't install the dependencies when we run `pod install` in the old architecture.
|
|
37
|
+
if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then
|
|
38
|
+
s.compiler_flags = folly_compiler_flags + " -DRCT_NEW_ARCH_ENABLED=1"
|
|
39
|
+
s.pod_target_xcconfig = {
|
|
40
|
+
"HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)/boost\"",
|
|
41
|
+
"OTHER_CPLUSPLUSFLAGS" => "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
|
|
42
|
+
"CLANG_CXX_LANGUAGE_STANDARD" => "c++17"
|
|
43
|
+
}
|
|
44
|
+
s.dependency "React-Codegen"
|
|
45
|
+
s.dependency "RCT-Folly"
|
|
46
|
+
s.dependency "RCTRequired"
|
|
47
|
+
s.dependency "RCTTypeSafety"
|
|
48
|
+
s.dependency "ReactCommon/turbomodule/core"
|
|
49
|
+
end
|
|
40
50
|
end
|
|
41
51
|
|
|
42
52
|
s.dependency 'VolcApiEngine', '1.2.3'
|