react-native-firebase-for-netmera
Version:
176 lines (145 loc) • 3.42 kB
JavaScript
/**
*
* IOSNotification representation wrapper
*/
import { isIOS } from '../../utils';
import { getLogger } from '../../utils/log';
import { getNativeModule } from '../../utils/native';
export default class IOSNotification {
constructor(notification, notifications, data) {
this._notification = notification;
if (data) {
this._alertAction = data.alertAction;
this._attachments = data.attachments || [];
this._badge = data.badge;
this._category = data.category;
this._hasAction = data.hasAction;
this._launchImage = data.launchImage;
this._threadIdentifier = data.threadIdentifier;
} else {
this._attachments = [];
}
if (!isIOS || !notifications || !notifications.ios) {
return this;
} // IOS + Native Notification Only
const complete = fetchResult => {
const {
notificationId
} = notification; // && notifications check for Flow
if (notificationId && notifications) {
getLogger(notifications).debug(`Completion handler called for notificationId=${notificationId}`);
getNativeModule(notifications).complete(notificationId, fetchResult);
}
};
if (notifications.ios.shouldAutoComplete) {
complete(notifications.ios.backgroundFetchResult.noData);
} else {
this._complete = complete;
}
}
get alertAction() {
return this._alertAction;
}
get attachments() {
return this._attachments;
}
get badge() {
return this._badge;
}
get category() {
return this._category;
}
get hasAction() {
return this._hasAction;
}
get launchImage() {
return this._launchImage;
}
get threadIdentifier() {
return this._threadIdentifier;
}
get complete() {
return this._complete;
}
/**
*
* @param identifier
* @param url
* @param options
* @returns {Notification}
*/
addAttachment(identifier, url, options) {
this._attachments.push({
identifier,
options,
url
});
return this._notification;
}
/**
*
* @param alertAction
* @returns {Notification}
*/
setAlertAction(alertAction) {
this._alertAction = alertAction;
return this._notification;
}
/**
*
* @param badge
* @returns {Notification}
*/
setBadge(badge) {
this._badge = badge;
return this._notification;
}
/**
*
* @param category
* @returns {Notification}
*/
setCategory(category) {
this._category = category;
return this._notification;
}
/**
*
* @param hasAction
* @returns {Notification}
*/
setHasAction(hasAction) {
this._hasAction = hasAction;
return this._notification;
}
/**
*
* @param launchImage
* @returns {Notification}
*/
setLaunchImage(launchImage) {
this._launchImage = launchImage;
return this._notification;
}
/**
*
* @param threadIdentifier
* @returns {Notification}
*/
setThreadIdentifier(threadIdentifier) {
this._threadIdentifier = threadIdentifier;
return this._notification;
}
build() {
// TODO: Validation of required fields
return {
alertAction: this._alertAction,
attachments: this._attachments,
badge: this._badge,
category: this._category,
hasAction: this._hasAction,
launchImage: this._launchImage,
threadIdentifier: this._threadIdentifier
};
}
}