mirror of
https://github.com/jpush/jpush-phonegap-plugin.git
synced 2025-04-20 23:26:22 +08:00
Add ionic-native
This commit is contained in:
parent
5bea9b0bac
commit
bb7b810215
185
index.ts
Normal file
185
index.ts
Normal file
@ -0,0 +1,185 @@
|
|||||||
|
import { Plugin, Cordova, IonicNativePlugin } from '@ionic-native/core';
|
||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
|
||||||
|
@Plugin({
|
||||||
|
pluginName: 'JPush',
|
||||||
|
plugin: 'jpush-phonegap-plugin',
|
||||||
|
pluginRef: 'jPush',
|
||||||
|
repo: 'https://github.com/jpush/jpush-phonegap-plugin',
|
||||||
|
install: 'ionic cordova plugin add jpush-phonegap-plugin --variable APP_KEY=your_app_key',
|
||||||
|
installVariables: ['APP_KEY'],
|
||||||
|
platforms: ['Android', 'iOS']
|
||||||
|
})
|
||||||
|
@Injectable()
|
||||||
|
export class JPush extends IonicNativePlugin {
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
init(): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
setDebugMode(enable: boolean): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
getRegistrationID(): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
stopPush(): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
resumePush(): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
isPushStopped(): Promise<any> { return; }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param params { sequence: number, tags: [string, string] }
|
||||||
|
*/
|
||||||
|
@Cordova
|
||||||
|
setTags(params: object): Promise<any> { return; }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param params { sequence: number, tags: [string, string] }
|
||||||
|
*/
|
||||||
|
@Cordova
|
||||||
|
addTags(params: object): Promise<any> { return; }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param params { sequence: number, tags: [string, string] }
|
||||||
|
*/
|
||||||
|
@Cordova
|
||||||
|
deleteTags(params: object): Promise<any> { return; }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param params { sequence: number }
|
||||||
|
*/
|
||||||
|
@Cordova
|
||||||
|
cleanTags(params: object): Promise<any> { return; }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param params { sequence: number }
|
||||||
|
*/
|
||||||
|
@Cordova
|
||||||
|
getAllTags(params: object): Promise<any> { return; }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param params { sequence: number, tag: string }
|
||||||
|
*/
|
||||||
|
@Cordova
|
||||||
|
checkTagBindState(params: object): Promise<any> { return; }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param params { sequence: number, alias: string }
|
||||||
|
*/
|
||||||
|
@Cordova
|
||||||
|
setAlias(params: object): Promise<any> { return; }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param params { sequence: number }
|
||||||
|
*/
|
||||||
|
@Cordova
|
||||||
|
deleteAlias(params: object): Promise<any> { return; }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param params { sequence: number }
|
||||||
|
*/
|
||||||
|
@Cordova
|
||||||
|
getAlias(params: object): Promise<any> { return; }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determinate whether the application notification has been opened.
|
||||||
|
*
|
||||||
|
* iOS: 0: closed; >1: opened.
|
||||||
|
* UIRemoteNotificationTypeNone = 0,
|
||||||
|
* UIRemoteNotificationTypeBadge = 1 << 0,
|
||||||
|
* UIRemoteNotificationTypeSound = 1 << 1,
|
||||||
|
* UIRemoteNotificationTypeAlert = 1 << 2,
|
||||||
|
* UIRemoteNotificationTypeNewsstandContentAvailability = 1 << 3
|
||||||
|
*
|
||||||
|
* Android: 0: closed; 1: opened.
|
||||||
|
*/
|
||||||
|
@Cordova
|
||||||
|
getUserNotificationSettings(): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
clearLocalNotifications(): Promise<any> { return; }
|
||||||
|
|
||||||
|
// iOS API - start
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
setBadge(badge: number): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
resetBadge(): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
setApplicationIconBadgeNumber(badge: number): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
getApplicationIconBadgeNumber(): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
addLocalNotificationForIOS(delayTime: number, content: string, badge: number, notificationId: number, extras: string): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
deleteLocalNotificationWithIdentifierKeyInIOS(identifierKey: string): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
addDismissActions(actions: Array<object>, categoryId: string): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
addNotificationActions(actions: Array<object>, categoryId: string): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
setLocation(latitude: number, longitude: number): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
startLogPageView(pageName: string): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
stopLogPageView(pageName: string): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
beginLogPageView(pageName: string, duration: number): Promise<any> { return; }
|
||||||
|
|
||||||
|
// iOS API - end
|
||||||
|
|
||||||
|
// Android API - start
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
getConnectionState(): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
setBasicPushNotificationBuilder(): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
setCustomPushNotificationBuilder(): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
clearAllNotification(): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
clearNotificationById(id: number): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
setLatestNotificationNum(num: number): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
addLocalNotification(builderId: number, content: string, title: string, notificationId: number, broadcastTime: number, extras: string): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
removeLocalNotification(notificationId: number): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
reportNotificationOpened(msgId: number): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
requestPermission(): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
setSilenceTime(startHour: number, startMinute: number, endHour: number, endMinute: number): Promise<any> { return; }
|
||||||
|
|
||||||
|
@Cordova
|
||||||
|
setPushTime(weekdays: Array<string>, startHour: number, endHour: number): Promise<any> { return; }
|
||||||
|
|
||||||
|
// Android API - end
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user