// Utils import { createNamespace, addUnit } from '../utils'; import { BORDER } from '../utils/constant'; import { route, routeProps } from '../utils/router'; // Mixins import { ChildrenMixin } from '../mixins/relation'; // Components import Info from '../info'; import Icon from '../icon'; const [createComponent, bem] = createNamespace('grid-item'); export default createComponent({ mixins: [ChildrenMixin('vanGrid')], props: { ...routeProps, dot: Boolean, text: String, icon: String, iconPrefix: String, badge: [Number, String], }, emits: ['click'], computed: { style() { const { square, gutter, columnNum } = this.parent; const percent = `${100 / columnNum}%`; const style = { flexBasis: percent, }; if (square) { style.paddingTop = percent; } else if (gutter) { const gutterValue = addUnit(gutter); style.paddingRight = gutterValue; if (this.index >= columnNum) { style.marginTop = gutterValue; } } return style; }, contentStyle() { const { square, gutter } = this.parent; if (square && gutter) { const gutterValue = addUnit(gutter); return { right: gutterValue, bottom: gutterValue, height: 'auto', }; } }, }, methods: { onClick(event) { this.$emit('click', event); route(this.$router, this); }, genIcon() { if (this.$slots.icon) { return (
{this.$slots.icon()}
); } if (this.icon) { return ( ); } }, getText() { if (this.$slots.text) { return this.$slots.text(); } if (this.text) { return {this.text}; } }, genContent() { if (this.$slots.default) { return this.$slots.default(); } return [this.genIcon(), this.getText()]; }, }, render() { const { center, border, square, gutter, direction, clickable, } = this.parent; return (
{this.genContent()}
); }, });