123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- var __create = Object.create;
- var __defProp = Object.defineProperty;
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
- var __getOwnPropNames = Object.getOwnPropertyNames;
- var __getProtoOf = Object.getPrototypeOf;
- var __hasOwnProp = Object.prototype.hasOwnProperty;
- var __export = (target, all) => {
- for (var name in all)
- __defProp(target, name, { get: all[name], enumerable: true });
- };
- var __copyProps = (to, from, except, desc) => {
- if (from && typeof from === "object" || typeof from === "function") {
- for (let key of __getOwnPropNames(from))
- if (!__hasOwnProp.call(to, key) && key !== except)
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
- }
- return to;
- };
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
- // If the importer is in node compatibility mode or this is not an ESM
- // file that has been converted to a CommonJS file using a Babel-
- // compatible transform (i.e. "__esModule" has not been set), then set
- // "default" to the CommonJS "module.exports" for node compatibility.
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
- mod
- ));
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
- var stdin_exports = {};
- __export(stdin_exports, {
- closeDialog: () => closeDialog,
- resetDialogDefaultOptions: () => resetDialogDefaultOptions,
- setDialogDefaultOptions: () => setDialogDefaultOptions,
- showConfirmDialog: () => showConfirmDialog,
- showDialog: () => showDialog
- });
- module.exports = __toCommonJS(stdin_exports);
- var import_vue = require("vue");
- var import_utils = require("../utils");
- var import_mount_component = require("../utils/mount-component");
- var import_Dialog = __toESM(require("./Dialog"));
- let instance;
- const DEFAULT_OPTIONS = {
- title: "",
- width: "",
- theme: null,
- message: "",
- overlay: true,
- callback: null,
- teleport: "body",
- className: "",
- allowHtml: false,
- lockScroll: true,
- transition: void 0,
- beforeClose: null,
- overlayClass: "",
- overlayStyle: void 0,
- messageAlign: "",
- cancelButtonText: "",
- cancelButtonColor: null,
- cancelButtonDisabled: false,
- confirmButtonText: "",
- confirmButtonColor: null,
- confirmButtonDisabled: false,
- showConfirmButton: true,
- showCancelButton: false,
- closeOnPopstate: true,
- closeOnClickOverlay: false
- };
- let currentOptions = (0, import_utils.extend)({}, DEFAULT_OPTIONS);
- function initInstance() {
- const Wrapper = {
- setup() {
- const {
- state,
- toggle
- } = (0, import_mount_component.usePopupState)();
- return () => (0, import_vue.createVNode)(import_Dialog.default, (0, import_vue.mergeProps)(state, {
- "onUpdate:show": toggle
- }), null);
- }
- };
- ({
- instance
- } = (0, import_mount_component.mountComponent)(Wrapper));
- }
- function showDialog(options) {
- if (!import_utils.inBrowser) {
- return Promise.resolve(void 0);
- }
- return new Promise((resolve, reject) => {
- if (!instance) {
- initInstance();
- }
- instance.open((0, import_utils.extend)({}, currentOptions, options, {
- callback: (action) => {
- (action === "confirm" ? resolve : reject)(action);
- }
- }));
- });
- }
- const setDialogDefaultOptions = (options) => {
- (0, import_utils.extend)(currentOptions, options);
- };
- const resetDialogDefaultOptions = () => {
- currentOptions = (0, import_utils.extend)({}, DEFAULT_OPTIONS);
- };
- const showConfirmDialog = (options) => showDialog((0, import_utils.extend)({
- showCancelButton: true
- }, options));
- const closeDialog = () => {
- if (instance) {
- instance.toggle(false);
- }
- };
|