vantui-edit
Version:
一套适用于Taro3及React的vantui组件库
49 lines (45 loc) • 2.54 kB
JavaScript
import _defineProperty from "@babel/runtime/helpers/defineProperty";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["image", "description", "renderImage", "renderDescription", "style", "className", "children"];
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; }
import { View, Image } from '@tarojs/components';
import * as computed from './wxs';
import { jsx as _jsx } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
export function Empty(props) {
var _props$image = props.image,
image = _props$image === void 0 ? 'default' : _props$image,
description = props.description,
renderImage = props.renderImage,
renderDescription = props.renderDescription,
style = props.style,
className = props.className,
children = props.children,
others = _objectWithoutProperties(props, _excluded);
return /*#__PURE__*/_jsxs(View, _objectSpread(_objectSpread({
className: " van-empty ".concat(className),
style: style
}, others), {}, {
children: [/*#__PURE__*/_jsx(View, {
className: "van-empty__image",
children: renderImage
}), /*#__PURE__*/_jsx(View, {
className: "van-empty__image",
children: image && /*#__PURE__*/_jsx(Image, {
className: "van-empty__image__img",
src: computed.imageUrl(image)
})
}), /*#__PURE__*/_jsx(View, {
className: "van-empty__description",
children: renderDescription
}), /*#__PURE__*/_jsx(View, {
className: "van-empty__description",
children: description
}), /*#__PURE__*/_jsx(View, {
className: "van-empty__bottom",
children: children
})]
}));
}
export default Empty;