xdesign-vue-next
Version:
XDesign Component for vue-next
130 lines (126 loc) • 4.67 kB
JavaScript
/**
* xdesign v1.0.6
* (c) 2023 xdesign
* @license MIT
*/
import _defineProperty from '@babel/runtime/helpers/defineProperty';
import { defineComponent, ref, computed, createVNode, mergeProps } from 'vue';
import _Notification from './notification.js';
import { PLACEMENT_OFFSET, DEFAULT_Z_INDEX, DISTANCE } from './const.js';
import { usePrefixClass } from '../hooks/useConfig.js';
import '../_chunks/dep-ae5efda0.js';
import '../_chunks/dep-2f5ed418.js';
import '../_chunks/dep-b09ff084.js';
import 'lodash/isFunction';
import '../hooks/tnode.js';
import 'lodash/camelCase';
import 'lodash/kebabCase';
import '../utils/render-tnode.js';
import 'lodash/isEmpty';
import 'lodash/isString';
import 'lodash/isObject';
import './props.js';
import './animate.js';
import '../config-provider/useConfig.js';
import 'lodash/cloneDeep';
import '../config-provider/context.js';
import 'lodash/mergeWith';
import 'lodash/merge';
import '../_common/js/global-config/default-config.js';
import '../_common/js/global-config/locale/en_US.js';
import '../_chunks/dep-3a1cce9f.js';
import 'lodash/isArray';
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
var NotificationList = defineComponent({
props: {
placement: {
type: String,
"default": "top-right",
validator: function validator(v) {
return ["top-left", "top-right", "bottom-left", "bottom-right"].indexOf(v) > -1;
}
}
},
setup: function setup(props, _ref) {
var expose = _ref.expose;
var COMPONENT_NAME = usePrefixClass("notification-list");
var placement = props.placement;
var list = ref([]);
var notificationList = ref([]);
var styles = computed(function () {
return _objectSpread({
zIndex: DEFAULT_Z_INDEX
}, PLACEMENT_OFFSET[placement]);
});
var add = function add(options) {
list.value.push(options);
return list.value.length - 1;
};
var remove = function remove(index) {
list.value.splice(index, 1);
};
var removeAll = function removeAll() {
list.value = [];
};
var getOffset = function getOffset(val) {
if (!val) return;
return isNaN(Number(val)) ? val : "".concat(val, "px");
};
var notificationStyles = function notificationStyles(item) {
var styles2 = {
marginBottom: DISTANCE
};
if (item.offset) {
styles2.position = "relative";
styles2.left = getOffset(item.offset[0]);
styles2.top = getOffset(item.offset[1]);
}
if (item.zIndex) styles2["z-index"] = item.zIndex;
return styles2;
};
var getProps = function getProps(index, item) {
return _objectSpread(_objectSpread({}, item), {}, {
onCloseBtnClick: function onCloseBtnClick(e) {
if (item.onCloseBtnClick) {
item.onCloseBtnClick(e);
}
return remove(index);
},
onDurationEnd: function onDurationEnd() {
if (item.onDurationEnd) {
item.onDurationEnd();
}
return remove(index);
}
});
};
var addChild = function addChild(el) {
if (el) {
notificationList.value.push(el);
}
};
expose({
add: add,
remove: remove,
removeAll: removeAll,
list: list,
notificationList: notificationList
});
return function () {
if (!list.value.length) return;
return createVNode("div", {
"class": "".concat(COMPONENT_NAME.value, "__show"),
"style": styles.value
}, [list.value.map(function (item, index) {
return createVNode(_Notification, mergeProps({
"ref": addChild,
"key": item.id,
"style": notificationStyles(item)
}, getProps(index, item)), null);
})]);
};
}
});
export { NotificationList as default };
//# sourceMappingURL=notificationList.js.map