blob: 2ef61a730dd1bb4b29b0627964a57df7f4c3909e [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
#import "WXGlobalEventModule.h"
#import "WXThreadSafeMutableDictionary.h"
#import "WXThreadSafeMutableArray.h"
#import "WXLog.h"
#import "WXSDKManager.h"
@interface WXGlobalEventModule()
@property WXThreadSafeMutableDictionary *eventCallback;
@end
@implementation WXGlobalEventModule
@synthesize weexInstance;
WX_EXPORT_METHOD(@selector(addEventListener:callback:))
WX_EXPORT_METHOD(@selector(removeEventListener:))
- (instancetype)init {
if (self = [super init]) {
_eventCallback = [WXThreadSafeMutableDictionary new];
}
return self;
}
- (void)addEventListener:(NSString *)event callback:(WXModuleKeepAliveCallback)callback
{
WXThreadSafeMutableArray * array = nil;
if (_eventCallback[event]) {
if (callback) {
[_eventCallback[event] addObject:callback];
}
} else {
array = [[WXThreadSafeMutableArray alloc] init];
if (callback) {
[array addObject:callback];
}
_eventCallback[event] = array;
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(fireGlobalEvent:) name:event object:nil];
}
}
- (void)removeEventListener:(NSString *)event
{
if (_eventCallback[event]) {
[_eventCallback removeObjectForKey:event];
[[NSNotificationCenter defaultCenter] removeObserver:self name:event object:nil];
} else {
WXLogWarning(@"eventName \"%@\" doesn't exist", event);
}
}
- (void)fireGlobalEvent:(NSNotification *)notification
{
NSDictionary * userInfo = notification.userInfo;
NSString * userWeexInstanceId = userInfo[@"weexInstance"];
/*
1. The userWeexInstanceId param will be passed by globalEvent module notification.
2. The notification is posted by native user using NotificationCenter, native user don't need care about what the userWeexInstanceId is. What you do is to addEventListener in weex file using globalEvent module, and then post notification anywhere.
*/
WXSDKInstance * userWeexInstance = [WXSDKManager instanceForID:userWeexInstanceId];
// In case that userInstanceId exists but instance has been dealloced
if (!userWeexInstanceId || userWeexInstance == weexInstance) {
for (WXModuleKeepAliveCallback callback in _eventCallback[notification.name]) {
callback(userInfo[@"param"], true);
}
}
}
- (void)dealloc
{
[[NSNotificationCenter defaultCenter] removeObserver:self];
[_eventCallback removeAllObjects];
}
@end