Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
cordova-plugin-local-notifications
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nabil Sadki
cordova-plugin-local-notifications
Commits
cbe4f5ba
Commit
cbe4f5ba
authored
Jan 03, 2015
by
Sebastián Katzer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Schedule multiple notifications at once (iOS)
parent
9bcabe5a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
37 additions
and
35 deletions
+37
-35
CHANGELOG.md
CHANGELOG.md
+1
-1
APPLocalNotification.m
src/ios/APPLocalNotification.m
+13
-16
local-notification.js
www/local-notification.js
+23
-18
No files found.
CHANGELOG.md
View file @
cbe4f5ba
...
...
@@ -9,7 +9,7 @@
-
[
enhancement:
]
Scope parameter for
`isScheduled`
and
`getScheduledIds`
-
[
enhancement:
]
Callbacks for
`add`
,
`cancel`
&
`cancelAll`
-
[
enhancement:
]
`image:`
accepts remote URLs and local URIs (Android)
-
[
enhancement:
]
Schedule multiple notifications at once
(Android)
-
[
enhancement:
]
Schedule multiple notifications at once
-
[
enhancement:
]
Cancel multiple notifications at once
-
[
enhancement:
]
Clear multiple notifications at once (Android)
-
[
enhancement:
]
`clear`
&
`clearAll`
methods (Android)
...
...
src/ios/APPLocalNotification.m
View file @
cbe4f5ba
...
...
@@ -62,41 +62,38 @@
}
/**
* Schedule a
new local notification
.
* Schedule a
set of notifications
.
*
* @param properties
* A dict of properties
* A dict of properties
for each notification
*/
-
(
void
)
add
:(
CDVInvokedUrlCommand
*
)
command
{
[
self
.
commandDelegate
runInBackground
:
^
{
NSDictionary
*
options
=
[[
command
arguments
]
objectAtIndex
:
0
]
;
for
(
NSDictionary
*
options
in
command
.
arguments
)
{
UILocalNotification
*
notification
;
UILocalNotification
*
notification
;
notification
=
[[
UILocalNotification
alloc
]
initWithOptions
:
options
];
notification
=
[[
UILocalNotification
alloc
]
initWithOptions
:
options
];
[
self
scheduleLocalNotification
:
notification
];
[
self
fireEvent
:
@"add"
localNotification
:
notification
];
}
[
self
scheduleLocalNotification
:
notification
];
[
self
fireEvent
:
@"add"
localNotification
:
notification
];
[
self
execCallback
:
command
];
}];
}
/**
* Cancel
s a given local notification
.
* Cancel
a set of notifications
.
*
* @param id
* The ID
of the local notification
* @param id
s
* The ID
s of the notifications
*/
-
(
void
)
cancel
:(
CDVInvokedUrlCommand
*
)
command
{
[
self
.
commandDelegate
runInBackground
:
^
{
NSArray
*
ids
=
[[
command
arguments
]
objectAtIndex
:
0
];
for
(
NSString
*
id
in
ids
)
{
for
(
NSString
*
id
in
command
.
arguments
)
{
UILocalNotification
*
notification
;
notification
=
[[
UIApplication
sharedApplication
]
...
...
www/local-notification.js
View file @
cbe4f5ba
...
...
@@ -104,29 +104,28 @@ exports.setDefaults = function (newDefaults) {
* A function to be called after the notification has been canceled
* @param {Object} scope
* The scope for the callback function
*
* @return {Number}
* The notification's ID
*/
exports
.
add
=
function
(
props
,
callback
,
scope
)
{
var
options
=
this
.
mergeWithDefaults
(
props
),
fn
=
this
.
createCallbackFn
(
callback
,
scope
);
this
.
registerPermission
(
function
(
granted
)
{
this
.
convertOptions
(
options
);
if
(
!
granted
)
return
;
if
([
'WinCE'
,
'Win32NT'
].
indexOf
(
device
.
platform
)
>
-
1
)
{
fn
=
function
(
cmd
)
{
eval
(
cmd
);
};
}
var
notifications
=
Array
.
isArray
(
props
)
?
props
:
[
props
];
this
.
registerPermission
(
function
(
granted
)
{
if
(
granted
)
{
this
.
exec
(
'add'
,
options
,
callback
,
scope
);
for
(
var
i
=
0
;
i
<
notifications
.
length
;
i
++
)
{
var
properties
=
notifications
[
i
];
this
.
mergeWithDefaults
(
properties
);
this
.
convertProperties
(
properties
);
}
},
this
);
return
options
.
id
;
if
(
device
.
platform
!=
'iOS'
)
{
notifications
=
notifications
[
0
];
}
this
.
exec
(
'add'
,
notifications
,
callback
,
scope
);
},
this
);
};
/**
...
...
@@ -519,7 +518,7 @@ exports.mergeWithDefaults = function (options) {
* @retrun {Object}
* The converted property list
*/
exports
.
convert
Option
s
=
function
(
options
)
{
exports
.
convert
Propertie
s
=
function
(
options
)
{
if
(
options
.
id
)
{
options
.
id
=
options
.
id
.
toString
();
}
...
...
@@ -618,7 +617,13 @@ exports.createCallbackFn = function (callbackFn, scope) {
*/
exports
.
exec
=
function
(
action
,
args
,
callback
,
scope
)
{
var
fn
=
this
.
createCallbackFn
(
callback
,
scope
),
params
=
args
?
[
args
]
:
[];
params
=
[];
if
(
Array
.
isArray
(
args
))
{
params
=
args
;
}
else
if
(
args
)
{
params
.
push
(
args
);
}
exec
(
fn
,
null
,
'LocalNotification'
,
action
,
params
);
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment