- Posts: 36
- Thank you received: 0
angular.module('starter', [])
.run(function($ionicPlatform) {
$ionicPlatform.ready(function() {
// Hide the accessory bar by default (remove this to show the accessory bar above the keyboard
// for form inputs)
if (window.cordova && window.cordova.plugins.Keyboard) {
cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
}
if (window.StatusBar) {
// org.apache.cordova.statusbar required
StatusBar.styleDefault();
}
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
angular.module('starter', ['ionic', ...,'ngCordova'])
.run(function($log, $cordovaPush, $rootScope, $http, $ionicPlatform) {
var androidConfig, iosConfig, register;
androidConfig = {
"senderID": " "
};
iosConfig = {
"badge": true,
"sound": true,
"alert": true
};
function register(token, user_id, success, failure) {
var platform = (ionic.Platform.isWebView()) ? ionic.Platform.platform() : 'generic';
$http({
method: 'POST',
url: '{apppath}/appi/put/push/register',
data: {
token: token,
appcode: {appcode}, // as declared under jBackend
platform: platform,
user_id: user_id
}
}).then(function(response) {
success(response.data);
}, function(response) {
failure(response.data, response.status);
});
}
return $ionicPlatform.ready(function() {
if (ionic.Platform.isAndroid()) {
$cordovaPush.register(androidConfig).then(function(result) {
$log.debug('android push notification registration success', result);
}, function(err) {
$log.error('android push notification registration error', err);
});
return $rootScope.$on('$cordovaPush:notificationReceived', function(event, notification) {
switch (notification.event) {
case 'registered':
if (!notification.regid.length) {
return;
}
$log.debug('registration ID', notification.regid);
register('Android', notification.regid).success(function() {
return $log.info('Push notif Token stored');
});
break;
case 'message':
$log.debug('Push notif message', notification);
if (notification.foreground) { // If your user is using the app
// Do something like opening the Post within the app
// You have access to
// notification.payload.id which is the new Post ID
// notification.payload.message which is the new Post Title
} else { // If your user has clicked on the notification
// Do something like opening the Post within the app
// You have access to
// notification.payload.id which is the new Post ID
// notification.payload.message which is the new Post Title
}
break;
case 'error':
$log.debug('Push notif error', notification);
break;
}
});
} else if (ionic.Platform.isIOS()) {
$cordovaPush.register(iosConfig).then(function(deviceToken) {
register('iOS', deviceToken).success(function() {
return $log.info('Push notif Token stored');
});
$log.debug('iOS push notification registration success', deviceToken);
}, function(err) {
$log.error('iOS push notification registration error', err);
});
return $rootScope.$on('$cordovaPush:notificationReceived', function(event, notification) {
$log.debug('Push notif message', notification);
if (notification.alert) {
if (notification.foreground) { // If your user is using the app
// Do something like opening the Post within the app
// You have access to
// notification.id which is the new Post ID
// notification.alert which is the new Post Title
} else { // If your user has clicked on the notification
// Do something like opening the Post within the app
// You have access to
// notification.id which is the new Post ID
// notification.alert which is the new Post Title
}
}
..
.run(function($ionicPlatform) {
$ionicPlatform.ready(function() {
// Hide the accessory bar by default (remove this to show the accessory bar above the keyboard
// for form inputs)
if (window.cordova && window.cordova.plugins.Keyboard) {
cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
}
if (window.StatusBar) {
// org.apache.cordova.statusbar required
StatusBar.styleDefault();
...
}
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.