2017-06-07 15:50:30 +00:00
|
|
|
/*
|
|
|
|
* Copyright @ 2017-present Atlassian Pty Ltd
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2017-10-18 16:04:31 +00:00
|
|
|
#import <React/RCTBridgeModule.h>
|
2017-06-07 15:50:30 +00:00
|
|
|
|
2017-06-10 00:17:01 +00:00
|
|
|
#import "JitsiMeetView+Private.h"
|
2017-06-07 15:50:30 +00:00
|
|
|
|
|
|
|
@interface ExternalAPI : NSObject<RCTBridgeModule>
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation ExternalAPI
|
|
|
|
|
|
|
|
RCT_EXPORT_MODULE();
|
|
|
|
|
2018-05-17 11:38:59 +00:00
|
|
|
/**
|
2018-05-21 00:01:59 +00:00
|
|
|
* Make sure all methods in this module are invoked on the main/UI thread.
|
2018-05-17 11:38:59 +00:00
|
|
|
*/
|
|
|
|
- (dispatch_queue_t)methodQueue {
|
|
|
|
return dispatch_get_main_queue();
|
|
|
|
}
|
|
|
|
|
2017-06-07 15:50:30 +00:00
|
|
|
/**
|
|
|
|
* Dispatches an event that occurred on JavaScript to the view's delegate.
|
|
|
|
*
|
2017-06-10 08:34:11 +00:00
|
|
|
* @param name The name of the event.
|
|
|
|
* @param data The details/specifics of the event to send determined
|
2017-10-01 06:35:19 +00:00
|
|
|
* by/associated with the specified `name`.
|
2017-06-10 08:34:11 +00:00
|
|
|
* @param scope
|
2017-06-07 15:50:30 +00:00
|
|
|
*/
|
2017-06-10 00:17:01 +00:00
|
|
|
RCT_EXPORT_METHOD(sendEvent:(NSString *)name
|
|
|
|
data:(NSDictionary *)data
|
|
|
|
scope:(NSString *)scope) {
|
|
|
|
// The JavaScript App needs to provide uniquely identifying information to
|
|
|
|
// the native ExternalAPI module so that the latter may match the former
|
|
|
|
// to the native JitsiMeetView which hosts it.
|
|
|
|
JitsiMeetView *view = [JitsiMeetView viewForExternalAPIScope:scope];
|
|
|
|
|
|
|
|
if (!view) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
id delegate = view.delegate;
|
2017-06-07 15:50:30 +00:00
|
|
|
|
2017-06-10 00:17:01 +00:00
|
|
|
if (!delegate) {
|
2017-06-07 15:50:30 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-09-06 18:00:34 +00:00
|
|
|
SEL sel = NSSelectorFromString([self methodNameFromEventName:name]);
|
2017-06-10 00:17:01 +00:00
|
|
|
|
2017-09-06 18:00:34 +00:00
|
|
|
if (sel && [delegate respondsToSelector:sel]) {
|
|
|
|
[delegate performSelector:sel withObject:data];
|
2017-06-07 15:50:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-06 18:00:34 +00:00
|
|
|
/**
|
|
|
|
* Converts a specific event name i.e. redux action type description to a
|
|
|
|
* method name.
|
|
|
|
*
|
|
|
|
* @param eventName The event name to convert to a method name.
|
2017-10-01 06:35:19 +00:00
|
|
|
* @return A method name constructed from the specified `eventName`.
|
2017-09-06 18:00:34 +00:00
|
|
|
*/
|
|
|
|
- (NSString *)methodNameFromEventName:(NSString *)eventName {
|
|
|
|
NSMutableString *methodName
|
|
|
|
= [NSMutableString stringWithCapacity:eventName.length];
|
|
|
|
|
|
|
|
for (NSString *c in [eventName componentsSeparatedByString:@"_"]) {
|
|
|
|
if (c.length) {
|
|
|
|
[methodName appendString:
|
|
|
|
methodName.length ? c.capitalizedString : c.lowercaseString];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
[methodName appendString:@":"];
|
|
|
|
|
|
|
|
return methodName;
|
|
|
|
}
|
|
|
|
|
2017-06-07 15:50:30 +00:00
|
|
|
@end
|