mirror of
https://github.com/apache/cordova-android.git
synced 2025-01-19 23:42:53 +08:00
134 lines
4.6 KiB
JavaScript
Executable File
134 lines
4.6 KiB
JavaScript
Executable File
/*
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
* or more contributor license agreements. See the NOTICE file
|
|
* distributed with this work for additional information
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
* to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance
|
|
* with the License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing,
|
|
* software distributed under the License is distributed on an
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
* KIND, either express or implied. See the License for the
|
|
* specific language governing permissions and limitations
|
|
* under the License.
|
|
*/
|
|
|
|
if (!Cordova.hasResource("notification")) {
|
|
Cordova.addResource("notification");
|
|
|
|
/**
|
|
* This class provides access to notifications on the device.
|
|
* @constructor
|
|
*/
|
|
var Notification = function() {
|
|
};
|
|
|
|
/**
|
|
* Open a native alert dialog, with a customizable title and button text.
|
|
*
|
|
* @param {String} message Message to print in the body of the alert
|
|
* @param {Function} completeCallback The callback that is called when user clicks on a button.
|
|
* @param {String} title Title of the alert dialog (default: Alert)
|
|
* @param {String} buttonLabel Label of the close button (default: OK)
|
|
*/
|
|
Notification.prototype.alert = function(message, completeCallback, title, buttonLabel) {
|
|
var _title = (title || "Alert");
|
|
var _buttonLabel = (buttonLabel || "OK");
|
|
Cordova.exec(completeCallback, null, "Notification", "alert", [message,_title,_buttonLabel]);
|
|
};
|
|
|
|
/**
|
|
* Open a native confirm dialog, with a customizable title and button text.
|
|
* The result that the user selects is returned to the result callback.
|
|
*
|
|
* @param {String} message Message to print in the body of the alert
|
|
* @param {Function} resultCallback The callback that is called when user clicks on a button.
|
|
* @param {String} title Title of the alert dialog (default: Confirm)
|
|
* @param {String} buttonLabels Comma separated list of the labels of the buttons (default: 'OK,Cancel')
|
|
*/
|
|
Notification.prototype.confirm = function(message, resultCallback, title, buttonLabels) {
|
|
var _title = (title || "Confirm");
|
|
var _buttonLabels = (buttonLabels || "OK,Cancel");
|
|
Cordova.exec(resultCallback, null, "Notification", "confirm", [message,_title,_buttonLabels]);
|
|
};
|
|
|
|
/**
|
|
* Start spinning the activity indicator on the statusbar
|
|
*/
|
|
Notification.prototype.activityStart = function() {
|
|
Cordova.exec(null, null, "Notification", "activityStart", ["Busy","Please wait..."]);
|
|
};
|
|
|
|
/**
|
|
* Stop spinning the activity indicator on the statusbar, if it's currently spinning
|
|
*/
|
|
Notification.prototype.activityStop = function() {
|
|
Cordova.exec(null, null, "Notification", "activityStop", []);
|
|
};
|
|
|
|
/**
|
|
* Display a progress dialog with progress bar that goes from 0 to 100.
|
|
*
|
|
* @param {String} title Title of the progress dialog.
|
|
* @param {String} message Message to display in the dialog.
|
|
*/
|
|
Notification.prototype.progressStart = function(title, message) {
|
|
Cordova.exec(null, null, "Notification", "progressStart", [title, message]);
|
|
};
|
|
|
|
/**
|
|
* Set the progress dialog value.
|
|
*
|
|
* @param {Number} value 0-100
|
|
*/
|
|
Notification.prototype.progressValue = function(value) {
|
|
Cordova.exec(null, null, "Notification", "progressValue", [value]);
|
|
};
|
|
|
|
/**
|
|
* Close the progress dialog.
|
|
*/
|
|
Notification.prototype.progressStop = function() {
|
|
Cordova.exec(null, null, "Notification", "progressStop", []);
|
|
};
|
|
|
|
/**
|
|
* Causes the device to blink a status LED.
|
|
*
|
|
* @param {Integer} count The number of blinks.
|
|
* @param {String} colour The colour of the light.
|
|
*/
|
|
Notification.prototype.blink = function(count, colour) {
|
|
// NOT IMPLEMENTED
|
|
};
|
|
|
|
/**
|
|
* Causes the device to vibrate.
|
|
*
|
|
* @param {Integer} mills The number of milliseconds to vibrate for.
|
|
*/
|
|
Notification.prototype.vibrate = function(mills) {
|
|
Cordova.exec(null, null, "Notification", "vibrate", [mills]);
|
|
};
|
|
|
|
/**
|
|
* Causes the device to beep.
|
|
* On Android, the default notification ringtone is played "count" times.
|
|
*
|
|
* @param {Integer} count The number of beeps.
|
|
*/
|
|
Notification.prototype.beep = function(count) {
|
|
Cordova.exec(null, null, "Notification", "beep", [count]);
|
|
};
|
|
|
|
Cordova.addConstructor(function() {
|
|
if (typeof navigator.notification === "undefined") {
|
|
navigator.notification = new Notification();
|
|
}
|
|
});
|
|
}
|