xdesign-vue-next
Version:
XDesign Component for vue-next
138 lines (130 loc) • 5.08 kB
JavaScript
/**
* xdesign v1.0.6
* (c) 2023 xdesign
* @license MIT
*/
;
Object.defineProperty(exports, '__esModule', { value: true });
var _defineProperty = require('@babel/runtime/helpers/defineProperty');
var vue = require('vue');
var notification_notification = require('./notification.js');
var notification_const = require('./const.js');
var hooks_useConfig = require('../hooks/useConfig.js');
require('../_chunks/dep-ac484abb.js');
require('../_chunks/dep-0e9e4ce6.js');
require('../_chunks/dep-38e8405e.js');
require('lodash/isFunction');
require('../hooks/tnode.js');
require('lodash/camelCase');
require('lodash/kebabCase');
require('../utils/render-tnode.js');
require('lodash/isEmpty');
require('lodash/isString');
require('lodash/isObject');
require('./props.js');
require('./animate.js');
require('../config-provider/useConfig.js');
require('lodash/cloneDeep');
require('../config-provider/context.js');
require('lodash/mergeWith');
require('lodash/merge');
require('../_common/js/global-config/default-config.js');
require('../_common/js/global-config/locale/en_US.js');
require('../_chunks/dep-8d10b59f.js');
require('lodash/isArray');
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
var _defineProperty__default = /*#__PURE__*/_interopDefaultLegacy(_defineProperty);
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__default["default"](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 = vue.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 = hooks_useConfig.usePrefixClass("notification-list");
var placement = props.placement;
var list = vue.ref([]);
var notificationList = vue.ref([]);
var styles = vue.computed(function () {
return _objectSpread({
zIndex: notification_const.DEFAULT_Z_INDEX
}, notification_const.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: notification_const.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 vue.createVNode("div", {
"class": "".concat(COMPONENT_NAME.value, "__show"),
"style": styles.value
}, [list.value.map(function (item, index) {
return vue.createVNode(notification_notification["default"], vue.mergeProps({
"ref": addChild,
"key": item.id,
"style": notificationStyles(item)
}, getProps(index, item)), null);
})]);
};
}
});
exports["default"] = NotificationList;
//# sourceMappingURL=notificationList.js.map