Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(vibes-push-plugin): add Vibes Push plugin wrapper #3368

Merged
merged 1 commit into from
May 5, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
136 changes: 136 additions & 0 deletions src/@ionic-native/plugins/vibes/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,136 @@
import { Injectable } from '@angular/core';
import { Plugin, Cordova, IonicNativePlugin } from '@ionic-native/core';
import { Observable } from 'rxjs';

export interface DeviceResponse {
device_id?: string;
}

export interface DeviceInfoResponse extends DeviceResponse {
push_token?: string;
}

export interface PersonResponse {
person_key?: string;
mdn?: string;
external_person_id?: string;
}

/**
* @name Vibes
* @description
* This plugin enables integration with the Vibes Push SDK to your Cordova project with Android and iOS supported.
*
* @usage
* ```typescript
* import { Vibes } from '@ionic-native/vibes/ngx';
*
*
* constructor(private vibes: Vibes) { }
*
* ...
*
*
* this.vibes.registerDevice()
* .then((res: any) => console.log(`device registration success: ${res}`)) // retrieve and save the device_id from `res` JSON object
* .catch((error: any) => console.error('Error registering device', error));
*
* this.vibes.registerPush()
* .then((res: any) => console.log(res))
* .catch((error: any) => console.error('Error registering push', error));
*
* this.vibes.getVibesDeviceInfo()
* .then((res: any) => console.log(res)) // retrieve the `device_id` and `push_token` from the JSON object
* .catch((error: any) => console.error('Error retrieving deviceinfo push', error));
*
* ```
*/
@Plugin({
pluginName: 'Vibes',
plugin: 'vibes-cordova',
pluginRef: 'Vibes',
repo: 'https://github.com/vibes/vibes-cordova.git',
install: 'ionic cordova plugin add vibes-cordova --variable VIBES_APP_ID=MY_APP_ID --variable VIBES_API_URL=MY_ENVIRONMENT_URL',
installVariables: [
'VIBES_APP_ID',
'VIBES_API_URL'
],
platforms: ['Android', 'iOS']
})
@Injectable()
export class Vibes extends IonicNativePlugin {

/**
* Register device
* @return {Promise<DeviceResponse>}
*/
@Cordova()
registerDevice(): Promise<DeviceResponse> {
return;
}

/**
* Unregister device
* @return {Promise<void>}
*/
@Cordova()
unregisterDevice(): Promise<void> {
return;
}

/**
* Associate person
* @param {string} externalPersonId
* @return {Promise<void>}
*/
@Cordova()
associatePerson(externalPersonId: string): Promise<void> {
return;
}

/**
* Register push
* @return {Promise<void>}
*/
@Cordova()
registerPush(): Promise<void> {
return;
}

/**
* Unregister push
* @return {Promise<void>}
*/
@Cordova()
unregisterPush(): Promise<void> {
return;
}
/**
* getVibesDeviceInfo
* @return {Promise<DeviceInfoResponse>}
*/
@Cordova()
getVibesDeviceInfo(): Promise<DeviceInfoResponse> {
return;
}

/**
* getPerson
* @return {Promise<PersonResponse>}
*/
@Cordova()
getPerson(): Promise<PersonResponse> {
return;
}

/**
* Get notified when the user opens a notification
* @return {Observable<void>}
*/
@Cordova({
observable: true
})
onNotificationOpened(): Observable<void> {
return;
}
}