notification.js 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. (function init(notifyLib) {
  2. //(function initWebNotification(notifyLib) {
  3. 'use strict';
  4. app.factory("deskNotification", function onCreateService() {
  5. var service = {};
  6. service.allowRequest = true;
  7. Object.defineProperty(service, 'permissionGranted', {
  8. get: function getPermission() {
  9. var permission = notifyLib.permissionLevel();
  10. var permissionGranted = false;
  11. if (permission === notifyLib.PERMISSION_GRANTED) {
  12. permissionGranted = true;
  13. }
  14. return permissionGranted;
  15. }
  16. });
  17. var isEnabled = function () {
  18. var enabled = notifyLib.isSupported;
  19. if (enabled) {
  20. enabled = service.permissionGranted;
  21. }
  22. return enabled;
  23. };
  24. var createAndDisplayNotification = function (title, options) {
  25. var autoClose = 0;
  26. if (options && options.autoClose && (typeof options.autoClose === 'number')) {
  27. autoClose = options.autoClose;
  28. }
  29. notifyLib.config({
  30. autoClose: autoClose
  31. });
  32. var notification = notifyLib.createNotification(title, options);
  33. //add onclick handler
  34. if (options.onClick && notification && notification.webNotification) {
  35. notification.webNotification.onclick = options.onClick;
  36. }
  37. return function hideNotification() {
  38. notification.close();
  39. };
  40. };
  41. var parseInput = function (argumentsArray) {
  42. //callback is always the last argument
  43. var callback = argumentsArray.pop();
  44. var title = null;
  45. var options = null;
  46. if (argumentsArray.length === 2) {
  47. title = argumentsArray[0];
  48. options = argumentsArray[1];
  49. } else if (argumentsArray.length === 1) {
  50. var value = argumentsArray.pop();
  51. if (typeof value === 'string') {
  52. title = value;
  53. options = {};
  54. } else {
  55. title = '';
  56. options = value;
  57. }
  58. }
  59. //set defaults
  60. title = title || '';
  61. options = options || {};
  62. return {
  63. callback: callback,
  64. title: title,
  65. options: options
  66. };
  67. };
  68. service.showNotification = function () {
  69. //convert to array to enable modifications
  70. var argumentsArray = Array.prototype.slice.call(arguments, 0);
  71. if ((argumentsArray.length >= 1) && (argumentsArray.length <= 3)) {
  72. var data = parseInput(argumentsArray);
  73. //get values
  74. var callback = data.callback;
  75. var title = data.title;
  76. var options = data.options;
  77. var hideNotification = null;
  78. if (isEnabled()) {
  79. hideNotification = createAndDisplayNotification(title, options);
  80. callback(null, hideNotification);
  81. } else if (service.allowRequest) {
  82. notifyLib.requestPermission(function onRequestDone() {
  83. if (isEnabled()) {
  84. hideNotification = createAndDisplayNotification(title, options);
  85. callback(null, hideNotification);
  86. } else {
  87. callback(new Error('Notifications are not enabled.'), null);
  88. }
  89. });
  90. } else {
  91. callback(new Error('Notifications are not enabled.'), null);
  92. }
  93. }
  94. };
  95. return service;
  96. });
  97. }(window.notify));