[improvement] rename use to createNamespace (#3658)

This commit is contained in:
neverland 2019-06-27 11:11:47 +08:00 committed by GitHub
parent 1d9301b158
commit 8489918dca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
94 changed files with 282 additions and 282 deletions

View File

@ -1,4 +1,4 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { emit, inherit } from '../utils/functional'; import { emit, inherit } from '../utils/functional';
import { PopupMixin } from '../mixins/popup'; import { PopupMixin } from '../mixins/popup';
import Icon from '../icon'; import Icon from '../icon';
@ -28,7 +28,7 @@ export type ActionSheetProps = PopupMixinProps & {
safeAreaInsetBottom?: boolean; safeAreaInsetBottom?: boolean;
}; };
const [sfc, bem] = use('action-sheet'); const [createComponent, bem] = createNamespace('action-sheet');
function ActionSheet( function ActionSheet(
h: CreateElement, h: CreateElement,
@ -155,4 +155,4 @@ ActionSheet.props = {
} }
}; };
export default sfc<ActionSheetProps>(ActionSheet); export default createComponent<ActionSheetProps>(ActionSheet);

View File

@ -1,12 +1,12 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { isAndroid } from '../utils/validate/system'; import { isAndroid } from '../utils/validate/system';
import Cell from '../cell'; import Cell from '../cell';
import Field from '../field'; import Field from '../field';
const [sfc, bem, t] = use('address-edit-detail'); const [createComponent, bem, t] = createNamespace('address-edit-detail');
const android = isAndroid(); const android = isAndroid();
export default sfc({ export default createComponent({
props: { props: {
value: String, value: String,
error: Boolean, error: Boolean,

View File

@ -1,4 +1,4 @@
import { use, isObj } from '../utils'; import { createNamespace, isObj } from '../utils';
import { isMobile } from '../utils/validate/mobile'; import { isMobile } from '../utils/validate/mobile';
import Area from '../area'; import Area from '../area';
import Field from '../field'; import Field from '../field';
@ -9,7 +9,7 @@ import Dialog from '../dialog';
import Detail from './Detail'; import Detail from './Detail';
import SwitchCell from '../switch-cell'; import SwitchCell from '../switch-cell';
const [sfc, bem, t] = use('address-edit'); const [createComponent, bem, t] = createNamespace('address-edit');
const defaultData = { const defaultData = {
name: '', name: '',
@ -24,7 +24,7 @@ const defaultData = {
isDefault: false isDefault: false
}; };
export default sfc({ export default createComponent({
props: { props: {
areaList: Object, areaList: Object,
isSaving: Boolean, isSaving: Boolean,

View File

@ -1,4 +1,4 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { RED } from '../utils/color'; import { RED } from '../utils/color';
import { emit, inherit } from '../utils/functional'; import { emit, inherit } from '../utils/functional';
import Icon from '../icon'; import Icon from '../icon';
@ -27,7 +27,7 @@ export type AddressItemEvents = {
onSelect(): void; onSelect(): void;
}; };
const [sfc, bem] = use('address-item'); const [createComponent, bem] = createNamespace('address-item');
function AddressItem( function AddressItem(
h: CreateElement, h: CreateElement,
@ -91,4 +91,4 @@ AddressItem.props = {
switchable: Boolean switchable: Boolean
}; };
export default sfc<AddressItemProps, AddressItemEvents>(AddressItem); export default createComponent<AddressItemProps, AddressItemEvents>(AddressItem);

View File

@ -1,4 +1,4 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { emit, inherit } from '../utils/functional'; import { emit, inherit } from '../utils/functional';
import Button from '../button'; import Button from '../button';
import RadioGroup from '../radio-group'; import RadioGroup from '../radio-group';
@ -21,7 +21,7 @@ export type AddressListSlots = DefaultSlots & {
top?: ScopedSlot; top?: ScopedSlot;
}; };
const [sfc, bem, t] = use('address-list'); const [createComponent, bem, t] = createNamespace('address-list');
function AddressList( function AddressList(
h: CreateElement, h: CreateElement,
@ -90,4 +90,4 @@ AddressList.props = {
} }
}; };
export default sfc<AddressListProps>(AddressList); export default createComponent<AddressListProps>(AddressList);

View File

@ -1,10 +1,10 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import Picker from '../picker'; import Picker from '../picker';
import { pickerProps } from '../picker/shared'; import { pickerProps } from '../picker/shared';
const [sfc, bem] = use('area'); const [createComponent, bem] = createNamespace('area');
export default sfc({ export default createComponent({
props: { props: {
...pickerProps, ...pickerProps,
value: String, value: String,

View File

@ -1,4 +1,4 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { emit, inherit } from '../utils/functional'; import { emit, inherit } from '../utils/functional';
import { routeProps, RouteProps, functionalRoute } from '../utils/router'; import { routeProps, RouteProps, functionalRoute } from '../utils/router';
import Icon from '../icon'; import Icon from '../icon';
@ -35,7 +35,7 @@ export type ButtonEvents = {
onClick?(event: Event): void; onClick?(event: Event): void;
}; };
const [sfc, bem] = use('button'); const [createComponent, bem] = createNamespace('button');
function Button( function Button(
h: CreateElement, h: CreateElement,
@ -148,4 +148,4 @@ Button.props = {
} }
}; };
export default sfc<ButtonProps, ButtonEvents>(Button); export default createComponent<ButtonProps, ButtonEvents>(Button);

View File

@ -1,4 +1,4 @@
import { use, isDef } from '../utils'; import { createNamespace, isDef } from '../utils';
import { emit, inherit } from '../utils/functional'; import { emit, inherit } from '../utils/functional';
import Tag from '../tag'; import Tag from '../tag';
import Image from '../image'; import Image from '../image';
@ -38,7 +38,7 @@ export type CardEvents = {
onClick?(event: Event): void; onClick?(event: Event): void;
}; };
const [sfc, bem] = use('card'); const [createComponent, bem] = createNamespace('card');
function Card( function Card(
h: CreateElement, h: CreateElement,
@ -187,4 +187,4 @@ Card.props = {
} }
}; };
export default sfc<CardProps, CardEvents>(Card); export default createComponent<CardProps, CardEvents>(Card);

View File

@ -1,4 +1,4 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { inherit } from '../utils/functional'; import { inherit } from '../utils/functional';
// Types // Types
@ -10,7 +10,7 @@ export type CellGroupProps = {
border: boolean border: boolean
}; };
const [sfc, bem] = use('cell-group'); const [createComponent, bem] = createNamespace('cell-group');
function CellGroup( function CellGroup(
h: CreateElement, h: CreateElement,
@ -47,4 +47,4 @@ CellGroup.props = {
} }
}; };
export default sfc<CellGroupProps>(CellGroup); export default createComponent<CellGroupProps>(CellGroup);

View File

@ -1,4 +1,4 @@
import { use, isDef } from '../utils'; import { createNamespace, isDef } from '../utils';
import { cellProps, SharedCellProps } from './shared'; import { cellProps, SharedCellProps } from './shared';
import { emit, inherit } from '../utils/functional'; import { emit, inherit } from '../utils/functional';
import { routeProps, RouteProps, functionalRoute } from '../utils/router'; import { routeProps, RouteProps, functionalRoute } from '../utils/router';
@ -7,7 +7,7 @@ import Icon from '../icon';
// Types // Types
import { CreateElement, RenderContext } from 'vue/types'; import { CreateElement, RenderContext } from 'vue/types';
import { ScopedSlot, DefaultSlots } from '../utils/types'; import { ScopedSlot, DefaultSlots } from '../utils/types';
import { Mods } from '../utils/use/bem'; import { Mods } from '../utils/create/bem';
export type CellProps = RouteProps & export type CellProps = RouteProps &
SharedCellProps & { SharedCellProps & {
@ -26,7 +26,7 @@ export type CellEvents = {
onClick?(event: Event): void; onClick?(event: Event): void;
}; };
const [sfc, bem] = use('cell'); const [createComponent, bem] = createNamespace('cell');
function Cell( function Cell(
h: CreateElement, h: CreateElement,
@ -106,4 +106,4 @@ Cell.props = {
arrowDirection: String arrowDirection: String
}; };
export default sfc<CellProps, CellEvents, CellSlots>(Cell); export default createComponent<CellProps, CellEvents, CellSlots>(Cell);

View File

@ -1,9 +1,9 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { ParentMixin } from '../mixins/relation'; import { ParentMixin } from '../mixins/relation';
const [sfc, bem] = use('checkbox-group'); const [createComponent, bem] = createNamespace('checkbox-group');
export default sfc({ export default createComponent({
mixins: [ParentMixin('vanCheckbox')], mixins: [ParentMixin('vanCheckbox')],
props: { props: {

View File

@ -1,9 +1,9 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { CheckboxMixin } from '../mixins/checkbox'; import { CheckboxMixin } from '../mixins/checkbox';
const [sfc, bem] = use('checkbox'); const [createComponent, bem] = createNamespace('checkbox');
export default sfc({ export default createComponent({
mixins: [CheckboxMixin({ mixins: [CheckboxMixin({
bem, bem,
role: 'checkbox', role: 'checkbox',

View File

@ -1,8 +1,8 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { raf, cancelRaf } from '../utils/dom/raf'; import { raf, cancelRaf } from '../utils/dom/raf';
import { BLUE, WHITE } from '../utils/color'; import { BLUE, WHITE } from '../utils/color';
const [sfc, bem] = use('circle'); const [createComponent, bem] = createNamespace('circle');
const PERIMETER = 3140; const PERIMETER = 3140;
const PATH = 'M 530 530 m -500, 0 a 500, 500 0 1, 1 1000, 0 a 500, 500 0 1, 1 -1000, 0'; const PATH = 'M 530 530 m -500, 0 a 500, 500 0 1, 1 1000, 0 a 500, 500 0 1, 1 -1000, 0';
@ -10,7 +10,7 @@ function format(rate) {
return Math.min(Math.max(rate, 0), 100); return Math.min(Math.max(rate, 0), 100);
} }
export default sfc({ export default createComponent({
props: { props: {
text: String, text: String,
value: Number, value: Number,

View File

@ -1,8 +1,8 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
const [sfc, bem] = use('col'); const [createComponent, bem] = createNamespace('col');
export default sfc({ export default createComponent({
props: { props: {
span: [Number, String], span: [Number, String],
offset: [Number, String], offset: [Number, String],

View File

@ -1,13 +1,13 @@
import { use, isDef } from '../utils'; import { createNamespace, isDef } from '../utils';
import { raf } from '../utils/dom/raf'; import { raf } from '../utils/dom/raf';
import Cell from '../cell'; import Cell from '../cell';
import { cellProps } from '../cell/shared'; import { cellProps } from '../cell/shared';
import { ChildrenMixin } from '../mixins/relation'; import { ChildrenMixin } from '../mixins/relation';
const [sfc, bem] = use('collapse-item'); const [createComponent, bem] = createNamespace('collapse-item');
const CELL_SLOTS = ['title', 'icon', 'right-icon']; const CELL_SLOTS = ['title', 'icon', 'right-icon'];
export default sfc({ export default createComponent({
mixins: [ChildrenMixin('vanCollapse')], mixins: [ChildrenMixin('vanCollapse')],
props: { props: {

View File

@ -1,9 +1,9 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { ParentMixin } from '../mixins/relation'; import { ParentMixin } from '../mixins/relation';
const [sfc, bem] = use('collapse'); const [createComponent, bem] = createNamespace('collapse');
export default sfc({ export default createComponent({
mixins: [ParentMixin('vanCollapse')], mixins: [ParentMixin('vanCollapse')],
props: { props: {

View File

@ -1,4 +1,4 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { emit, inherit } from '../utils/functional'; import { emit, inherit } from '../utils/functional';
import Cell from '../cell'; import Cell from '../cell';
@ -6,7 +6,7 @@ import Cell from '../cell';
import { CreateElement, RenderContext } from 'vue/types'; import { CreateElement, RenderContext } from 'vue/types';
import { DefaultSlots } from '../utils/types'; import { DefaultSlots } from '../utils/types';
const [sfc, bem, t] = use('contact-card'); const [createComponent, bem, t] = createNamespace('contact-card');
export type ContactCardProps = { export type ContactCardProps = {
tel?: string; tel?: string;
@ -65,4 +65,4 @@ ContactCard.props = {
} }
}; };
export default sfc<ContactCardProps>(ContactCard); export default createComponent<ContactCardProps>(ContactCard);

View File

@ -1,18 +1,18 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import Button from '../button'; import Button from '../button';
import Field from '../field'; import Field from '../field';
import Toast from '../toast'; import Toast from '../toast';
import Dialog from '../dialog'; import Dialog from '../dialog';
import { isMobile } from '../utils/validate/mobile'; import { isMobile } from '../utils/validate/mobile';
const [sfc, bem, t] = use('contact-edit'); const [createComponent, bem, t] = createNamespace('contact-edit');
const defaultContact = { const defaultContact = {
tel: '', tel: '',
name: '' name: ''
}; };
export default sfc({ export default createComponent({
props: { props: {
isEdit: Boolean, isEdit: Boolean,
isSaving: Boolean, isSaving: Boolean,

View File

@ -1,4 +1,4 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { RED } from '../utils/color'; import { RED } from '../utils/color';
import { emit, inherit } from '../utils/functional'; import { emit, inherit } from '../utils/functional';
import Icon from '../icon'; import Icon from '../icon';
@ -23,7 +23,7 @@ export type ContactListProps = {
addText?: string; addText?: string;
}; };
const [sfc, bem, t] = use('contact-list'); const [createComponent, bem, t] = createNamespace('contact-list');
function ContactList( function ContactList(
h: CreateElement, h: CreateElement,
@ -90,4 +90,4 @@ ContactList.props = {
addText: String addText: String
}; };
export default sfc(ContactList); export default createComponent(ContactList);

View File

@ -1,4 +1,4 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { inherit } from '../utils/functional'; import { inherit } from '../utils/functional';
import Cell from '../cell'; import Cell from '../cell';
@ -16,7 +16,7 @@ export type CouponCellProps = {
chosenCoupon: number; chosenCoupon: number;
}; };
const [sfc, bem, t] = use('coupon-cell'); const [createComponent, bem, t] = createNamespace('coupon-cell');
function formatValue(props: CouponCellProps) { function formatValue(props: CouponCellProps) {
const { coupons, chosenCoupon, currency } = props; const { coupons, chosenCoupon, currency } = props;
@ -79,4 +79,4 @@ CouponCell.props = {
} }
}; };
export default sfc<CouponCellProps>(CouponCell); export default createComponent<CouponCellProps>(CouponCell);

View File

@ -1,14 +1,14 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import Tab from '../tab'; import Tab from '../tab';
import Tabs from '../tabs'; import Tabs from '../tabs';
import Field from '../field'; import Field from '../field';
import Button from '../button'; import Button from '../button';
import Coupon from '../coupon'; import Coupon from '../coupon';
const [sfc, bem, t] = use('coupon-list'); const [createComponent, bem, t] = createNamespace('coupon-list');
const EMPTY_IMAGE = 'https://img.yzcdn.cn/vant/coupon-empty.png'; const EMPTY_IMAGE = 'https://img.yzcdn.cn/vant/coupon-empty.png';
export default sfc({ export default createComponent({
model: { model: {
prop: 'code' prop: 'code'
}, },

View File

@ -1,9 +1,9 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { RED } from '../utils/color'; import { RED } from '../utils/color';
import { padZero } from '../utils/format/string'; import { padZero } from '../utils/format/string';
import Checkbox from '../checkbox'; import Checkbox from '../checkbox';
const [sfc, bem, t] = use('coupon'); const [createComponent, bem, t] = createNamespace('coupon');
function getDate(timeStamp) { function getDate(timeStamp) {
const date = new Date(timeStamp * 1000); const date = new Date(timeStamp * 1000);
@ -20,7 +20,7 @@ function formatAmount(amount) {
return (amount / 100).toFixed(amount % 100 === 0 ? 0 : amount % 10 === 0 ? 1 : 2); return (amount / 100).toFixed(amount % 100 === 0 ? 0 : amount % 10 === 0 ? 1 : 2);
} }
export default sfc({ export default createComponent({
props: { props: {
coupon: Object, coupon: Object,
chosen: Boolean, chosen: Boolean,

View File

@ -1,4 +1,4 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { range } from '../utils/format/number'; import { range } from '../utils/format/number';
import { padZero } from '../utils/format/string'; import { padZero } from '../utils/format/string';
import Picker from '../picker'; import Picker from '../picker';
@ -10,10 +10,10 @@ import {
getMonthEndDay getMonthEndDay
} from './utils'; } from './utils';
const [sfc, bem] = use('datetime-picker'); const [createComponent, bem] = createNamespace('datetime-picker');
const currentYear = new Date().getFullYear(); const currentYear = new Date().getFullYear();
export default sfc({ export default createComponent({
props: { props: {
...pickerProps, ...pickerProps,
value: null, value: null,

View File

@ -1,10 +1,10 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { PopupMixin } from '../mixins/popup'; import { PopupMixin } from '../mixins/popup';
import Button from '../button'; import Button from '../button';
const [sfc, bem, t] = use('dialog'); const [createComponent, bem, t] = createNamespace('dialog');
export default sfc({ export default createComponent({
mixins: [PopupMixin], mixins: [PopupMixin],
props: { props: {

View File

@ -1,12 +1,12 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import Cell from '../cell'; import Cell from '../cell';
import Icon from '../icon'; import Icon from '../icon';
import Popup from '../popup'; import Popup from '../popup';
import { ChildrenMixin } from '../mixins/relation'; import { ChildrenMixin } from '../mixins/relation';
const [sfc, bem] = use('dropdown-item'); const [createComponent, bem] = createNamespace('dropdown-item');
export default sfc({ export default createComponent({
mixins: [ChildrenMixin('vanDropdownMenu')], mixins: [ChildrenMixin('vanDropdownMenu')],
props: { props: {

View File

@ -1,11 +1,11 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { BLUE } from '../utils/color'; import { BLUE } from '../utils/color';
import { ParentMixin } from '../mixins/relation'; import { ParentMixin } from '../mixins/relation';
import { ClickOutsideMixin } from '../mixins/click-outside'; import { ClickOutsideMixin } from '../mixins/click-outside';
const [sfc, bem] = use('dropdown-menu'); const [createComponent, bem] = createNamespace('dropdown-menu');
export default sfc({ export default createComponent({
mixins: [ mixins: [
ParentMixin('vanDropdownMenu'), ParentMixin('vanDropdownMenu'),
ClickOutsideMixin({ ClickOutsideMixin({

View File

@ -3,12 +3,12 @@ import Cell from '../cell';
import { cellProps } from '../cell/shared'; import { cellProps } from '../cell/shared';
import { preventDefault } from '../utils/dom/event'; import { preventDefault } from '../utils/dom/event';
import { getRootScrollTop } from '../utils/dom/scroll'; import { getRootScrollTop } from '../utils/dom/scroll';
import { use, isObj, isDef, suffixPx } from '../utils'; import { createNamespace, isObj, isDef, suffixPx } from '../utils';
import { isIOS } from '../utils/validate/system'; import { isIOS } from '../utils/validate/system';
const [sfc, bem] = use('field'); const [createComponent, bem] = createNamespace('field');
export default sfc({ export default createComponent({
inheritAttrs: false, inheritAttrs: false,
props: { props: {

View File

@ -1,4 +1,4 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import Button, { ButtonType, ButtonEvents } from '../button'; import Button, { ButtonType, ButtonEvents } from '../button';
import { emit, inherit } from '../utils/functional'; import { emit, inherit } from '../utils/functional';
import { functionalRoute, routeProps, RouteProps } from '../utils/router'; import { functionalRoute, routeProps, RouteProps } from '../utils/router';
@ -15,7 +15,7 @@ export type GoodsActionButtonProps = RouteProps & {
disabled?: boolean; disabled?: boolean;
}; };
const [sfc, bem] = use('goods-action-button'); const [createComponent, bem] = createNamespace('goods-action-button');
function GoodsActionButton( function GoodsActionButton(
h: CreateElement, h: CreateElement,
@ -52,4 +52,4 @@ GoodsActionButton.props = {
disabled: Boolean disabled: Boolean
}; };
export default sfc<GoodsActionButtonProps, ButtonEvents>(GoodsActionButton); export default createComponent<GoodsActionButtonProps, ButtonEvents>(GoodsActionButton);

View File

@ -1,4 +1,4 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import Icon, { IconEvents } from '../icon'; import Icon, { IconEvents } from '../icon';
import { emit, inherit } from '../utils/functional'; import { emit, inherit } from '../utils/functional';
import { functionalRoute, routeProps, RouteProps } from '../utils/router'; import { functionalRoute, routeProps, RouteProps } from '../utils/router';
@ -14,7 +14,7 @@ export type GoodsActionIconProps = RouteProps & {
iconClass?: any; iconClass?: any;
}; };
const [sfc, bem] = use('goods-action-icon'); const [createComponent, bem] = createNamespace('goods-action-icon');
function GoodsActionIcon( function GoodsActionIcon(
h: CreateElement, h: CreateElement,
@ -54,4 +54,4 @@ GoodsActionIcon.props = {
iconClass: null as any iconClass: null as any
}; };
export default sfc<GoodsActionIconProps, IconEvents>(GoodsActionIcon); export default createComponent<GoodsActionIconProps, IconEvents>(GoodsActionIcon);

View File

@ -1,4 +1,4 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { inherit } from '../utils/functional'; import { inherit } from '../utils/functional';
// Types // Types
@ -9,7 +9,7 @@ export type GoodsActionProps = {
safeAreaInsetBottom?: boolean; safeAreaInsetBottom?: boolean;
}; };
const [sfc, bem] = use('goods-action'); const [createComponent, bem] = createNamespace('goods-action');
function GoodsAction( function GoodsAction(
h: CreateElement, h: CreateElement,
@ -31,4 +31,4 @@ GoodsAction.props = {
safeAreaInsetBottom: Boolean safeAreaInsetBottom: Boolean
}; };
export default sfc<GoodsActionProps>(GoodsAction); export default createComponent<GoodsActionProps>(GoodsAction);

View File

@ -1,4 +1,4 @@
import { use, suffixPx } from '../utils'; import { createNamespace, suffixPx } from '../utils';
import { inherit } from '../utils/functional'; import { inherit } from '../utils/functional';
import Info from '../info'; import Info from '../info';
import Image from '../image'; import Image from '../image';
@ -20,7 +20,7 @@ export type IconEvents = {
onClick?(event: Event): void; onClick?(event: Event): void;
}; };
const [sfc, bem] = use('icon'); const [createComponent, bem] = createNamespace('icon');
function isImage(name?: string): boolean { function isImage(name?: string): boolean {
return name ? name.indexOf('/') !== -1 : false; return name ? name.indexOf('/') !== -1 : false;
@ -65,4 +65,4 @@ Icon.props = {
} }
}; };
export default sfc<IconProps, IconEvents>(Icon); export default createComponent<IconProps, IconEvents>(Icon);

View File

@ -1,4 +1,4 @@
import { use, isServer } from '../utils'; import { createNamespace, isServer } from '../utils';
import { range } from '../utils/format/number'; import { range } from '../utils/format/number';
import { preventDefault } from '../utils/dom/event'; import { preventDefault } from '../utils/dom/event';
import { PopupMixin } from '../mixins/popup'; import { PopupMixin } from '../mixins/popup';
@ -6,7 +6,7 @@ import { TouchMixin } from '../mixins/touch';
import Swipe from '../swipe'; import Swipe from '../swipe';
import SwipeItem from '../swipe-item'; import SwipeItem from '../swipe-item';
const [sfc, bem] = use('image-preview'); const [createComponent, bem] = createNamespace('image-preview');
function getDistance(touches) { function getDistance(touches) {
return Math.sqrt( return Math.sqrt(
@ -17,7 +17,7 @@ function getDistance(touches) {
); );
} }
export default sfc({ export default createComponent({
mixins: [PopupMixin, TouchMixin], mixins: [PopupMixin, TouchMixin],
props: { props: {

View File

@ -1,9 +1,9 @@
import { use, isDef, suffixPx } from '../utils'; import { createNamespace, isDef, suffixPx } from '../utils';
import Icon from '../icon'; import Icon from '../icon';
const [sfc, bem] = use('image'); const [createComponent, bem] = createNamespace('image');
export default sfc({ export default createComponent({
props: { props: {
src: String, src: String,
fit: String, fit: String,

View File

@ -1,9 +1,9 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { ChildrenMixin } from '../mixins/relation'; import { ChildrenMixin } from '../mixins/relation';
const [sfc, bem] = use('index-anchor'); const [createComponent, bem] = createNamespace('index-anchor');
export default sfc({ export default createComponent({
mixins: [ChildrenMixin('vanIndexBar', { indexKey: 'childrenIndex' })], mixins: [ChildrenMixin('vanIndexBar', { indexKey: 'childrenIndex' })],
props: { props: {

View File

@ -1,13 +1,13 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { TouchMixin } from '../mixins/touch'; import { TouchMixin } from '../mixins/touch';
import { ParentMixin } from '../mixins/relation'; import { ParentMixin } from '../mixins/relation';
import { BindEventMixin } from '../mixins/bind-event'; import { BindEventMixin } from '../mixins/bind-event';
import { GREEN } from '../utils/color'; import { GREEN } from '../utils/color';
import { getScrollTop, getElementTop, getScrollEventTarget } from '../utils/dom/scroll'; import { getScrollTop, getElementTop, getScrollEventTarget } from '../utils/dom/scroll';
const [sfc, bem] = use('index-bar'); const [createComponent, bem] = createNamespace('index-bar');
export default sfc({ export default createComponent({
mixins: [ mixins: [
TouchMixin, TouchMixin,
ParentMixin('vanIndexBar'), ParentMixin('vanIndexBar'),

View File

@ -1,4 +1,4 @@
import { use, isDef } from '../utils'; import { createNamespace, isDef } from '../utils';
import { inherit } from '../utils/functional'; import { inherit } from '../utils/functional';
// Types // Types
@ -9,7 +9,7 @@ export type InfoProps = {
info?: string | number; info?: string | number;
}; };
const [sfc, bem] = use('info'); const [createComponent, bem] = createNamespace('info');
function Info( function Info(
h: CreateElement, h: CreateElement,
@ -32,4 +32,4 @@ Info.props = {
info: [String, Number] info: [String, Number]
}; };
export default sfc<InfoProps>(Info); export default createComponent<InfoProps>(Info);

View File

@ -1,11 +1,11 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import Loading from '../loading'; import Loading from '../loading';
import { BindEventMixin } from '../mixins/bind-event'; import { BindEventMixin } from '../mixins/bind-event';
import { getScrollEventTarget } from '../utils/dom/scroll'; import { getScrollEventTarget } from '../utils/dom/scroll';
const [sfc, bem, t] = use('list'); const [createComponent, bem, t] = createNamespace('list');
export default sfc({ export default createComponent({
mixins: [ mixins: [
BindEventMixin(function (bind) { BindEventMixin(function (bind) {
if (!this.scroller) { if (!this.scroller) {

View File

@ -1,4 +1,4 @@
import { use, suffixPx } from '../utils'; import { createNamespace, suffixPx } from '../utils';
import { GRAY } from '../utils/color'; import { GRAY } from '../utils/color';
import { inherit } from '../utils/functional'; import { inherit } from '../utils/functional';
@ -16,7 +16,7 @@ export type LoadingProps = {
textSize?: string | number; textSize?: string | number;
}; };
const [sfc, bem] = use('loading'); const [createComponent, bem] = createNamespace('loading');
function LoadingIcon(h: CreateElement, props: LoadingProps) { function LoadingIcon(h: CreateElement, props: LoadingProps) {
if (props.type === 'spinner') { if (props.type === 'spinner') {
@ -87,4 +87,4 @@ Loading.props = {
} }
}; };
export default sfc<LoadingProps>(Loading); export default createComponent<LoadingProps>(Loading);

View File

@ -1,4 +1,4 @@
import { use, noop } from '../utils'; import { createNamespace, noop } from '../utils';
import { inherit } from '../utils/functional'; import { inherit } from '../utils/functional';
import Icon from '../icon'; import Icon from '../icon';
@ -27,7 +27,7 @@ export type NavBarEvents = {
'click-right'?(event: Event): void; 'click-right'?(event: Event): void;
}; };
const [sfc, bem] = use('nav-bar'); const [createComponent, bem] = createNamespace('nav-bar');
function NavBar( function NavBar(
h: CreateElement, h: CreateElement,
@ -86,4 +86,4 @@ NavBar.props = {
} }
}; };
export default sfc<NavBarProps, NavBarEvents>(NavBar); export default createComponent<NavBarProps, NavBarEvents>(NavBar);

View File

@ -1,9 +1,9 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import Icon from '../icon'; import Icon from '../icon';
const [sfc, bem] = use('notice-bar'); const [createComponent, bem] = createNamespace('notice-bar');
export default sfc({ export default createComponent({
props: { props: {
text: String, text: String,
mode: String, mode: String,

View File

@ -1,4 +1,4 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { RED, WHITE } from '../utils/color'; import { RED, WHITE } from '../utils/color';
import { inherit } from '../utils/functional'; import { inherit } from '../utils/functional';
import { PopupMixin } from '../mixins/popup'; import { PopupMixin } from '../mixins/popup';
@ -17,7 +17,7 @@ export type NotifyProps = PopupMixinProps & {
background: string; background: string;
}; };
const [sfc, bem] = use('notify'); const [createComponent, bem] = createNamespace('notify');
function Notify( function Notify(
h: CreateElement, h: CreateElement,
@ -64,4 +64,4 @@ Notify.props = {
} }
}; };
export default sfc<NotifyProps>(Notify); export default createComponent<NotifyProps>(Notify);

View File

@ -1,8 +1,8 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
const [sfc, bem] = use('key'); const [createComponent, bem] = createNamespace('key');
export default sfc({ export default createComponent({
props: { props: {
type: String, type: String,
theme: Array, theme: Array,

View File

@ -1,13 +1,13 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { stopPropagation } from '../utils/dom/event'; import { stopPropagation } from '../utils/dom/event';
import { BindEventMixin } from '../mixins/bind-event'; import { BindEventMixin } from '../mixins/bind-event';
import Key from './Key'; import Key from './Key';
const [sfc, bem, t] = use('number-keyboard'); const [createComponent, bem, t] = createNamespace('number-keyboard');
const CLOSE_KEY_THEME = ['blue', 'big']; const CLOSE_KEY_THEME = ['blue', 'big'];
const DELETE_KEY_THEME = ['delete', 'big', 'gray']; const DELETE_KEY_THEME = ['delete', 'big', 'gray'];
export default sfc({ export default createComponent({
mixins: [ mixins: [
BindEventMixin(function (bind) { BindEventMixin(function (bind) {
if (this.hideOnClickOutside) { if (this.hideOnClickOutside) {

View File

@ -1,4 +1,4 @@
import { use, isDef } from '../utils'; import { createNamespace, isDef } from '../utils';
import { inherit } from '../utils/functional'; import { inherit } from '../utils/functional';
import { preventDefault } from '../utils/dom/event'; import { preventDefault } from '../utils/dom/event';
@ -18,7 +18,7 @@ export type OverlayEvents = {
click(event: Event): void; click(event: Event): void;
}; };
const [sfc, bem] = use('overlay'); const [createComponent, bem] = createNamespace('overlay');
function preventTouchMove(event: TouchEvent) { function preventTouchMove(event: TouchEvent) {
preventDefault(event, true); preventDefault(event, true);
@ -63,4 +63,4 @@ Overlay.props = {
} }
}; };
export default sfc<OverlayProps, OverlayEvents>(Overlay); export default createComponent<OverlayProps, OverlayEvents>(Overlay);

View File

@ -1,12 +1,12 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
const [sfc, bem, t] = use('pagination'); const [createComponent, bem, t] = createNamespace('pagination');
function makePage(number, text, active) { function makePage(number, text, active) {
return { number, text, active }; return { number, text, active };
} }
export default sfc({ export default createComponent({
props: { props: {
value: Number, value: Number,
prevText: String, prevText: String,

View File

@ -1,4 +1,4 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import Cell from '../cell'; import Cell from '../cell';
import CellGroup from '../cell-group'; import CellGroup from '../cell-group';
import { inherit } from '../utils/functional'; import { inherit } from '../utils/functional';
@ -19,7 +19,7 @@ export type PanelSlots = DefaultSlots & {
footer?: ScopedSlot; footer?: ScopedSlot;
}; };
const [sfc, bem] = use('panel'); const [createComponent, bem] = createNamespace('panel');
function Panel( function Panel(
h: CreateElement, h: CreateElement,
@ -62,4 +62,4 @@ Panel.props = {
status: String status: String
}; };
export default sfc<PanelProps>(Panel); export default createComponent<PanelProps>(Panel);

View File

@ -1,4 +1,4 @@
import { use, suffixPx } from '../utils'; import { createNamespace, suffixPx } from '../utils';
import { emit, inherit } from '../utils/functional'; import { emit, inherit } from '../utils/functional';
// Types // Types
@ -14,7 +14,7 @@ export type PasswordInputProps = {
errorInfo?: string; errorInfo?: string;
}; };
const [sfc, bem] = use('password-input'); const [createComponent, bem] = createNamespace('password-input');
function PasswordInput( function PasswordInput(
h: CreateElement, h: CreateElement,
@ -76,4 +76,4 @@ PasswordInput.props = {
} }
}; };
export default sfc<PasswordInputProps>(PasswordInput); export default createComponent<PasswordInputProps>(PasswordInput);

View File

@ -1,5 +1,5 @@
import { deepClone } from '../utils/deep-clone'; import { deepClone } from '../utils/deep-clone';
import { use, isObj } from '../utils'; import { createNamespace, isObj } from '../utils';
import { range } from '../utils/format/number'; import { range } from '../utils/format/number';
import { preventDefault } from '../utils/dom/event'; import { preventDefault } from '../utils/dom/event';
import { TouchMixin } from '../mixins/touch'; import { TouchMixin } from '../mixins/touch';
@ -13,7 +13,7 @@ const MOMENTUM_DURATION = 1000;
const MOMENTUM_LIMIT_TIME = 300; const MOMENTUM_LIMIT_TIME = 300;
const MOMENTUM_LIMIT_DISTANCE = 15; const MOMENTUM_LIMIT_DISTANCE = 15;
const [sfc, bem] = use('picker-column'); const [createComponent, bem] = createNamespace('picker-column');
function getElementTranslateY(element) { function getElementTranslateY(element) {
const { transform } = window.getComputedStyle(element); const { transform } = window.getComputedStyle(element);
@ -26,7 +26,7 @@ function isOptionDisabled(option) {
return isObj(option) && option.disabled; return isObj(option) && option.disabled;
} }
export default sfc({ export default createComponent({
mixins: [TouchMixin], mixins: [TouchMixin],
props: { props: {

View File

@ -1,4 +1,4 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { preventDefault } from '../utils/dom/event'; import { preventDefault } from '../utils/dom/event';
import { deepClone } from '../utils/deep-clone'; import { deepClone } from '../utils/deep-clone';
import { pickerProps } from './shared'; import { pickerProps } from './shared';
@ -6,9 +6,9 @@ import { BLUE } from '../utils/color';
import Loading from '../loading'; import Loading from '../loading';
import PickerColumn from './PickerColumn'; import PickerColumn from './PickerColumn';
const [sfc, bem, t] = use('picker'); const [createComponent, bem, t] = createNamespace('picker');
export default sfc({ export default createComponent({
props: { props: {
...pickerProps, ...pickerProps,
columns: Array, columns: Array,

View File

@ -1,9 +1,9 @@
import { use, isDef } from '../utils'; import { createNamespace, isDef } from '../utils';
import { PopupMixin } from '../mixins/popup'; import { PopupMixin } from '../mixins/popup';
const [sfc, bem] = use('popup'); const [createComponent, bem] = createNamespace('popup');
export default sfc({ export default createComponent({
mixins: [PopupMixin], mixins: [PopupMixin],
props: { props: {

View File

@ -1,9 +1,9 @@
import { use, isDef } from '../utils'; import { createNamespace, isDef } from '../utils';
import { BLUE, WHITE } from '../utils/color'; import { BLUE, WHITE } from '../utils/color';
const [sfc, bem] = use('progress'); const [createComponent, bem] = createNamespace('progress');
export default sfc({ export default createComponent({
props: { props: {
inactive: Boolean, inactive: Boolean,
pivotText: String, pivotText: String,

View File

@ -1,13 +1,13 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { preventDefault } from '../utils/dom/event'; import { preventDefault } from '../utils/dom/event';
import { TouchMixin } from '../mixins/touch'; import { TouchMixin } from '../mixins/touch';
import { getScrollTop, getScrollEventTarget } from '../utils/dom/scroll'; import { getScrollTop, getScrollEventTarget } from '../utils/dom/scroll';
import Loading from '../loading'; import Loading from '../loading';
const [sfc, bem, t] = use('pull-refresh'); const [createComponent, bem, t] = createNamespace('pull-refresh');
const TEXT_STATUS = ['pulling', 'loosing', 'success']; const TEXT_STATUS = ['pulling', 'loosing', 'success'];
export default sfc({ export default createComponent({
mixins: [TouchMixin], mixins: [TouchMixin],
props: { props: {

View File

@ -1,9 +1,9 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { ParentMixin } from '../mixins/relation'; import { ParentMixin } from '../mixins/relation';
const [sfc, bem] = use('radio-group'); const [createComponent, bem] = createNamespace('radio-group');
export default sfc({ export default createComponent({
mixins: [ParentMixin('vanRadio')], mixins: [ParentMixin('vanRadio')],
props: { props: {

View File

@ -1,9 +1,9 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { CheckboxMixin } from '../mixins/checkbox'; import { CheckboxMixin } from '../mixins/checkbox';
const [sfc, bem] = use('radio'); const [createComponent, bem] = createNamespace('radio');
export default sfc({ export default createComponent({
mixins: [CheckboxMixin({ mixins: [CheckboxMixin({
bem, bem,
role: 'radio', role: 'radio',

View File

@ -1,5 +1,5 @@
/* eslint-disable prefer-spread */ /* eslint-disable prefer-spread */
import { use, suffixPx } from '../utils'; import { createNamespace, suffixPx } from '../utils';
import { emit, inherit } from '../utils/functional'; import { emit, inherit } from '../utils/functional';
import { preventDefault } from '../utils/dom/event'; import { preventDefault } from '../utils/dom/event';
import Icon from '../icon'; import Icon from '../icon';
@ -8,7 +8,7 @@ import Icon from '../icon';
import { CreateElement, RenderContext } from 'vue/types'; import { CreateElement, RenderContext } from 'vue/types';
import { DefaultSlots } from '../utils/types'; import { DefaultSlots } from '../utils/types';
const [sfc, bem] = use('rate'); const [createComponent, bem] = createNamespace('rate');
export type RateProps = { export type RateProps = {
size: number; size: number;
@ -186,4 +186,4 @@ Rate.props = {
} }
}; };
export default sfc<RateProps, RateEvents>(Rate); export default createComponent<RateProps, RateEvents>(Rate);

View File

@ -1,8 +1,8 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
const [sfc, bem] = use('row'); const [createComponent, bem] = createNamespace('row');
export default sfc({ export default createComponent({
props: { props: {
type: String, type: String,
align: String, align: String,

View File

@ -1,4 +1,4 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { inherit, emit } from '../utils/functional'; import { inherit, emit } from '../utils/functional';
import { preventDefault } from '../utils/dom/event'; import { preventDefault } from '../utils/dom/event';
import Field from '../field'; import Field from '../field';
@ -7,7 +7,7 @@ import Field from '../field';
import { CreateElement, RenderContext } from 'vue/types'; import { CreateElement, RenderContext } from 'vue/types';
import { DefaultSlots, ScopedSlot } from '../utils/types'; import { DefaultSlots, ScopedSlot } from '../utils/types';
const [sfc, bem, t] = use('search'); const [createComponent, bem, t] = createNamespace('search');
export type SearchProps = { export type SearchProps = {
shape: string; shape: string;
@ -134,4 +134,4 @@ Search.props = {
} }
}; };
export default sfc<SearchProps, SearchEvents, SearchSlots>(Search); export default createComponent<SearchProps, SearchEvents, SearchSlots>(Search);

View File

@ -1,10 +1,10 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import Info from '../info'; import Info from '../info';
import { ChildrenMixin } from '../mixins/relation'; import { ChildrenMixin } from '../mixins/relation';
const [sfc, bem] = use('sidebar-item'); const [createComponent, bem] = createNamespace('sidebar-item');
export default sfc({ export default createComponent({
mixins: [ChildrenMixin('vanSidebar')], mixins: [ChildrenMixin('vanSidebar')],
props: { props: {

View File

@ -1,9 +1,9 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { ParentMixin } from '../mixins/relation'; import { ParentMixin } from '../mixins/relation';
const [sfc, bem] = use('sidebar'); const [createComponent, bem] = createNamespace('sidebar');
export default sfc({ export default createComponent({
mixins: [ParentMixin('vanSidebar')], mixins: [ParentMixin('vanSidebar')],
props: { props: {

View File

@ -1,4 +1,4 @@
import { use, suffixPx } from '../utils'; import { createNamespace, suffixPx } from '../utils';
import { inherit } from '../utils/functional'; import { inherit } from '../utils/functional';
// Types // Types
@ -17,7 +17,7 @@ export type SkeletonProps = {
rowWidth: number | string | (number | string)[]; rowWidth: number | string | (number | string)[];
}; };
const [sfc, bem] = use('skeleton'); const [createComponent, bem] = createNamespace('skeleton');
const DEFAULT_ROW_WIDTH = '100%'; const DEFAULT_ROW_WIDTH = '100%';
const DEFAULT_LAST_ROW_WIDTH = '60%'; const DEFAULT_LAST_ROW_WIDTH = '60%';
@ -113,4 +113,4 @@ Skeleton.props = {
} }
}; };
export default sfc<SkeletonProps>(Skeleton); export default createComponent<SkeletonProps>(Skeleton);

View File

@ -9,14 +9,14 @@ import SkuRowItem from './components/SkuRowItem';
import SkuStepper from './components/SkuStepper'; import SkuStepper from './components/SkuStepper';
import SkuMessages from './components/SkuMessages'; import SkuMessages from './components/SkuMessages';
import SkuActions from './components/SkuActions'; import SkuActions from './components/SkuActions';
import { use, isDef } from '../utils'; import { createNamespace, isDef } from '../utils';
import { isAllSelected, isSkuChoosable, getSkuComb, getSelectedSkuValues } from './utils/skuHelper'; import { isAllSelected, isSkuChoosable, getSkuComb, getSelectedSkuValues } from './utils/skuHelper';
import { LIMIT_TYPE, UNSELECTED_SKU_VALUE_ID } from './constants'; import { LIMIT_TYPE, UNSELECTED_SKU_VALUE_ID } from './constants';
const [sfc] = use('sku'); const [createComponent] = createNamespace('sku');
const { QUOTA_LIMIT } = LIMIT_TYPE; const { QUOTA_LIMIT } = LIMIT_TYPE;
export default sfc({ export default createComponent({
props: { props: {
sku: Object, sku: Object,
goods: Object, goods: Object,

View File

@ -1,4 +1,4 @@
import { use } from '../../utils'; import { createNamespace } from '../../utils';
import { inherit } from '../../utils/functional'; import { inherit } from '../../utils/functional';
import Button from '../../button'; import Button from '../../button';
@ -12,7 +12,7 @@ export type SkuActionsProps = {
showAddCartBtn?: boolean; showAddCartBtn?: boolean;
}; };
const [sfc, bem] = use('sku-actions'); const [createComponent, bem] = createNamespace('sku-actions');
function SkuActions( function SkuActions(
h: CreateElement, h: CreateElement,
@ -52,4 +52,4 @@ SkuActions.props = {
showAddCartBtn: Boolean showAddCartBtn: Boolean
}; };
export default sfc<SkuActionsProps>(SkuActions); export default createComponent<SkuActionsProps>(SkuActions);

View File

@ -1,4 +1,4 @@
import { use } from '../../utils'; import { createNamespace } from '../../utils';
import { inherit } from '../../utils/functional'; import { inherit } from '../../utils/functional';
import Icon from '../../icon'; import Icon from '../../icon';
@ -14,7 +14,7 @@ export type SkuHeaderProps = {
selectedSku: SelectedSkuData; selectedSku: SelectedSkuData;
}; };
const [sfc, bem] = use('sku-header'); const [createComponent, bem] = createNamespace('sku-header');
function getSkuImg(sku: SkuData, selectedSku: SelectedSkuData) { function getSkuImg(sku: SkuData, selectedSku: SelectedSkuData) {
const id = selectedSku.s1; const id = selectedSku.s1;
@ -71,4 +71,4 @@ SkuHeader.props = {
selectedSku: Object selectedSku: Object
}; };
export default sfc<SkuHeaderProps>(SkuHeader); export default createComponent<SkuHeaderProps>(SkuHeader);

View File

@ -1,11 +1,11 @@
import { use } from '../../utils'; import { createNamespace } from '../../utils';
import Icon from '../../icon'; import Icon from '../../icon';
import Loading from '../../loading'; import Loading from '../../loading';
import Uploader from '../../uploader'; import Uploader from '../../uploader';
const [sfc, bem] = use('sku-img-uploader'); const [createComponent, bem] = createNamespace('sku-img-uploader');
export default sfc({ export default createComponent({
props: { props: {
value: String, value: String,
uploadImg: Function, uploadImg: Function,

View File

@ -1,4 +1,4 @@
import { use } from '../../utils'; import { createNamespace } from '../../utils';
import Cell from '../../cell'; import Cell from '../../cell';
import CellGroup from '../../cell-group'; import CellGroup from '../../cell-group';
import Field from '../../field'; import Field from '../../field';
@ -6,7 +6,7 @@ import { isEmail } from '../../utils/validate/email';
import { isNumber } from '../../utils/validate/number'; import { isNumber } from '../../utils/validate/number';
import SkuImgUploader from './SkuImgUploader'; import SkuImgUploader from './SkuImgUploader';
const [sfc, bem] = use('sku-messages'); const [createComponent, bem] = createNamespace('sku-messages');
const PLACEHOLDER = { const PLACEHOLDER = {
id_no: '输入身份证号码', id_no: '输入身份证号码',
@ -19,7 +19,7 @@ const PLACEHOLDER = {
mobile: '输入手机号码' mobile: '输入手机号码'
}; };
export default sfc({ export default createComponent({
props: { props: {
messages: Array, messages: Array,
messageConfig: Object, messageConfig: Object,

View File

@ -1,4 +1,4 @@
import { use } from '../../utils'; import { createNamespace } from '../../utils';
import { inherit } from '../../utils/functional'; import { inherit } from '../../utils/functional';
// Types // Types
@ -10,7 +10,7 @@ export type SkuRowProps = {
skuRow: SkuTreeItemData; skuRow: SkuTreeItemData;
}; };
const [sfc, bem] = use('sku-row'); const [createComponent, bem] = createNamespace('sku-row');
function SkuRow( function SkuRow(
h: CreateElement, h: CreateElement,
@ -30,4 +30,4 @@ SkuRow.props = {
skuRow: Object skuRow: Object
}; };
export default sfc<SkuRowProps>(SkuRow); export default createComponent<SkuRowProps>(SkuRow);

View File

@ -1,9 +1,9 @@
import { use } from '../../utils'; import { createNamespace } from '../../utils';
import { isSkuChoosable } from '../utils/skuHelper'; import { isSkuChoosable } from '../utils/skuHelper';
const [sfc] = use('sku-row-item'); const [createComponent] = createNamespace('sku-row-item');
export default sfc({ export default createComponent({
props: { props: {
skuList: Array, skuList: Array,
skuValue: Object, skuValue: Object,

View File

@ -1,11 +1,11 @@
import { use } from '../../utils'; import { createNamespace } from '../../utils';
import Stepper from '../../stepper'; import Stepper from '../../stepper';
import { LIMIT_TYPE } from '../constants'; import { LIMIT_TYPE } from '../constants';
const [sfc] = use('sku-stepper'); const [createComponent] = createNamespace('sku-stepper');
const { QUOTA_LIMIT, STOCK_LIMIT } = LIMIT_TYPE; const { QUOTA_LIMIT, STOCK_LIMIT } = LIMIT_TYPE;
export default sfc({ export default createComponent({
props: { props: {
quota: Number, quota: Number,
quotaUsed: Number, quotaUsed: Number,

View File

@ -1,10 +1,10 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { TouchMixin } from '../mixins/touch'; import { TouchMixin } from '../mixins/touch';
import { preventDefault } from '../utils/dom/event'; import { preventDefault } from '../utils/dom/event';
const [sfc, bem] = use('slider'); const [createComponent, bem] = createNamespace('slider');
export default sfc({ export default createComponent({
mixins: [TouchMixin], mixins: [TouchMixin],
props: { props: {

View File

@ -1,9 +1,9 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import Icon from '../icon'; import Icon from '../icon';
const [sfc, bem] = use('step'); const [createComponent, bem] = createNamespace('step');
export default sfc({ export default createComponent({
beforeCreate() { beforeCreate() {
const { steps } = this.$parent; const { steps } = this.$parent;
const index = this.$parent.slots().indexOf(this.$vnode); const index = this.$parent.slots().indexOf(this.$vnode);

View File

@ -1,8 +1,8 @@
import { use, isDef, suffixPx } from '../utils'; import { createNamespace, isDef, suffixPx } from '../utils';
const [sfc, bem] = use('stepper'); const [createComponent, bem] = createNamespace('stepper');
export default sfc({ export default createComponent({
props: { props: {
value: null, value: null,
integer: Boolean, integer: Boolean,

View File

@ -1,9 +1,9 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { GREEN } from '../utils/color'; import { GREEN } from '../utils/color';
const [sfc, bem] = use('steps'); const [createComponent, bem] = createNamespace('steps');
export default sfc({ export default createComponent({
props: { props: {
active: Number, active: Number,
inactiveIcon: String, inactiveIcon: String,

View File

@ -1,4 +1,4 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { emit, inherit } from '../utils/functional'; import { emit, inherit } from '../utils/functional';
import Button, { ButtonType } from '../button'; import Button, { ButtonType } from '../button';
import Icon from '../icon'; import Icon from '../icon';
@ -27,7 +27,7 @@ export type SubmitBarSlots = DefaultSlots & {
tip?: ScopedSlot; tip?: ScopedSlot;
}; };
const [sfc, bem, t] = use('submit-bar'); const [createComponent, bem, t] = createNamespace('submit-bar');
function SubmitBar( function SubmitBar(
h: CreateElement, h: CreateElement,
@ -119,4 +119,4 @@ SubmitBar.props = {
} }
}; };
export default sfc<SubmitBarProps, {}, SubmitBarSlots>(SubmitBar); export default createComponent<SubmitBarProps, {}, SubmitBarSlots>(SubmitBar);

View File

@ -1,13 +1,13 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { range } from '../utils/format/number'; import { range } from '../utils/format/number';
import { preventDefault } from '../utils/dom/event'; import { preventDefault } from '../utils/dom/event';
import { TouchMixin } from '../mixins/touch'; import { TouchMixin } from '../mixins/touch';
import { ClickOutsideMixin } from '../mixins/click-outside'; import { ClickOutsideMixin } from '../mixins/click-outside';
const [sfc, bem] = use('swipe-cell'); const [createComponent, bem] = createNamespace('swipe-cell');
const THRESHOLD = 0.15; const THRESHOLD = 0.15;
export default sfc({ export default createComponent({
mixins: [ mixins: [
TouchMixin, TouchMixin,
ClickOutsideMixin({ ClickOutsideMixin({

View File

@ -1,8 +1,8 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
const [sfc, bem] = use('swipe-item'); const [createComponent, bem] = createNamespace('swipe-item');
export default sfc({ export default createComponent({
data() { data() {
return { return {
offset: 0 offset: 0

View File

@ -1,11 +1,11 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { preventDefault } from '../utils/dom/event'; import { preventDefault } from '../utils/dom/event';
import { TouchMixin } from '../mixins/touch'; import { TouchMixin } from '../mixins/touch';
import { BindEventMixin } from '../mixins/bind-event'; import { BindEventMixin } from '../mixins/bind-event';
const [sfc, bem] = use('swipe'); const [createComponent, bem] = createNamespace('swipe');
export default sfc({ export default createComponent({
mixins: [ mixins: [
TouchMixin, TouchMixin,
BindEventMixin(function (bind, isBind) { BindEventMixin(function (bind, isBind) {

View File

@ -1,4 +1,4 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { inherit } from '../utils/functional'; import { inherit } from '../utils/functional';
import Cell from '../cell'; import Cell from '../cell';
import Switch, { SwitchEvents } from '../switch'; import Switch, { SwitchEvents } from '../switch';
@ -15,7 +15,7 @@ export type SwitchCellProps = SharedSwitchProps & {
cellSize?: string; cellSize?: string;
}; };
const [sfc, bem] = use('switch-cell'); const [createComponent, bem] = createNamespace('switch-cell');
function SwitchCell( function SwitchCell(
h: CreateElement, h: CreateElement,
@ -51,4 +51,4 @@ SwitchCell.props = {
} }
}; };
export default sfc<SwitchCellProps, SwitchEvents>(SwitchCell); export default createComponent<SwitchCellProps, SwitchEvents>(SwitchCell);

View File

@ -1,4 +1,4 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { BLUE, GRAY_DARK } from '../utils/color'; import { BLUE, GRAY_DARK } from '../utils/color';
import { switchProps, SharedSwitchProps } from './shared'; import { switchProps, SharedSwitchProps } from './shared';
import { emit, inherit } from '../utils/functional'; import { emit, inherit } from '../utils/functional';
@ -12,7 +12,7 @@ export type SwitchEvents = {
onChange?(checked: boolean): void; onChange?(checked: boolean): void;
}; };
const [sfc, bem] = use('switch'); const [createComponent, bem] = createNamespace('switch');
function Switch( function Switch(
h: CreateElement, h: CreateElement,
@ -69,4 +69,4 @@ function Switch(
Switch.props = switchProps; Switch.props = switchProps;
export default sfc<SharedSwitchProps, SwitchEvents>(Switch); export default createComponent<SharedSwitchProps, SwitchEvents>(Switch);

View File

@ -1,10 +1,10 @@
/* eslint-disable object-shorthand */ /* eslint-disable object-shorthand */
import { use } from '../utils'; import { createNamespace } from '../utils';
import { ChildrenMixin } from '../mixins/relation'; import { ChildrenMixin } from '../mixins/relation';
const [sfc, bem] = use('tab'); const [createComponent, bem] = createNamespace('tab');
export default sfc({ export default createComponent({
mixins: [ChildrenMixin('vanTabs')], mixins: [ChildrenMixin('vanTabs')],
props: { props: {

View File

@ -1,12 +1,12 @@
import { use, isObj } from '../utils'; import { createNamespace, isObj } from '../utils';
import Icon from '../icon'; import Icon from '../icon';
import Info from '../info'; import Info from '../info';
import { route, routeProps } from '../utils/router'; import { route, routeProps } from '../utils/router';
import { ChildrenMixin } from '../mixins/relation'; import { ChildrenMixin } from '../mixins/relation';
const [sfc, bem] = use('tabbar-item'); const [createComponent, bem] = createNamespace('tabbar-item');
export default sfc({ export default createComponent({
mixins: [ChildrenMixin('vanTabbar')], mixins: [ChildrenMixin('vanTabbar')],
props: { props: {

View File

@ -1,9 +1,9 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { ParentMixin } from '../mixins/relation'; import { ParentMixin } from '../mixins/relation';
const [sfc, bem] = use('tabbar'); const [createComponent, bem] = createNamespace('tabbar');
export default sfc({ export default createComponent({
mixins: [ParentMixin('vanTabbar')], mixins: [ParentMixin('vanTabbar')],
props: { props: {

View File

@ -1,10 +1,10 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { TouchMixin } from '../mixins/touch'; import { TouchMixin } from '../mixins/touch';
const [sfc, bem] = use('tabs'); const [createComponent, bem] = createNamespace('tabs');
const MIN_SWIPE_DISTANCE = 50; const MIN_SWIPE_DISTANCE = 50;
export default sfc({ export default createComponent({
mixins: [TouchMixin], mixins: [TouchMixin],
props: { props: {

View File

@ -1,6 +1,6 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
const bem = use('tab')[1]; const bem = createNamespace('tab')[1];
export default { export default {
props: { props: {

View File

@ -1,4 +1,4 @@
import { use, isDef, suffixPx } from '../utils'; import { createNamespace, isDef, suffixPx } from '../utils';
import { scrollLeftTo } from './utils'; import { scrollLeftTo } from './utils';
import { on, off } from '../utils/dom/event'; import { on, off } from '../utils/dom/event';
import { ParentMixin } from '../mixins/relation'; import { ParentMixin } from '../mixins/relation';
@ -12,9 +12,9 @@ import {
import Title from './Title'; import Title from './Title';
import Content from './Content'; import Content from './Content';
const [sfc, bem] = use('tabs'); const [createComponent, bem] = createNamespace('tabs');
export default sfc({ export default createComponent({
mixins: [ mixins: [
ParentMixin('vanTabs'), ParentMixin('vanTabs'),
BindEventMixin(function (bind, isBind) { BindEventMixin(function (bind, isBind) {

View File

@ -1,4 +1,4 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { inherit } from '../utils/functional'; import { inherit } from '../utils/functional';
import { RED, BLUE, GREEN, GRAY_DARK } from '../utils/color'; import { RED, BLUE, GREEN, GRAY_DARK } from '../utils/color';
@ -20,7 +20,7 @@ export type TagProps = {
textColor?: string; textColor?: string;
}; };
const [sfc, bem] = use('tag'); const [createComponent, bem] = createNamespace('tag');
const COLOR_MAP: { [key: string]: string } = { const COLOR_MAP: { [key: string]: string } = {
danger: RED, danger: RED,
@ -75,4 +75,4 @@ Tag.props = {
textColor: String textColor: String
}; };
export default sfc<TagProps>(Tag); export default createComponent<TagProps>(Tag);

View File

@ -1,11 +1,11 @@
import { use, isDef } from '../utils'; import { createNamespace, isDef } from '../utils';
import { PopupMixin } from '../mixins/popup'; import { PopupMixin } from '../mixins/popup';
import Icon from '../icon'; import Icon from '../icon';
import Loading from '../loading'; import Loading from '../loading';
const [sfc, bem] = use('toast'); const [createComponent, bem] = createNamespace('toast');
export default sfc({ export default createComponent({
mixins: [PopupMixin], mixins: [PopupMixin],
props: { props: {

View File

@ -1,4 +1,4 @@
import { use } from '../utils'; import { createNamespace } from '../utils';
import { emit, inherit } from '../utils/functional'; import { emit, inherit } from '../utils/functional';
import Icon from '../icon'; import Icon from '../icon';
@ -25,7 +25,7 @@ export type TreeSelectProps = {
mainActiveIndex: number; mainActiveIndex: number;
}; };
const [sfc, bem] = use('tree-select'); const [createComponent, bem] = createNamespace('tree-select');
function TreeSelect( function TreeSelect(
h: CreateElement, h: CreateElement,
@ -102,4 +102,4 @@ TreeSelect.props = {
} }
}; };
export default sfc<TreeSelectProps>(TreeSelect); export default createComponent<TreeSelectProps>(TreeSelect);

View File

@ -1,16 +1,16 @@
import { use, suffixPx } from '../utils'; import { createNamespace, suffixPx } from '../utils';
import { toArray, readFile, isOversize } from './utils'; import { toArray, readFile, isOversize } from './utils';
import Icon from '../icon'; import Icon from '../icon';
import Image from '../image'; import Image from '../image';
import ImagePreview from '../image-preview'; import ImagePreview from '../image-preview';
const [sfc, bem] = use('uploader'); const [createComponent, bem] = createNamespace('uploader');
function isImageDataUrl(dataUrl) { function isImageDataUrl(dataUrl) {
return dataUrl.indexOf('data:image') === 0; return dataUrl.indexOf('data:image') === 0;
} }
export default sfc({ export default createComponent({
inheritAttrs: false, inheritAttrs: false,
model: { model: {

View File

@ -36,7 +36,7 @@ function prefix(name: string, mods: Mods): Mods {
return ret; return ret;
} }
export function useBEM(name: string) { export function createBEM(name: string) {
return function (el?: Mods, mods?: Mods): Mods { return function (el?: Mods, mods?: Mods): Mods {
if (el && typeof el !== 'string') { if (el && typeof el !== 'string') {
mods = el; mods = el;

View File

@ -76,7 +76,7 @@ function transformFunctionComponent(pure: FunctionComponent): VantComponentOptio
}; };
} }
export function useSFC(name: string) { export function createComponent(name: string) {
return function<Props = DefaultProps, Events = {}, Slots = {}> ( return function<Props = DefaultProps, Events = {}, Slots = {}> (
sfc: VantComponentOptions | FunctionComponent sfc: VantComponentOptions | FunctionComponent
): TsxComponent<Props, Events, Slots> { ): TsxComponent<Props, Events, Slots> {

View File

@ -2,7 +2,7 @@ import { get } from '..';
import { camelize } from '../format/string'; import { camelize } from '../format/string';
import locale from '../../locale'; import locale from '../../locale';
export function useI18N(name: string) { export function createI18N(name: string) {
const prefix = camelize(name) + '.'; const prefix = camelize(name) + '.';
return function (path: string, ...args: any[]): string { return function (path: string, ...args: any[]): string {

View File

@ -0,0 +1,14 @@
import { createBEM } from './bem';
import { createComponent } from './component';
import { createI18N } from './i18n';
type CreateNamespaceReturn = [
ReturnType<typeof createComponent>,
ReturnType<typeof createBEM>,
ReturnType<typeof createI18N>
];
export function createNamespace(name: string): CreateNamespaceReturn {
name = 'van-' + name;
return [createComponent(name), createBEM(name), createI18N(name)];
}

View File

@ -1,6 +1,6 @@
import Vue from 'vue'; import Vue from 'vue';
export { use } from './use'; export { createNamespace } from './create';
export { suffixPx } from './format/unit'; export { suffixPx } from './format/unit';
export const isServer: boolean = Vue.prototype.$isServer; export const isServer: boolean = Vue.prototype.$isServer;

View File

@ -1,14 +0,0 @@
import { useBEM } from './bem';
import { useSFC } from './sfc';
import { useI18N } from './i18n';
type UseReturn = [
ReturnType<typeof useSFC>,
ReturnType<typeof useBEM>,
ReturnType<typeof useI18N>
];
export function use(name: string): UseReturn {
name = 'van-' + name;
return [useSFC(name), useBEM(name), useI18N(name)];
}