Skip to content

Commit

Permalink
feat(deeplinks): Add Ionic Deeplinks Plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
mlynch committed Jun 9, 2016
1 parent 4875f66 commit c93cbed
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import {Clipboard} from './plugins/clipboard';
import {Contacts} from './plugins/contacts';
import {DatePicker} from './plugins/datepicker';
import {DBMeter} from './plugins/dbmeter';
import {Deeplinks} from './plugins/deeplinks';
import {Device} from './plugins/device';
import {DeviceAccounts} from './plugins/deviceaccounts';
import {DeviceMotion} from './plugins/devicemotion';
Expand Down Expand Up @@ -85,6 +86,7 @@ export {
Contacts,
DatePicker,
DBMeter,
Deeplinks,
Device,
DeviceAccounts,
DeviceMotion,
Expand Down Expand Up @@ -148,6 +150,7 @@ window['IonicNative'] = {
Contacts: Contacts,
DatePicker: DatePicker,
DBMeter: DBMeter,
Deeplinks: Deeplinks,
Device: Device,
DeviceAccounts: DeviceAccounts,
DeviceMotion: DeviceMotion,
Expand Down
74 changes: 74 additions & 0 deletions src/plugins/deeplinks.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
import {Plugin, Cordova} from './plugin';
import {Observable} from 'rxjs/Observable';

export interface DeeplinkMatch {
/**
* The route info for the matched route
*/
routeInfo: any;

/**
* The arguments passed to the route through GET params along with
* any internal native data available as "extras" at the time
* the route was matched (for example, Facebook sometimes adds extra data)
*/
args: any;
}

/**
* @name Ionic Deeplinks
* @description This plugin handles deeplinks on iOS and Android for both custom URL scheme links
* and Universal App Links.
*
* @usage
* ```ts
* import {IonicDeeplinks} from 'ionic-native';
*
* ```
*/
@Plugin({
plugin: 'ionic-plugin-deeplinks',
pluginRef: 'IonicDeeplink',
repo: 'https://github.com/driftyo/ionic-plugin-deeplinks',
platforms: ['iOS', 'Android']
})
export class Deeplinks {

/**
* Define a set of paths to match against incoming deeplinks.
*
* @param {paths} Define a set of paths to match against incoming deeplinks.
* paths takes an object of the form { 'path': data }. If a deeplink
* matches the path, the resulting path-data pair will be returned in the
* promise result which you can then use to navigate in the app as you see fit.
* @returns {Promise} Returns a Promise that resolves when a deeplink comes through, and
* is rejected if a deeplink comes through that does not match a given path.
*/
@Cordova({
observable: true
})
static route(paths): Observable<DeeplinkMatch> {return; }

/**
*
* This is a convenience version of `route` that takes a reference to a NavController
* from Ionic 2, or a custom class that conforms to this protocol:
*
* NavController.push = function(View, Params){}
*
* This handler will automatically navigate when a route matches. If you need finer-grained
* control over the behavior of a matching deeplink, use the plain `route` method.
*
* @param {paths} Define a set of paths to match against incoming deeplinks.
* paths takes an object of the form { 'path': data }. If a deeplink
* matches the path, the resulting path-data pair will be returned in the
* promise result which you can then use to navigate in the app as you see fit.
*
* @returns {Promise} Returns a Promise that resolves when a deeplink comes through, and
* is rejected if a deeplink comes through that does not match a given path.
*/
@Cordova({
observable: true
})
static routeWithNavController(navController, paths): Observable<DeeplinkMatch> {return; }
}

0 comments on commit c93cbed

Please sign in to comment.