feat(ConfigProvider): add z-index prop (#10915)

This commit is contained in:
neverland 2022-08-16 22:09:48 +08:00 committed by GitHub
parent dc0a29be17
commit 4e83e5ecc0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 67 additions and 17 deletions

View File

@ -0,0 +1,24 @@
/**
* The z-index of Popup components.
* Will affect this components:
* - ActionSheet
* - Calendar
* - Dialog
* - DropdownItem
* - ImagePreview
* - Notify
* - Popup
* - Popover
* - ShareSheet
* - Toast
*/
let globalZIndex = 2000;
/** the global z-index is automatically incremented after reading */
export const useGlobalZIndex = () => ++globalZIndex;
/** reset the global z-index */
export const setGlobalZIndex = (val: number) => {
globalZIndex = val;
};

View File

@ -1,6 +1,7 @@
import { import {
provide, provide,
computed, computed,
watchEffect,
defineComponent, defineComponent,
type PropType, type PropType,
type InjectionKey, type InjectionKey,
@ -13,6 +14,7 @@ import {
createNamespace, createNamespace,
type Numeric, type Numeric,
} from '../utils'; } from '../utils';
import { setGlobalZIndex } from '../composables/use-global-z-index';
const [name, bem] = createNamespace('config-provider'); const [name, bem] = createNamespace('config-provider');
@ -25,6 +27,7 @@ export const CONFIG_PROVIDER_KEY: InjectionKey<ConfigProviderProvide> =
const configProviderProps = { const configProviderProps = {
tag: makeStringProp<keyof HTMLElementTagNameMap>('div'), tag: makeStringProp<keyof HTMLElementTagNameMap>('div'),
zIndex: Number,
themeVars: Object as PropType<Record<string, Numeric>>, themeVars: Object as PropType<Record<string, Numeric>>,
iconPrefix: String, iconPrefix: String,
}; };
@ -53,6 +56,12 @@ export default defineComponent({
provide(CONFIG_PROVIDER_KEY, props); provide(CONFIG_PROVIDER_KEY, props);
watchEffect(() => {
if (props.zIndex !== undefined) {
setGlobalZIndex(props.zIndex);
}
});
return () => ( return () => (
<props.tag class={bem()} style={style.value}> <props.tag class={bem()} style={style.value}>
{slots.default?.()} {slots.default?.()}

View File

@ -2,7 +2,7 @@
### Intro ### Intro
Used to config the theme of Vant components. Used to config the theme and global properties of Vant components.
### Install ### Install
@ -208,11 +208,12 @@ There are all **Basic Variables** below, for component CSS Variables, please ref
### Props ### Props
| Attribute | Description | Type | Default | | Attribute | Description | Type | Default |
| -------------------- | ------------------------ | -------- | ---------- | | --- | --- | --- | --- |
| theme-vars | Theme variables | _object_ | - | | theme-vars | Theme variables | _object_ | - |
| tag `v3.1.2` | HTML Tag of root element | _string_ | `div` | | tag `v3.1.2` | HTML Tag of root element | _string_ | `div` |
| icon-prefix `v3.1.3` | Icon className prefix | _string_ | `van-icon` | | z-index `v3.6.0` | Set the z-index of all popup components, this property takes effect globally | _number_ | `2000` |
| icon-prefix `v3.1.3` | Icon className prefix | _string_ | `van-icon` |
### Types ### Types

View File

@ -2,7 +2,7 @@
### 介绍 ### 介绍
用于配置 Vant 组件的主题样式,从 3.1.0 版本开始支持。 用于配置 Vant 组件的主题样式和全局属性,从 3.1.0 版本开始支持。
### 引入 ### 引入
@ -216,6 +216,7 @@ Vant 中的 CSS 变量分为 **基础变量** 和 **组件变量**。组件变
| --- | --- | --- | --- | | --- | --- | --- | --- |
| theme-vars | 自定义主题变量 | _object_ | - | | theme-vars | 自定义主题变量 | _object_ | - |
| tag `v3.1.2` | 根节点对应的 HTML 标签名 | _string_ | `div` | | tag `v3.1.2` | 根节点对应的 HTML 标签名 | _string_ | `div` |
| z-index `v3.6.0` | 设置所有弹窗类组件的 z-index该属性对全局生效 | _number_ | `2000` |
| icon-prefix `v3.1.3` | 所有图标的类名前缀,等同于 Icon 组件的 [class-prefix 属性](#/zh-CN/icon#props) | _string_ | `van-icon` | | icon-prefix `v3.1.3` | 所有图标的类名前缀,等同于 Icon 组件的 [class-prefix 属性](#/zh-CN/icon#props) | _string_ | `van-icon` |
### 类型定义 ### 类型定义

View File

@ -1,6 +1,8 @@
import { ref } from 'vue';
import { ConfigProvider } from '..'; import { ConfigProvider } from '..';
import { Icon } from '../../icon'; import { Icon } from '../../icon';
import { mount } from '../../../test'; import { later, mount } from '../../../test';
import Popup from '../../popup';
test('should render tag prop correctly', () => { test('should render tag prop correctly', () => {
const wrapper = mount(ConfigProvider, { const wrapper = mount(ConfigProvider, {
@ -23,3 +25,19 @@ test('should change icon class-prefix when using icon-prefix prop', () => {
}); });
expect(wrapper.html()).toMatchSnapshot(); expect(wrapper.html()).toMatchSnapshot();
}); });
test('should change global z-index when using z-index prop', async () => {
const show = ref(true);
const wrapper = mount({
render() {
return (
<ConfigProvider zIndex={0}>
<Popup v-model:show={show.value} />
</ConfigProvider>
);
},
});
await later();
expect(wrapper.find('.van-popup').style.zIndex).toEqual('1');
});

View File

@ -31,6 +31,7 @@ import { useExpose } from '../composables/use-expose';
import { useLockScroll } from '../composables/use-lock-scroll'; import { useLockScroll } from '../composables/use-lock-scroll';
import { useLazyRender } from '../composables/use-lazy-render'; import { useLazyRender } from '../composables/use-lazy-render';
import { POPUP_TOGGLE_KEY } from '../composables/on-popup-reopen'; import { POPUP_TOGGLE_KEY } from '../composables/on-popup-reopen';
import { useGlobalZIndex } from '../composables/use-global-z-index';
// Components // Components
import { Icon } from '../icon'; import { Icon } from '../icon';
@ -56,8 +57,6 @@ export type PopupProps = ExtractPropTypes<typeof popupProps>;
const [name, bem] = createNamespace('popup'); const [name, bem] = createNamespace('popup');
let globalZIndex = 2000;
export default defineComponent({ export default defineComponent({
name, name,
@ -103,12 +102,10 @@ export default defineComponent({
const open = () => { const open = () => {
if (!opened) { if (!opened) {
if (props.zIndex !== undefined) {
globalZIndex = +props.zIndex;
}
opened = true; opened = true;
zIndex.value = ++globalZIndex;
zIndex.value =
props.zIndex !== undefined ? +props.zIndex : useGlobalZIndex();
emit('open'); emit('open');
} }

View File

@ -29,8 +29,8 @@ test('should change z-index when using z-index prop', async () => {
}); });
await nextTick(); await nextTick();
expect(wrapper.find('.van-popup').style.zIndex).toEqual('11'); expect(wrapper.find('.van-popup').style.zIndex).toEqual('10');
expect(wrapper.find('.van-overlay').style.zIndex).toEqual('11'); expect(wrapper.find('.van-overlay').style.zIndex).toEqual('10');
}); });
test('should lock scroll when showed', async () => { test('should lock scroll when showed', async () => {