diff --git a/src/collapse-item/index.js b/src/collapse-item/index.js index d74fac88e..08542e809 100644 --- a/src/collapse-item/index.js +++ b/src/collapse-item/index.js @@ -46,7 +46,7 @@ export default createComponent({ const { value, accordion } = this.parent; if ( - process.env.NODE_ENV !== 'production' && + process.env.NODE_ENV === 'development' && !accordion && !Array.isArray(value) ) { diff --git a/src/collapse/test/index.spec.js b/src/collapse/test/index.spec.js index bc935f91d..d6c8f1e0a 100644 --- a/src/collapse/test/index.spec.js +++ b/src/collapse/test/index.spec.js @@ -123,28 +123,6 @@ test('lazy render collapse content', async () => { expect(wrapper).toMatchSnapshot(); }); -test('warn when value type is incorrect', () => { - const originConsoleError = console.error; - const error = jest.fn(); - console.error = error; - - mount({ - template: ` - - - - `, - data() { - return { - active: 0, - }; - }, - }); - - expect(error).toHaveBeenCalledTimes(1); - console.error = originConsoleError; -}); - test('toggle method', (done) => { mount({ template: ` diff --git a/src/goods-action-icon/index.js b/src/goods-action-icon/index.js index 36df3e8d3..3ff75177d 100644 --- a/src/goods-action-icon/index.js +++ b/src/goods-action-icon/index.js @@ -31,7 +31,7 @@ export default createComponent({ const slot = this.slots('icon'); const info = this.badge ?? this.info; - if (process.env.NODE_ENV !== 'production' && this.info) { + if (process.env.NODE_ENV === 'development' && this.info) { console.warn( '[Vant] GoodsActionIcon: "info" prop is deprecated, use "badge" prop instead.' ); diff --git a/src/goods-action/test/__snapshots__/index.spec.js.snap b/src/goods-action/test/__snapshots__/index.spec.js.snap index ccf848e36..1ae7f19ff 100644 --- a/src/goods-action/test/__snapshots__/index.spec.js.snap +++ b/src/goods-action/test/__snapshots__/index.spec.js.snap @@ -22,6 +22,13 @@ exports[`Icon render icon slot 1`] = ` `; +exports[`Icon render icon slot with badge 1`] = ` +
+
Custom Icon
1
+
Text +
+`; + exports[`Icon render icon slot with dot 1`] = `
Custom Icon
@@ -29,11 +36,4 @@ exports[`Icon render icon slot with dot 1`] = `
`; -exports[`Icon render icon slot with info 1`] = ` -
-
Custom Icon
1
-
Text -
-`; - exports[`disable safe-area-inset-bottom prop 1`] = `
`; diff --git a/src/goods-action/test/index.spec.js b/src/goods-action/test/index.spec.js index c96de3d11..719698116 100644 --- a/src/goods-action/test/index.spec.js +++ b/src/goods-action/test/index.spec.js @@ -50,12 +50,12 @@ test('Icon render icon slot', () => { expect(wrapper).toMatchSnapshot(); }); -test('Icon render icon slot with info', () => { +test('Icon render icon slot with badge', () => { const wrapper = mount({ render(h) { return h(Icon, { props: { - info: '1', + badge: '1', }, scopedSlots: { default: () => 'Text', diff --git a/src/grid-item/index.js b/src/grid-item/index.js index 1622e0131..e9be76851 100644 --- a/src/grid-item/index.js +++ b/src/grid-item/index.js @@ -74,7 +74,7 @@ export default createComponent({ const iconSlot = this.slots('icon'); const info = this.badge ?? this.info; - if (process.env.NODE_ENV !== 'production' && this.info) { + if (process.env.NODE_ENV === 'development' && this.info) { console.warn( '[Vant] GridItem: "info" prop is deprecated, use "badge" prop instead.' ); diff --git a/src/grid/test/index.spec.js b/src/grid/test/index.spec.js index 166640e38..78f15a3ed 100644 --- a/src/grid/test/index.spec.js +++ b/src/grid/test/index.spec.js @@ -49,7 +49,7 @@ test('render icon-slot', () => { const wrapper = mount({ template: ` - + diff --git a/src/icon/index.tsx b/src/icon/index.tsx index 3c931b3f1..21eb8f861 100644 --- a/src/icon/index.tsx +++ b/src/icon/index.tsx @@ -50,7 +50,7 @@ function Icon( const name = correctName(props.name); const imageIcon = isImage(name); - if (process.env.NODE_ENV !== 'production' && props.info) { + if (process.env.NODE_ENV === 'development' && props.info) { console.warn( '[Vant] Icon: "info" prop is deprecated, use "badge" prop instead.' ); diff --git a/src/info/test/__snapshots__/index.spec.js.snap b/src/info/test/__snapshots__/index.spec.js.snap index 84b187992..a8eb57b2b 100644 --- a/src/info/test/__snapshots__/index.spec.js.snap +++ b/src/info/test/__snapshots__/index.spec.js.snap @@ -1,7 +1,7 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`should not render when info is empty string 1`] = ``; +exports[`should not render when badge is empty string 1`] = ``; -exports[`should not render when info is empty undefined 1`] = ``; +exports[`should not render when badge is empty undefined 1`] = ``; -exports[`should render when info is zero 1`] = `
0
`; +exports[`should render when badge is zero 1`] = ``; diff --git a/src/info/test/index.spec.js b/src/info/test/index.spec.js index d0a2e1678..0ca1c2050 100644 --- a/src/info/test/index.spec.js +++ b/src/info/test/index.spec.js @@ -1,30 +1,30 @@ import Info from '..'; import { mount } from '../../../test'; -test('should not render when info is empty string', () => { +test('should not render when badge is empty string', () => { const wrapper = mount(Info, { propsData: { - info: '', + badge: '', }, }); expect(wrapper).toMatchSnapshot(); }); -test('should not render when info is empty undefined', () => { +test('should not render when badge is empty undefined', () => { const wrapper = mount(Info, { propsData: { - info: undefined, + badge: undefined, }, }); expect(wrapper).toMatchSnapshot(); }); -test('should render when info is zero', () => { +test('should render when badge is zero', () => { const wrapper = mount(Info, { propsData: { - info: 0, + badge: 0, }, }); diff --git a/src/sidebar-item/index.js b/src/sidebar-item/index.js index 46f99d60e..0ca4a32d3 100644 --- a/src/sidebar-item/index.js +++ b/src/sidebar-item/index.js @@ -38,7 +38,7 @@ export default createComponent({ }, render() { - if (process.env.NODE_ENV !== 'production' && this.info) { + if (process.env.NODE_ENV === 'development' && this.info) { console.warn( '[Vant] SidebarItem: "info" prop is deprecated, use "badge" prop instead.' ); diff --git a/src/switch-cell/index.tsx b/src/switch-cell/index.tsx index 5d287be71..d9164e1f9 100644 --- a/src/switch-cell/index.tsx +++ b/src/switch-cell/index.tsx @@ -30,7 +30,7 @@ function SwitchCell( slots: DefaultSlots, ctx: RenderContext ) { - if (process.env.NODE_ENV !== 'production') { + if (process.env.NODE_ENV === 'development') { console.warn( '[Vant] "SwitchCell" component is deprecated, see: https://youzan.github.io/vant/#/zh-CN/switch-cell.' ); diff --git a/src/tab/index.js b/src/tab/index.js index 7dae84570..73e3c0e18 100644 --- a/src/tab/index.js +++ b/src/tab/index.js @@ -58,7 +58,7 @@ export default createComponent({ const { slots, parent, isActive } = this; const slotContent = slots(); - if (process.env.NODE_ENV !== 'production' && this.info) { + if (process.env.NODE_ENV === 'development' && this.info) { console.warn( '[Vant] Tab: "info" prop is deprecated, use "badge" prop instead.' ); diff --git a/src/tab/test/__snapshots__/index.spec.js.snap b/src/tab/test/__snapshots__/index.spec.js.snap index 0377c7d10..271d18de1 100644 --- a/src/tab/test/__snapshots__/index.spec.js.snap +++ b/src/tab/test/__snapshots__/index.spec.js.snap @@ -1,5 +1,21 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP +exports[`badge prop 1`] = ` +
+
+
+ +
+
+
+
+
Text
+
+
+`; + exports[`border props 1`] = `
@@ -116,22 +132,6 @@ exports[`dot prop 1`] = `
`; -exports[`info prop 1`] = ` -
-
-
- -
-
-
-
-
Text
-
-
-`; - exports[`lazy render 1`] = `
diff --git a/src/tab/test/index.spec.js b/src/tab/test/index.spec.js index 7e8e21054..1ca16f2a1 100644 --- a/src/tab/test/index.spec.js +++ b/src/tab/test/index.spec.js @@ -246,11 +246,11 @@ test('dot prop', () => { expect(wrapper).toMatchSnapshot(); }); -test('info prop', () => { +test('badge prop', () => { const wrapper = mount({ template: ` - Text + Text `, }); diff --git a/src/tabbar-item/index.js b/src/tabbar-item/index.js index f3198e9bb..4b8cad40a 100644 --- a/src/tabbar-item/index.js +++ b/src/tabbar-item/index.js @@ -68,7 +68,7 @@ export default createComponent({ const active = this.parent.route ? this.routeActive : this.active; const color = this.parent[active ? 'activeColor' : 'inactiveColor']; - if (process.env.NODE_ENV !== 'production' && this.info) { + if (process.env.NODE_ENV === 'development' && this.info) { console.warn( '[Vant] TabbarItem: "info" prop is deprecated, use "badge" prop instead.' ); diff --git a/src/toast/index.js b/src/toast/index.js index b00e0da8b..514a45202 100644 --- a/src/toast/index.js +++ b/src/toast/index.js @@ -97,7 +97,7 @@ function Toast(options = {}) { ...options, }; - if (process.env.NODE_ENV !== 'production' && options.mask) { + if (process.env.NODE_ENV === 'development' && options.mask) { console.warn( '[Vant] Toast: "mask" option is deprecated, use "overlay" option instead.' ); diff --git a/src/tree-select/index.tsx b/src/tree-select/index.tsx index b558d5cfc..e16d1afd3 100644 --- a/src/tree-select/index.tsx +++ b/src/tree-select/index.tsx @@ -52,7 +52,7 @@ function TreeSelect( ) { const { items, height, activeId, selectedIcon, mainActiveIndex } = props; - if (process.env.NODE_ENV !== 'production') { + if (process.env.NODE_ENV === 'development') { if (ctx.listeners.navclick) { console.warn( '[Vant] TreeSelect: "navclick" event is deprecated, use "click-nav" instead.' diff --git a/src/tree-select/test/__snapshots__/index.spec.js.snap b/src/tree-select/test/__snapshots__/index.spec.js.snap index 245f661d1..adaf3102b 100644 --- a/src/tree-select/test/__snapshots__/index.spec.js.snap +++ b/src/tree-select/test/__snapshots__/index.spec.js.snap @@ -25,7 +25,7 @@ exports[`height prop 1`] = `
`; -exports[`nav info 1`] = ` +exports[`nav render badge 1`] = `
group1
3
diff --git a/src/tree-select/test/index.spec.js b/src/tree-select/test/index.spec.js index 3b45a3936..428a6d03b 100644 --- a/src/tree-select/test/index.spec.js +++ b/src/tree-select/test/index.spec.js @@ -27,7 +27,6 @@ const mockItems = [ ]; test('click-nav event', () => { - const onNavClick = jest.fn(); const onClickNav = jest.fn(); const wrapper = mount(TreeSelect, { @@ -36,7 +35,6 @@ test('click-nav event', () => { }, context: { on: { - navclick: onNavClick, 'click-nav': onClickNav, }, }, @@ -45,12 +43,10 @@ test('click-nav event', () => { const navItems = wrapper.findAll('.van-tree-select__nav-item'); navItems.at(1).trigger('click'); - expect(onNavClick).toHaveBeenCalledWith(1); expect(onClickNav).toHaveBeenCalledWith(1); }); test('click-item event', () => { - const onItemClick = jest.fn(); const onClickItem = jest.fn(); const wrapper = mount(TreeSelect, { @@ -59,7 +55,6 @@ test('click-item event', () => { }, context: { on: { - itemclick: onItemClick, 'click-item': onClickItem, }, }, @@ -67,7 +62,6 @@ test('click-item event', () => { const items = wrapper.findAll('.van-tree-select__item'); items.at(0).trigger('click'); - expect(onItemClick).toHaveBeenCalledWith(mockItem); expect(onClickItem).toHaveBeenCalledWith(mockItem); }); @@ -151,13 +145,13 @@ test('height prop', () => { expect(wrapper).toMatchSnapshot(); }); -test('nav info', () => { +test('nav render badge', () => { const wrapper = mount(TreeSelect, { propsData: { items: [ { text: 'group1', - info: 3, + badge: 3, }, ], },