chore: sort imports

This commit is contained in:
陈嘉涵 2020-01-19 19:29:30 +08:00
parent 77756f30e6
commit bb53c3c758
56 changed files with 219 additions and 55 deletions

View File

@ -1,7 +1,12 @@
// Utils
import { createNamespace } from '../utils';
import { emit, inherit } from '../utils/functional';
import { BORDER_TOP } from '../utils/constant';
// Mixins
import { popupMixinProps } from '../mixins/popup';
// Components
import Icon from '../icon';
import Popup from '../popup';
import Loading from '../loading';

View File

@ -1,5 +1,8 @@
// Utils
import { createNamespace } from '../utils';
import { isAndroid } from '../utils/validate/system';
// Components
import Cell from '../cell';
import Field from '../field';

View File

@ -1,5 +1,8 @@
// Utils
import { createNamespace, isObj } from '../utils';
import { isMobile } from '../utils/validate/mobile';
// Components
import Area from '../area';
import Field from '../field';
import Popup from '../popup';

View File

@ -1,9 +1,12 @@
// Utils
import { createNamespace } from '../utils';
import { emit, inherit } from '../utils/functional';
// Components
import Tag from '../tag';
import Icon from '../icon';
import Cell from '../cell';
import Radio from '../radio';
import Tag from '../tag';
// Types
import { CreateElement, RenderContext } from 'vue/types';

View File

@ -1,5 +1,8 @@
// Utils
import { createNamespace } from '../utils';
import { emit, inherit } from '../utils/functional';
// Components
import Button from '../button';
import RadioGroup from '../radio-group';
import AddressItem, { AddressItemData } from './Item';

View File

@ -1,7 +1,10 @@
// Utils
import { createNamespace } from '../utils';
import { emit, inherit } from '../utils/functional';
import { BORDER_SURROUND, WHITE } from '../utils/constant';
import { routeProps, RouteProps, functionalRoute } from '../utils/router';
// Components
import Icon from '../icon';
import Loading, { LoadingType } from '../loading';

View File

