ant-design-vue
Version:
An enterprise-class UI design language and Vue-based implementation
115 lines (95 loc) • 5.33 kB
JavaScript
import { isVNode as _isVNode, createVNode as _createVNode } from "vue";
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (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 = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
var __rest = this && this.__rest || function (s, e) {
var t = {};
for (var p in s) {
if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
}
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
}
return t;
};
import { inject } from 'vue';
import classNames from '../_util/classNames';
import { defaultConfigProvider } from '../config-provider';
import LocaleReceiver from '../locale-provider/LocaleReceiver';
import DefaultEmptyImg from './empty';
import SimpleEmptyImg from './simple';
import { filterEmpty } from '../_util/props-util';
import PropTypes from '../_util/vue-types';
import { withInstall } from '../_util/type';
function _isSlot(s) {
return typeof s === 'function' || Object.prototype.toString.call(s) === '[object Object]' && !_isVNode(s);
}
var defaultEmptyImg = _createVNode(DefaultEmptyImg, null, null);
var simpleEmptyImg = _createVNode(SimpleEmptyImg, null, null);
var Empty = function Empty(props, _ref) {
var _ref$slots = _ref.slots,
slots = _ref$slots === void 0 ? {} : _ref$slots,
attrs = _ref.attrs;
var _a;
var configProvider = inject('configProvider', defaultConfigProvider);
var getPrefixCls = configProvider.getPrefixCls,
direction = configProvider.direction;
var _b = _extends(_extends({}, props), attrs),
customizePrefixCls = _b.prefixCls,
_b$image = _b.image,
image = _b$image === void 0 ? defaultEmptyImg : _b$image,
_b$description = _b.description,
description = _b$description === void 0 ? ((_a = slots.description) === null || _a === void 0 ? void 0 : _a.call(slots)) || undefined : _b$description,
imageStyle = _b.imageStyle,
_b$class = _b.class,
className = _b$class === void 0 ? '' : _b$class,
restProps = __rest(_b, ["prefixCls", "image", "description", "imageStyle", "class"]);
return _createVNode(LocaleReceiver, {
"componentName": "Empty",
"children": function children(locale) {
var _classNames;
var prefixCls = getPrefixCls('empty', customizePrefixCls);
var des = typeof description !== 'undefined' ? description : locale.description;
var alt = typeof des === 'string' ? des : 'empty';
var imageNode = null;
if (typeof image === 'string') {
imageNode = _createVNode("img", {
"alt": alt,
"src": image
}, null);
} else {
imageNode = image;
}
return _createVNode("div", _objectSpread({
"class": classNames(prefixCls, className, (_classNames = {}, _defineProperty(_classNames, "".concat(prefixCls, "-normal"), image === simpleEmptyImg), _defineProperty(_classNames, "".concat(prefixCls, "-rtl"), direction === 'rtl'), _classNames))
}, restProps), [_createVNode("div", {
"class": "".concat(prefixCls, "-image"),
"style": imageStyle
}, _isSlot(imageNode) ? imageNode : {
default: function _default() {
return [imageNode];
}
}), des && _createVNode("p", {
"class": "".concat(prefixCls, "-description")
}, _isSlot(des) ? des : {
default: function _default() {
return [des];
}
}), slots.default && _createVNode("div", {
"class": "".concat(prefixCls, "-footer")
}, [filterEmpty(slots.default())])]);
}
}, null);
};
Empty.displayName = 'AEmpty';
Empty.PRESENTED_IMAGE_DEFAULT = defaultEmptyImg;
Empty.PRESENTED_IMAGE_SIMPLE = simpleEmptyImg;
Empty.inheritAttrs = false;
Empty.props = {
prefixCls: PropTypes.string,
image: PropTypes.any,
description: PropTypes.any,
imageStyle: PropTypes.object
};
export default withInstall(Empty);