mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(FloatingBubble): add CSS vars to override border radius (#12070)
* feat(FloatingBubble): add CSS vars to override border radius * chore: update snapshot
This commit is contained in:
parent
871d1ed3a1
commit
bbedcb49fc
@ -14,42 +14,38 @@ import {
|
|||||||
type ExtractPropTypes,
|
type ExtractPropTypes,
|
||||||
} from 'vue';
|
} from 'vue';
|
||||||
|
|
||||||
import { useRect, useEventListener } from '@vant/use';
|
// Utils
|
||||||
import { useTouch } from '../composables/use-touch';
|
|
||||||
import {
|
import {
|
||||||
|
pick,
|
||||||
addUnit,
|
addUnit,
|
||||||
closest,
|
closest,
|
||||||
createNamespace,
|
createNamespace,
|
||||||
makeNumberProp,
|
makeNumberProp,
|
||||||
makeStringProp,
|
makeStringProp,
|
||||||
pick,
|
|
||||||
windowWidth,
|
windowWidth,
|
||||||
windowHeight,
|
windowHeight,
|
||||||
} from '../utils';
|
} from '../utils';
|
||||||
|
|
||||||
|
// Composables
|
||||||
|
import { useRect, useEventListener } from '@vant/use';
|
||||||
|
import { useTouch } from '../composables/use-touch';
|
||||||
|
|
||||||
|
// Components
|
||||||
import Icon from '../icon';
|
import Icon from '../icon';
|
||||||
|
|
||||||
export type FloatingBubbleAxis = 'x' | 'y' | 'xy' | 'lock';
|
// Types
|
||||||
|
import {
|
||||||
export type FloatingBubbleMagnetic = 'x' | 'y';
|
FloatingBubbleAxis,
|
||||||
|
FloatingBubbleMagnetic,
|
||||||
export type FloatingBubbleOffset = {
|
FloatingBubbleOffset,
|
||||||
x: number;
|
FloatingBubbleBoundary,
|
||||||
y: number;
|
} from './types';
|
||||||
};
|
|
||||||
|
|
||||||
type FloatingBubbleBoundary = {
|
|
||||||
top: number;
|
|
||||||
right: number;
|
|
||||||
bottom: number;
|
|
||||||
left: number;
|
|
||||||
};
|
|
||||||
|
|
||||||
export const floatingBubbleProps = {
|
export const floatingBubbleProps = {
|
||||||
|
gap: makeNumberProp(24),
|
||||||
|
icon: String,
|
||||||
axis: makeStringProp<FloatingBubbleAxis>('y'),
|
axis: makeStringProp<FloatingBubbleAxis>('y'),
|
||||||
magnetic: String as PropType<FloatingBubbleMagnetic>,
|
magnetic: String as PropType<FloatingBubbleMagnetic>,
|
||||||
icon: String,
|
|
||||||
gap: makeNumberProp(24),
|
|
||||||
offset: {
|
offset: {
|
||||||
type: Object as unknown as PropType<FloatingBubbleOffset>,
|
type: Object as unknown as PropType<FloatingBubbleOffset>,
|
||||||
default: () => ({ x: -1, y: -1 }),
|
default: () => ({ x: -1, y: -1 }),
|
||||||
@ -202,8 +198,7 @@ export default defineComponent({
|
|||||||
|
|
||||||
watch(
|
watch(
|
||||||
[windowWidth, windowHeight, () => props.gap, () => props.offset],
|
[windowWidth, windowHeight, () => props.gap, () => props.offset],
|
||||||
() => updateState(),
|
updateState
|
||||||
{ deep: true }
|
|
||||||
);
|
);
|
||||||
|
|
||||||
const show = ref(true);
|
const show = ref(true);
|
||||||
|
@ -39,7 +39,7 @@ export default {
|
|||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
### Free drag and magnetic
|
### Free Magnetic
|
||||||
|
|
||||||
Allow x and y drags to attach to the nearest side of the x axis.
|
Allow x and y drags to attach to the nearest side of the x axis.
|
||||||
|
|
||||||
@ -57,8 +57,8 @@ import { showToast } from 'vant';
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
setup() {
|
setup() {
|
||||||
const onOffsetChange = (offset: OffsetType) => {
|
const onOffsetChange = (offset) => {
|
||||||
showToast(offset.x + '__' + offset.y);
|
showToast(`x: ${offset.x.toFixed(0)}, y: ${offset.y.toFixed(0)}`);
|
||||||
};
|
};
|
||||||
return { onOffsetChange };
|
return { onOffsetChange };
|
||||||
},
|
},
|
||||||
@ -74,9 +74,11 @@ Use `v-model:offset` control the position.
|
|||||||
```
|
```
|
||||||
|
|
||||||
```js
|
```js
|
||||||
|
import { ref } from 'vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
setup() {
|
setup() {
|
||||||
const offset = ref < OffsetType > { x: 200, y: 400 };
|
const offset = ref({ x: 200, y: 400 });
|
||||||
return { offset };
|
return { offset };
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@ -127,11 +129,12 @@ export type {
|
|||||||
|
|
||||||
The component provides the following CSS variables, which can be used to customize styles. Please refer to [ConfigProvider component](#/en-US/config-provider).
|
The component provides the following CSS variables, which can be used to customize styles. Please refer to [ConfigProvider component](#/en-US/config-provider).
|
||||||
|
|
||||||
| Name | Default Value | Description |
|
| Name | Default Value | Description |
|
||||||
| --------------------------------- | -------------------------- | ----------- |
|
| --- | --- | --- |
|
||||||
| --van-floating-bubble-size | _48px_ | - |
|
| --van-floating-bubble-size | _48px_ | - |
|
||||||
| --van-floating-bubble-initial-gap | _24px_ | - |
|
| --van-floating-bubble-initial-gap | _24px_ | - |
|
||||||
| --van-floating-bubble-icon-size | _28px_ | - |
|
| --van-floating-bubble-icon-size | _28px_ | - |
|
||||||
| --van-floating-bubble-background | _var(--van-primary-color)_ | - |
|
| --van-floating-bubble-background | _var(--van-primary-color)_ | - |
|
||||||
| --van-floating-bubble-color | _var(--van-background-2)_ | - |
|
| --van-floating-bubble-color | _var(--van-background-2)_ | - |
|
||||||
| --van-floating-bubble-z-index | _999_ | - |
|
| --van-floating-bubble-z-index | _999_ | - |
|
||||||
|
| --van-floating-bubble-border-radius | _--van-floating-bubble-border-radius_ | - |
|
||||||
|
@ -57,26 +57,28 @@ import { showToast } from 'vant';
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
setup() {
|
setup() {
|
||||||
const onOffsetChange = (offset: OffsetType) => {
|
const onOffsetChange = (offset) => {
|
||||||
showToast(offset.x + '__' + offset.y);
|
showToast(`x: ${offset.x.toFixed(0)}, y: ${offset.y.toFixed(0)}`);
|
||||||
};
|
};
|
||||||
return { onOffsetChange };
|
return { onOffsetChange };
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
### 使用 v-model
|
### 双向绑定
|
||||||
|
|
||||||
使用 `v-model:offset` 控制位置。
|
使用 `v-model:offset` 控制 FloatingBubble 的位置。
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<van-floating-bubble v-model:offset="offset" axis="xy" icon="chat" />
|
<van-floating-bubble v-model:offset="offset" axis="xy" icon="chat" />
|
||||||
```
|
```
|
||||||
|
|
||||||
```js
|
```js
|
||||||
|
import { ref } from 'vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
setup() {
|
setup() {
|
||||||
const offset = ref < OffsetType > { x: 200, y: 400 };
|
const offset = ref({ x: 200, y: 400 });
|
||||||
return { offset };
|
return { offset };
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@ -127,11 +129,12 @@ export type {
|
|||||||
|
|
||||||
组件提供了下列 CSS 变量,可用于自定义样式,使用方法请参考 [ConfigProvider 组件](#/zh-CN/config-provider)。
|
组件提供了下列 CSS 变量,可用于自定义样式,使用方法请参考 [ConfigProvider 组件](#/zh-CN/config-provider)。
|
||||||
|
|
||||||
| 名称 | 默认值 | 描述 |
|
| 名称 | 默认值 | 描述 |
|
||||||
| --------------------------------- | -------------------------- | ---- |
|
| --- | --- | --- |
|
||||||
| --van-floating-bubble-size | _48px_ | - |
|
| --van-floating-bubble-size | _48px_ | - |
|
||||||
| --van-floating-bubble-initial-gap | _24px_ | - |
|
| --van-floating-bubble-initial-gap | _24px_ | - |
|
||||||
| --van-floating-bubble-icon-size | _28px_ | - |
|
| --van-floating-bubble-icon-size | _28px_ | - |
|
||||||
| --van-floating-bubble-background | _var(--van-primary-color)_ | - |
|
| --van-floating-bubble-background | _var(--van-primary-color)_ | - |
|
||||||
| --van-floating-bubble-color | _var(--van-background-2)_ | - |
|
| --van-floating-bubble-color | _var(--van-background-2)_ | - |
|
||||||
| --van-floating-bubble-z-index | _999_ | - |
|
| --van-floating-bubble-z-index | _999_ | - |
|
||||||
|
| --van-floating-bubble-border-radius | _--van-floating-bubble-border-radius_ | - |
|
||||||
|
@ -17,7 +17,7 @@ const t = useTranslate({
|
|||||||
},
|
},
|
||||||
'en-US': {
|
'en-US': {
|
||||||
clickBubble: 'Click bubble',
|
clickBubble: 'Click bubble',
|
||||||
freeMagnetic: 'Free magnetic',
|
freeMagnetic: 'Free Magnetic',
|
||||||
vModel: 'vModel',
|
vModel: 'vModel',
|
||||||
basicUsageText:
|
basicUsageText:
|
||||||
'In the default x position, drag in the y direction is allowed',
|
'In the default x position, drag in the y direction is allowed',
|
||||||
@ -28,7 +28,7 @@ const t = useTranslate({
|
|||||||
});
|
});
|
||||||
|
|
||||||
const onOffsetChange = (offset: FloatingBubbleOffset) => {
|
const onOffsetChange = (offset: FloatingBubbleOffset) => {
|
||||||
showToast(offset.x.toFixed(0) + '__' + offset.y.toFixed(0));
|
showToast(`x: ${offset.x.toFixed(0)}, y: ${offset.y.toFixed(0)}`);
|
||||||
};
|
};
|
||||||
|
|
||||||
const onClick = () => {
|
const onClick = () => {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
--van-floating-bubble-background: var(--van-primary-color);
|
--van-floating-bubble-background: var(--van-primary-color);
|
||||||
--van-floating-bubble-color: var(--van-background-2);
|
--van-floating-bubble-color: var(--van-background-2);
|
||||||
--van-floating-bubble-z-index: 999;
|
--van-floating-bubble-z-index: 999;
|
||||||
|
--van-floating-bubble-border-radius: var(--van-radius-max);
|
||||||
}
|
}
|
||||||
|
|
||||||
.van-floating-bubble {
|
.van-floating-bubble {
|
||||||
@ -25,12 +26,12 @@
|
|||||||
touch-action: none;
|
touch-action: none;
|
||||||
background: var(--van-floating-bubble-background);
|
background: var(--van-floating-bubble-background);
|
||||||
color: var(--van-floating-bubble-color);
|
color: var(--van-floating-bubble-color);
|
||||||
border-radius: var(--van-radius-max);
|
border-radius: var(--van-floating-bubble-border-radius);
|
||||||
z-index: var(--van-floating-bubble-z-index);
|
z-index: var(--van-floating-bubble-z-index);
|
||||||
transition: transform 0.3s;
|
transition: transform var(--van-duration-base);
|
||||||
|
|
||||||
&:active {
|
&:active {
|
||||||
opacity: 0.9;
|
opacity: 0.8;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__icon {
|
&__icon {
|
||||||
|
@ -5,13 +5,13 @@ export const FloatingBubble = withInstall(_FloatingBubble);
|
|||||||
export default FloatingBubble;
|
export default FloatingBubble;
|
||||||
|
|
||||||
export { floatingBubbleProps } from './FloatingBubble';
|
export { floatingBubbleProps } from './FloatingBubble';
|
||||||
|
export type { FloatingBubbleProps } from './FloatingBubble';
|
||||||
export type {
|
export type {
|
||||||
FloatingBubbleProps,
|
FloatingBubbleThemeVars,
|
||||||
FloatingBubbleAxis,
|
FloatingBubbleAxis,
|
||||||
FloatingBubbleMagnetic,
|
FloatingBubbleMagnetic,
|
||||||
FloatingBubbleOffset,
|
FloatingBubbleOffset,
|
||||||
} from './FloatingBubble';
|
} from './types';
|
||||||
export type { FloatingBubbleThemeVars } from './types';
|
|
||||||
|
|
||||||
declare module 'vue' {
|
declare module 'vue' {
|
||||||
export interface GlobalComponents {
|
export interface GlobalComponents {
|
||||||
|
@ -26,7 +26,7 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
aria-controls="van-tab"
|
aria-controls="van-tab"
|
||||||
>
|
>
|
||||||
<span class="van-tab__text van-tab__text--ellipsis">
|
<span class="van-tab__text van-tab__text--ellipsis">
|
||||||
Free magnetic
|
Free Magnetic
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div id="van-tabs-2"
|
<div id="van-tabs-2"
|
||||||
|
@ -6,3 +6,19 @@ export type FloatingBubbleThemeVars = {
|
|||||||
floatingBubbleColor?: string;
|
floatingBubbleColor?: string;
|
||||||
floatingBubbleZIndex?: number | string;
|
floatingBubbleZIndex?: number | string;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type FloatingBubbleAxis = 'x' | 'y' | 'xy' | 'lock';
|
||||||
|
|
||||||
|
export type FloatingBubbleMagnetic = 'x' | 'y';
|
||||||
|
|
||||||
|
export type FloatingBubbleOffset = {
|
||||||
|
x: number;
|
||||||
|
y: number;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type FloatingBubbleBoundary = {
|
||||||
|
top: number;
|
||||||
|
right: number;
|
||||||
|
bottom: number;
|
||||||
|
left: number;
|
||||||
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user