mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 09:50:15 +01:00
48 lines
798 B
Objective-C
48 lines
798 B
Objective-C
//
|
|
// EventEmitter.m
|
|
// BlueWallet
|
|
//
|
|
// Created by Marcos Rodriguez on 12/25/20.
|
|
// Copyright © 2020 BlueWallet. All rights reserved.
|
|
//
|
|
|
|
#import "EventEmitter.h"
|
|
|
|
static EventEmitter *sharedInstance;
|
|
|
|
@implementation EventEmitter
|
|
|
|
|
|
RCT_EXPORT_MODULE();
|
|
|
|
+ (BOOL)requiresMainQueueSetup {
|
|
return YES;
|
|
}
|
|
|
|
+ (EventEmitter *)sharedInstance {
|
|
return sharedInstance;
|
|
}
|
|
|
|
- (instancetype)init {
|
|
sharedInstance = [super init];
|
|
return sharedInstance;
|
|
}
|
|
|
|
- (NSArray<NSString *> *)supportedEvents {
|
|
return @[@"onNotificationReceived",@"openSettings"];
|
|
}
|
|
|
|
- (void)sendNotification:(NSDictionary *)userInfo
|
|
{
|
|
[sharedInstance sendEventWithName:@"onNotificationReceived" body:userInfo];
|
|
}
|
|
|
|
|
|
- (void)openSettings
|
|
{
|
|
[sharedInstance sendEventWithName:@"openSettings" body:nil];
|
|
}
|
|
|
|
|
|
@end
|