mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
88 lines
1.8 KiB
JavaScript
88 lines
1.8 KiB
JavaScript
import { createNamespace } from '../utils';
|
|
import { ParentMixin } from '../mixins/relation';
|
|
|
|
const [createComponent, bem] = createNamespace('row');
|
|
|
|
export default createComponent({
|
|
mixins: [ParentMixin('vanRow')],
|
|
|
|
props: {
|
|
type: String,
|
|
align: String,
|
|
justify: String,
|
|
tag: {
|
|
type: String,
|
|
default: 'div',
|
|
},
|
|
gutter: {
|
|
type: [Number, String],
|
|
default: 0,
|
|
},
|
|
},
|
|
|
|
computed: {
|
|
spaces() {
|
|
const gutter = Number(this.gutter);
|
|
|
|
if (!gutter) {
|
|
return;
|
|
}
|
|
|
|
const spaces = [];
|
|
const groups = [[]];
|
|
|
|
let totalSpan = 0;
|
|
this.children.forEach((item, index) => {
|
|
totalSpan += Number(item.span);
|
|
|
|
if (totalSpan > 24) {
|
|
groups.push([index]);
|
|
totalSpan -= 24;
|
|
} else {
|
|
groups[groups.length - 1].push(index);
|
|
}
|
|
});
|
|
|
|
groups.forEach((group) => {
|
|
const averagePadding = (gutter * (group.length - 1)) / group.length;
|
|
|
|
group.forEach((item, index) => {
|
|
if (index === 0) {
|
|
spaces.push({ right: averagePadding });
|
|
} else {
|
|
const left = gutter - spaces[item - 1].right;
|
|
const right = averagePadding - left;
|
|
spaces.push({ left, right });
|
|
}
|
|
});
|
|
});
|
|
|
|
return spaces;
|
|
},
|
|
},
|
|
|
|
methods: {
|
|
onClick(event) {
|
|
this.$emit('click', event);
|
|
},
|
|
},
|
|
|
|
render() {
|
|
const { align, justify } = this;
|
|
const flex = this.type === 'flex';
|
|
|
|
return (
|
|
<this.tag
|
|
class={bem({
|
|
flex,
|
|
[`align-${align}`]: flex && align,
|
|
[`justify-${justify}`]: flex && justify,
|
|
})}
|
|
onClick={this.onClick}
|
|
>
|
|
{this.$slots.default?.()}
|
|
</this.tag>
|
|
);
|
|
},
|
|
});
|