primevue
Version:
PrimeVue is an open source UI library for Vue featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBloc
138 lines (132 loc) • 4.83 kB
JavaScript
import { uuid } from '@primeuix/utils';
import Dialog from 'primevue/dialog';
import DynamicDialogEventBus from 'primevue/dynamicdialogeventbus';
import BaseComponent from '@primevue/core/basecomponent';
import DynamicDialogStyle from 'primevue/dynamicdialog/style';
import { resolveComponent, createElementBlock, openBlock, Fragment, renderList, createBlock, mergeProps, createSlots, withCtx, resolveDynamicComponent } from 'vue';
var script$1 = {
name: 'BaseDynamicDialog',
"extends": BaseComponent,
props: {},
style: DynamicDialogStyle,
provide: function provide() {
return {
$pcDynamicDialog: this,
$parentInstance: this
};
}
};
var script = {
name: 'DynamicDialog',
"extends": script$1,
inheritAttrs: false,
data: function data() {
return {
instanceMap: {}
};
},
openListener: null,
closeListener: null,
currentInstance: null,
mounted: function mounted() {
var _this = this;
this.openListener = function (_ref) {
var instance = _ref.instance;
var key = uuid() + '_dynamic_dialog';
instance.visible = true;
instance.key = key;
_this.instanceMap[key] = instance;
};
this.closeListener = function (_ref2) {
var instance = _ref2.instance,
params = _ref2.params;
var key = instance.key;
var currentInstance = _this.instanceMap[key];
if (currentInstance) {
currentInstance.visible = false;
currentInstance.options.onClose && currentInstance.options.onClose({
data: params,
type: 'config-close'
});
_this.currentInstance = currentInstance;
}
};
DynamicDialogEventBus.on('open', this.openListener);
DynamicDialogEventBus.on('close', this.closeListener);
},
beforeUnmount: function beforeUnmount() {
DynamicDialogEventBus.off('open', this.openListener);
DynamicDialogEventBus.off('close', this.closeListener);
},
methods: {
onDialogHide: function onDialogHide(instance) {
!this.currentInstance && instance.options.onClose && instance.options.onClose({
type: 'dialog-close'
});
},
onDialogAfterHide: function onDialogAfterHide(instance) {
this.currentInstance && delete this.currentInstance;
this.currentInstance = null;
delete this.instanceMap[instance.key];
},
getTemplateItems: function getTemplateItems(template) {
return Array.isArray(template) ? template : [template];
}
},
components: {
DDialog: Dialog
}
};
function render(_ctx, _cache, $props, $setup, $data, $options) {
var _component_DDialog = resolveComponent("DDialog");
return openBlock(true), createElementBlock(Fragment, null, renderList($data.instanceMap, function (instance, key) {
return openBlock(), createBlock(_component_DDialog, mergeProps({
key: key,
visible: instance.visible,
"onUpdate:visible": function onUpdateVisible($event) {
return instance.visible = $event;
},
_instance: instance,
ref_for: true
}, instance.options.props, {
onHide: function onHide($event) {
return $options.onDialogHide(instance);
},
onAfterHide: function onAfterHide($event) {
return $options.onDialogAfterHide(instance);
}
}), createSlots({
"default": withCtx(function () {
return [(openBlock(), createBlock(resolveDynamicComponent(instance.content), mergeProps({
ref_for: true
}, instance.options.emits), null, 16))];
}),
_: 2
}, [instance.options.templates && instance.options.templates.header ? {
name: "header",
fn: withCtx(function () {
return [(openBlock(true), createElementBlock(Fragment, null, renderList($options.getTemplateItems(instance.options.templates.header), function (header, index) {
return openBlock(), createBlock(resolveDynamicComponent(header), mergeProps({
key: index + '_header',
ref_for: true
}, instance.options.emits), null, 16);
}), 128))];
}),
key: "0"
} : undefined, instance.options.templates && instance.options.templates.footer ? {
name: "footer",
fn: withCtx(function () {
return [(openBlock(true), createElementBlock(Fragment, null, renderList($options.getTemplateItems(instance.options.templates.footer), function (footer, index) {
return openBlock(), createBlock(resolveDynamicComponent(footer), mergeProps({
key: index + '_footer',
ref_for: true
}, instance.options.emits), null, 16);
}), 128))];
}),
key: "1"
} : undefined]), 1040, ["visible", "onUpdate:visible", "_instance", "onHide", "onAfterHide"]);
}), 128);
}
script.render = render;
export { script as default };
//# sourceMappingURL=index.mjs.map