dialog.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. 'use strict';
  2. var __assign =
  3. (this && this.__assign) ||
  4. function () {
  5. __assign =
  6. Object.assign ||
  7. function (t) {
  8. for (var s, i = 1, n = arguments.length; i < n; i++) {
  9. s = arguments[i];
  10. for (var p in s) {
  11. if (Object.prototype.hasOwnProperty.call(s, p)) {
  12. t[p] = s[p];
  13. }
  14. }
  15. }
  16. return t;
  17. };
  18. return __assign.apply(this, arguments);
  19. };
  20. Object.defineProperty(exports, '__esModule', {
  21. value: true
  22. });
  23. var queue = [];
  24. function getContext() {
  25. var pages = getCurrentPages();
  26. return pages[pages.length - 1];
  27. }
  28. var Dialog = function (options) {
  29. options = __assign(__assign({}, Dialog.currentOptions), options);
  30. return new Promise(function (resolve, reject) {
  31. var context = options.context || getContext();
  32. var dialog = context.zpSelectComponent(options.selector);
  33. delete options.context;
  34. delete options.selector;
  35. if (dialog) {
  36. dialog.setData(
  37. __assign(
  38. {
  39. onCancel: reject,
  40. onConfirm: resolve
  41. },
  42. options
  43. )
  44. );
  45. queue.push(dialog);
  46. } else {
  47. console.warn('未找到 van-dialog 节点,请确认 selector 及 context 是否正确');
  48. }
  49. });
  50. };
  51. Dialog.defaultOptions = {
  52. show: true,
  53. title: '',
  54. width: null,
  55. message: '',
  56. zIndex: 100,
  57. overlay: true,
  58. selector: '#van-dialog',
  59. className: '',
  60. asyncClose: false,
  61. transition: 'scale',
  62. customStyle: '',
  63. messageAlign: '',
  64. overlayStyle: '',
  65. confirmButtonText: '确认',
  66. cancelButtonText: '取消',
  67. showConfirmButton: true,
  68. showCancelButton: false,
  69. closeOnClickOverlay: false,
  70. confirmButtonOpenType: ''
  71. };
  72. Dialog.alert = Dialog;
  73. Dialog.confirm = function (options) {
  74. return Dialog(
  75. __assign(
  76. {
  77. showCancelButton: true
  78. },
  79. options
  80. )
  81. );
  82. };
  83. Dialog.close = function () {
  84. queue.forEach(function (dialog) {
  85. dialog.close();
  86. });
  87. queue = [];
  88. };
  89. Dialog.stopLoading = function () {
  90. queue.forEach(function (dialog) {
  91. dialog.stopLoading();
  92. });
  93. };
  94. Dialog.setDefaultOptions = function (options) {
  95. Object.assign(Dialog.currentOptions, options);
  96. };
  97. Dialog.resetDefaultOptions = function () {
  98. Dialog.currentOptions = __assign({}, Dialog.defaultOptions);
  99. };
  100. Dialog.resetDefaultOptions();
  101. exports.default = Dialog;