@ -1,3 +1,4 @@
// Utils
import { isDate } from '../utils/validate/date';
import { getScrollTop } from '../utils/dom/scroll';
import {
@ -11,6 +12,7 @@ import {
ROW_HEIGHT,
} from './utils';
// Components
import Popup from '../popup';
import Button from '../button';
import Toast from '../toast';

View File

@ -1,5 +1,8 @@
// Utils
import { createNamespace, isDef } from '../utils';
import { emit, inherit } from '../utils/functional';
// Components
import Tag from '../tag';
import Image from '../image';

View File

@ -1,3 +1,4 @@
// Utils
import { createNamespace } from '../utils';
import { inherit } from '../utils/functional';
import { BORDER_TOP_BOTTOM } from '../utils/constant';

View File

@ -1,7 +1,10 @@
// Utils
import { createNamespace, isDef } from '../utils';
import { cellProps, SharedCellProps } from './shared';
import { emit, inherit } from '../utils/functional';
import { routeProps, RouteProps, functionalRoute } from '../utils/router';
import { cellProps, SharedCellProps } from './shared';
// Components
import Icon from '../icon';
// Types

View File

@ -1,9 +1,14 @@
// Utils
import { createNamespace, isDef } from '../utils';
import { BORDER_TOP } from '../utils/constant';
import { raf, doubleRaf } from '../utils/dom/raf';
// Mixins
import { ChildrenMixin } from '../mixins/relation';
// Components
import Cell from '../cell';
import { cellProps } from '../cell/shared';
import { ChildrenMixin } from '../mixins/relation';
const [createComponent, bem] = createNamespace('collapse-item');

View File

@ -1,5 +1,8 @@
// Utils
import { createNamespace } from '../utils';
import { emit, inherit } from '../utils/functional';
// Components
import Cell from '../cell';
// Types

View File

@ -1,10 +1,13 @@
// Utils
import { createNamespace } from '../utils';
import Button from '../button';
import { isMobile } from '../utils/validate/mobile';
// Components
import Cell from '../cell';
import Field from '../field';
import Button from '../button';
import Dialog from '../dialog';
import Switch from '../switch';
import Cell from '../cell';
import { isMobile } from '../utils/validate/mobile';
const [createComponent, bem, t] = createNamespace('contact-edit');

View File

@ -1,16 +1,19 @@
// Utils
import { createNamespace } from '../utils';
import { RED } from '../utils/constant';
import { emit, inherit } from '../utils/functional';
// Components
import Tag from '../tag';
import Icon from '../icon';
import Cell from '../cell';
import Tag from '../tag';
import Button from '../button';
import Radio from '../radio';
import Button from '../button';
import RadioGroup from '../radio-group';
// Types
import { CreateElement, RenderContext, VNode } from 'vue/types';
import { DefaultSlots } from '../utils/types';
import { CreateElement, RenderContext, VNode } from 'vue/types';
export type ContactListItem = {
id: string | number;

View File

@ -1,5 +1,8 @@
// Utils
import { createNamespace } from '../utils';
import { inherit } from '../utils/functional';
// Components
import Cell from '../cell';
// Types

View File

@ -1,4 +1,7 @@
// Utils
import { createNamespace } from '../utils';
// Components
import Tab from '../tab';
import Tabs from '../tabs';
import Field from '../field';

View File

@ -1,3 +1,4 @@
// Utils
import { createNamespace } from '../utils';
import { inherit } from '../utils/functional';

View File

@ -1,7 +1,12 @@
// Utils
import { createNamespace } from '../utils';
import { on, off } from '../utils/dom/event';
// Mixins
import { PortalMixin } from '../mixins/portal';
import { ChildrenMixin } from '../mixins/relation';
import { on, off } from '../utils/dom/event';
// Components
import Cell from '../cell';
import Icon from '../icon';
import Popup from '../popup';

View File

@ -1,8 +1,11 @@
// Utils
import { createNamespace } from '../utils';
import { BORDER_TOP_BOTTOM } from '../utils/constant';
import { getScroller } from '../utils/dom/scroll';
// Mixins
import { ParentMixin } from '../mixins/relation';
import { ClickOutsideMixin } from '../mixins/click-outside';
import { getScroller } from '../utils/dom/scroll';
const [createComponent, bem] = createNamespace('dropdown-menu');

View File

@ -1,11 +1,14 @@
// Utils
import { formatNumber } from './utils';
import { isIOS } from '../utils/validate/system';
import { preventDefault } from '../utils/dom/event';
import { resetScroll } from '../utils/dom/reset-scroll';
import { createNamespace, isObj, isDef, addUnit } from '../utils';
// Components
import Icon from '../icon';
import Cell from '../cell';
import { cellProps } from '../cell/shared';
import { preventDefault } from '../utils/dom/event';
import { resetScroll } from '../utils/dom/reset-scroll';
import { isIOS } from '../utils/validate/system';
import { formatNumber } from './utils';
import { createNamespace, isObj, isDef, addUnit } from '../utils';
const [createComponent, bem] = createNamespace('field');

View File

@ -1,7 +1,12 @@
// Utils
import { createNamespace, addUnit } from '../utils';
import { BORDER } from '../utils/constant';
import { ChildrenMixin } from '../mixins/relation';
import { route, routeProps } from '../utils/router';
// Mixins
import { ChildrenMixin } from '../mixins/relation';
// Components
import Info from '../info';
import Icon from '../icon';

View File

@ -1,6 +1,6 @@
import { createNamespace, addUnit } from '../utils';
import { ParentMixin } from '../mixins/relation';
import { BORDER_TOP } from '../utils/constant';
import { ParentMixin } from '../mixins/relation';
const [createComponent, bem] = createNamespace('grid');

View File

@ -1,5 +1,8 @@
// Utils
import { createNamespace, addUnit } from '../utils';
import { inherit } from '../utils/functional';
// Components
import Info from '../info';
// Types

View File

@ -1,11 +1,16 @@
// Utils
import { createNamespace } from '../utils';
import { range } from '../utils/format/number';
import { on, preventDefault } from '../utils/dom/event';
// Mixins
import { PopupMixin } from '../mixins/popup';
import { TouchMixin } from '../mixins/touch';
// Components
import Image from '../image';
import Loading from '../loading';
import Swipe from '../swipe';
import Loading from '../loading';
import SwipeItem from '../swipe-item';
const [createComponent, bem] = createNamespace('image-preview');

View File

@ -1,18 +1,32 @@
// Utils
import { createNamespace } from '../utils';
import { TouchMixin } from '../mixins/touch';
import { ParentMixin } from '../mixins/relation';
import { BindEventMixin } from '../mixins/bind-event';
import { GREEN } from '../utils/constant';
import { preventDefault } from '../utils/dom/event';
import { isHidden } from '../utils/dom/style';
import { preventDefault } from '../utils/dom/event';
import {
getScroller,
getScrollTop,
getElementTop,
getRootScrollTop,
setRootScrollTop,
getScroller,
} from '../utils/dom/scroll';
// Mixins
import { TouchMixin } from '../mixins/touch';
import { ParentMixin } from '../mixins/relation';
import { BindEventMixin } from '../mixins/bind-event';
function genAlphabet() {
const indexList = [];
const charCodeOfA = 'A'.charCodeAt(0);
for (let i = 0; i < 26; i++) {
indexList.push(String.fromCharCode(charCodeOfA + i));
}
return indexList;
}
const [createComponent, bem] = createNamespace('index-bar');
export default createComponent({
@ -47,16 +61,7 @@ export default createComponent({
},
indexList: {
type: Array,
default() {
const indexList = [];
const charCodeOfA = 'A'.charCodeAt(0);
for (let i = 0; i < 26; i++) {
indexList.push(String.fromCharCode(charCodeOfA + i));
}
return indexList;
},
default: genAlphabet,
},
},

View File

@ -1,3 +1,4 @@
// Utils
import { createNamespace, isDef } from '../utils';
import { inherit } from '../utils/functional';

View File

@ -1,7 +1,12 @@
// Utils
import { createNamespace } from '../utils';
import { isHidden } from '../utils/dom/style';
import { BindEventMixin } from '../mixins/bind-event';
import { getScroller } from '../utils/dom/scroll';
// Mixins
import { BindEventMixin } from '../mixins/bind-event';
// Components
import Loading from '../loading';
const [createComponent, bem, t] = createNamespace('list');

View File

@ -1,3 +1,4 @@
// Utils
import { createNamespace, addUnit } from '../utils';
import { inherit } from '../utils/functional';

View File

@ -1,6 +1,9 @@
// Utils
import { createNamespace, noop } from '../utils';
import { inherit } from '../utils/functional';
import { BORDER_BOTTOM } from '../utils/constant';
// Components
import Icon from '../icon';
// Types

View File

@ -1,7 +1,12 @@
// Utils
import { createNamespace } from '../utils';
import { WHITE } from '../utils/constant';
import { inherit } from '../utils/functional';
// Mixins
import { popupMixinProps } from '../mixins/popup';
// Components
import Popup from '../popup';
// Types

View File

@ -1,3 +1,4 @@
// Utils
import { createNamespace, isDef } from '../utils';
import { inherit } from '../utils/functional';
import { preventDefault } from '../utils/dom/event';

View File

@ -1,6 +1,9 @@
// Utils
import { createNamespace } from '../utils';
import { inherit } from '../utils/functional';
import { BORDER_TOP } from '../utils/constant';
// Components
import Cell from '../cell';
import CellGroup from '../cell-group';

View File

@ -1,3 +1,4 @@
// Utils
import { createNamespace, addUnit } from '../utils';
import { emit, inherit } from '../utils/functional';
import { BORDER_LEFT, BORDER_SURROUND } from '../utils/constant';

View File

@ -1,8 +1,11 @@
// Utils
import { createNamespace } from '../utils';
import { preventDefault } from '../utils/dom/event';
import { deepClone } from '../utils/deep-clone';
import { pickerProps } from './shared';
import { BORDER_TOP_BOTTOM, BORDER_UNSET_TOP_BOTTOM } from '../utils/constant';
import { pickerProps } from './shared';
// Components
import Loading from '../loading';
import PickerColumn from './PickerColumn';

View File

@ -1,7 +1,12 @@
// Utils
import { createNamespace } from '../utils';
import { preventDefault } from '../utils/dom/event';
import { TouchMixin } from '../mixins/touch';
import { getScrollTop, getScroller } from '../utils/dom/scroll';
// Mixins
import { TouchMixin } from '../mixins/touch';
// Components
import Loading from '../loading';
const [createComponent, bem, t] = createNamespace('pull-refresh');

View File

@ -1,6 +1,9 @@
// Utils
import { createNamespace } from '../utils';
import { inherit, emit } from '../utils/functional';
import { preventDefault } from '../utils/dom/event';
// Components
import Field from '../field';
// Types

View File

@ -1,3 +1,4 @@
// Utils
import { createNamespace, addUnit } from '../utils';
import { inherit } from '../utils/functional';

View File

@ -1,10 +1,13 @@
// Utils
import { createNamespace } from '../../utils';
import { inherit } from '../../utils/functional';
// Components
import Button from '../../button';
// Types
import Vue, { CreateElement, RenderContext } from 'vue/types';
import { DefaultSlots } from '../../utils/types';
import Vue, { CreateElement, RenderContext } from 'vue/types';
export type SkuActionsProps = {
buyText?: string;

View File

@ -1,3 +1,4 @@
// Utils
import { createNamespace } from '../../utils';
import { inherit } from '../../utils/functional';
import { BORDER_BOTTOM } from '../../utils/constant';

View File

@ -1,3 +1,4 @@
// Utils
import { createNamespace } from '../../utils';
import { inherit } from '../../utils/functional';

View File

@ -1,4 +1,7 @@
// Utils
import { createNamespace } from '../../utils';
// Components
import Icon from '../../icon';
import Loading from '../../loading';
import Uploader from '../../uploader';

View File

@ -1,9 +1,12 @@
// Utils
import { createNamespace } from '../../utils';
import Cell from '../../cell';
import CellGroup from '../../cell-group';
import Field from '../../field';
import { isEmail } from '../../utils/validate/email';
import { isNumeric } from '../../utils/validate/number';
// Components
import Cell from '../../cell';
import Field from '../../field';
import CellGroup from '../../cell-group';
import SkuImgUploader from './SkuImgUploader';
const [createComponent, bem, t] = createNamespace('sku-messages');

View File

@ -1,3 +1,4 @@
// Utils
import { createNamespace } from '../../utils';
import { inherit } from '../../utils/functional';
import { BORDER_BOTTOM } from '../../utils/constant';

View File

@ -1,6 +1,6 @@
import { createNamespace } from '../../utils';
import Stepper from '../../stepper';
import { LIMIT_TYPE } from '../constants';
import Stepper from '../../stepper';
const namespace = createNamespace('sku-stepper');
const createComponent = namespace[0];

View File

@ -1,6 +1,11 @@
// Utils
import lang from './lang';
import Locale from '../locale';
import constants from './constants';
import skuHelper from './utils/skuHelper';
// Components
import Sku from './Sku';
import Locale from '../locale';
import SkuActions from './components/SkuActions';
import SkuHeader from './components/SkuHeader';
import SkuHeaderItem from './components/SkuHeaderItem';
@ -9,8 +14,6 @@ import SkuStepper from './components/SkuStepper';
import SkuRow from './components/SkuRow';
import SkuRowItem from './components/SkuRowItem';
import SkuRowPropItem from './components/SkuRowPropItem';
import skuHelper from './utils/skuHelper';
import constants from './constants';
Locale.add(lang);

View File

@ -1,7 +1,10 @@
// Utils
import { createNamespace } from '../utils';
import { emit, inherit } from '../utils/functional';
import Button, { ButtonType } from '../button';
// Components
import Icon from '../icon';
import Button, { ButtonType } from '../button';
// Types
import { CreateElement, RenderContext } from 'vue/types';

View File

@ -1,6 +1,9 @@
// Utils
import { createNamespace } from '../utils';
import { range } from '../utils/format/number';
import { preventDefault } from '../utils/dom/event';
// Mixins
import { TouchMixin } from '../mixins/touch';
import { ClickOutsideMixin } from '../mixins/click-outside';

View File

@ -1,10 +1,13 @@
// Utils
import { createNamespace } from '../utils';
import { preventDefault } from '../utils/dom/event';
import { TouchMixin } from '../mixins/touch';
import { BindEventMixin } from '../mixins/bind-event';
import { doubleRaf } from '../utils/dom/raf';
import { range } from '../utils/format/number';
// Mixins
import { TouchMixin } from '../mixins/touch';
import { BindEventMixin } from '../mixins/bind-event';
const [createComponent, bem] = createNamespace('swipe');
export default createComponent({

View File

@ -1,5 +1,8 @@
// Utils
import { createNamespace } from '../utils';
import { inherit } from '../utils/functional';
// Components
import Cell from '../cell';
import Switch, { SwitchEvents } from '../switch';
import { switchProps, SharedSwitchProps } from '../switch/shared';

View File

@ -1,7 +1,10 @@
// Utils
import { createNamespace, addUnit } from '../utils';
import { BLUE } from '../utils/constant';
import { switchProps, SharedSwitchProps } from './shared';
import { emit, inherit } from '../utils/functional';
import { switchProps, SharedSwitchProps } from './shared';
// Components
import Loading from '../loading';
// Types

View File

@ -1,8 +1,13 @@
// Utils
import { createNamespace, isObj, isDef } from '../utils';
import { route, routeProps } from '../utils/router';
// Mixins
import { ChildrenMixin } from '../mixins/relation';
// Components
import Icon from '../icon';
import Info from '../info';
import { route, routeProps } from '../utils/router';
import { ChildrenMixin } from '../mixins/relation';
const [createComponent, bem] = createNamespace('tabbar-item');

View File

@ -1,10 +1,9 @@
// Utils
import { createNamespace, isDef, addUnit } from '../utils';
import { scrollLeftTo, scrollTopTo } from './utils';
import { route } from '../utils/router';
import { isHidden } from '../utils/dom/style';
import { on, off } from '../utils/dom/event';
import { ParentMixin } from '../mixins/relation';
import { BindEventMixin } from '../mixins/bind-event';
import { BORDER_TOP_BOTTOM } from '../utils/constant';
import {
setRootScrollTop,
@ -13,9 +12,14 @@ import {
getVisibleTop,
} from '../utils/dom/scroll';
// Mixins
import { ParentMixin } from '../mixins/relation';
import { BindEventMixin } from '../mixins/bind-event';
// Components
import Title from './Title';
import Content from './Content';
import Sticky from '../sticky';
import Content from './Content';
const [createComponent, bem] = createNamespace('tabs');

View File

@ -1,6 +1,9 @@
// Utils
import { createNamespace } from '../utils';
import { inherit, emit } from '../utils/functional';
import { BORDER_SURROUND } from '../utils/constant';
// Components
import Icon from '../icon';
// Types

View File

@ -1,6 +1,11 @@
// Utils
import { createNamespace, isDef } from '../utils';
import { PopupMixin } from '../mixins/popup';
import { lockClick } from './lock-click';
// Mixins
import { PopupMixin } from '../mixins/popup';
// Components
import Icon from '../icon';
import Loading from '../loading';

View File

@ -1,5 +1,8 @@
// Utils
import { createNamespace, addUnit } from '../utils';
import { emit, inherit } from '../utils/functional';
// Components
import Icon from '../icon';
import Sidebar from '../sidebar';
import SidebarItem from '../sidebar-item';

View File

@ -1,5 +1,8 @@
// Utils
import { createNamespace, addUnit, noop } from '../utils';
import { toArray, readFile, isOversize, isImageFile } from './utils';
// Components
import Icon from '../icon';
import Image from '../image';
import ImagePreview from '../image-preview';