mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Badge): minus x offset not work (#9199)
This commit is contained in:
parent
10c36c05c3
commit
86f6692284
@ -1,4 +1,4 @@
|
||||
import { PropType, CSSProperties, defineComponent } from 'vue';
|
||||
import { PropType, CSSProperties, defineComponent, computed } from 'vue';
|
||||
import {
|
||||
isDef,
|
||||
addUnit,
|
||||
@ -50,27 +50,36 @@ export default defineComponent({
|
||||
}
|
||||
};
|
||||
|
||||
const style = computed(() => {
|
||||
const style: CSSProperties = {
|
||||
background: props.color,
|
||||
};
|
||||
|
||||
if (props.offset) {
|
||||
const [x, y] = props.offset;
|
||||
if (slots.default) {
|
||||
style.top = addUnit(y);
|
||||
|
||||
if (typeof x === 'number') {
|
||||
style.right = addUnit(-x);
|
||||
} else {
|
||||
style.right = x.startsWith('-') ? x.replace('-', '') : `-${x}`;
|
||||
}
|
||||
} else {
|
||||
style.marginTop = addUnit(y);
|
||||
style.marginLeft = addUnit(x);
|
||||
}
|
||||
}
|
||||
|
||||
return style;
|
||||
});
|
||||
|
||||
const renderBadge = () => {
|
||||
if (hasContent() || props.dot) {
|
||||
const style: CSSProperties = {
|
||||
background: props.color,
|
||||
};
|
||||
|
||||
if (props.offset) {
|
||||
const [x, y] = props.offset;
|
||||
if (slots.default) {
|
||||
style.top = addUnit(y);
|
||||
style.right = `-${addUnit(x)}`;
|
||||
} else {
|
||||
style.marginTop = addUnit(y);
|
||||
style.marginLeft = addUnit(x);
|
||||
}
|
||||
}
|
||||
|
||||
return (
|
||||
<div
|
||||
class={bem({ dot: props.dot, fixed: !!slots.default })}
|
||||
style={style}
|
||||
style={style.value}
|
||||
>
|
||||
{renderContent()}
|
||||
</div>
|
||||
|
@ -41,7 +41,7 @@ test('should render content slot correctly', () => {
|
||||
expect(wrapper.html()).toMatchSnapshot();
|
||||
});
|
||||
|
||||
test('should change dot position when using offset prop', () => {
|
||||
test('should change dot position when using offset prop', async () => {
|
||||
const wrapper = mount(Badge, {
|
||||
props: {
|
||||
dot: true,
|
||||
@ -55,9 +55,15 @@ test('should change dot position when using offset prop', () => {
|
||||
const badge = wrapper.find('.van-badge');
|
||||
expect(badge.style.top).toEqual('4px');
|
||||
expect(badge.style.right).toEqual('-2px');
|
||||
|
||||
await wrapper.setProps({
|
||||
offset: [-2, -4],
|
||||
});
|
||||
expect(badge.style.top).toEqual('-4px');
|
||||
expect(badge.style.right).toEqual('2px');
|
||||
});
|
||||
|
||||
test('should change dot position when using offset prop with custom unit', () => {
|
||||
test('should change dot position when using offset prop with custom unit', async () => {
|
||||
const wrapper = mount(Badge, {
|
||||
props: {
|
||||
dot: true,
|
||||
@ -71,6 +77,12 @@ test('should change dot position when using offset prop with custom unit', () =>
|
||||
const badge = wrapper.find('.van-badge');
|
||||
expect(badge.style.top).toEqual('4em');
|
||||
expect(badge.style.right).toEqual('-2rem');
|
||||
|
||||
await wrapper.setProps({
|
||||
offset: ['-2rem', '-4em'],
|
||||
});
|
||||
expect(badge.style.top).toEqual('-4em');
|
||||
expect(badge.style.right).toEqual('2rem');
|
||||
});
|
||||
|
||||
test('should change dot position when using offset prop without children', () => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user