mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[type] classNames (#622)
This commit is contained in:
parent
f98d8eb613
commit
99360b0ef6
49
dist/common/class-names.js
vendored
49
dist/common/class-names.js
vendored
@ -1,29 +1,28 @@
|
||||
const hasOwn = {}.hasOwnProperty;
|
||||
|
||||
export function classNames() {
|
||||
const classes = [];
|
||||
|
||||
for (let i = 0; i < arguments.length; i++) {
|
||||
const arg = arguments[i];
|
||||
if (!arg) continue;
|
||||
|
||||
const argType = typeof arg;
|
||||
|
||||
if (argType === 'string' || argType === 'number') {
|
||||
classes.push(arg);
|
||||
} else if (Array.isArray(arg) && arg.length) {
|
||||
const inner = classNames.apply(null, arg);
|
||||
if (inner) {
|
||||
classes.push(inner);
|
||||
}
|
||||
} else if (argType === 'object') {
|
||||
for (const key in arg) {
|
||||
if (hasOwn.call(arg, key) && arg[key]) {
|
||||
classes.push(key);
|
||||
const classes = [];
|
||||
for (let i = 0; i < arguments.length; i++) {
|
||||
const arg = arguments[i];
|
||||
if (!arg)
|
||||
continue;
|
||||
const argType = typeof arg;
|
||||
if (argType === 'string' || argType === 'number') {
|
||||
classes.push(arg);
|
||||
}
|
||||
else if (Array.isArray(arg) && arg.length) {
|
||||
const inner = classNames.apply(null, arg);
|
||||
if (inner) {
|
||||
classes.push(inner);
|
||||
}
|
||||
}
|
||||
else if (argType === 'object') {
|
||||
for (const key in arg) {
|
||||
if (hasOwn.call(arg, key) && arg[key]) {
|
||||
classes.push(key);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return classes.join(' ');
|
||||
};
|
||||
return classes.join(' ');
|
||||
}
|
||||
;
|
||||
|
@ -21,7 +21,7 @@ VantComponent({
|
||||
},
|
||||
|
||||
computed: {
|
||||
classes() {
|
||||
classes(): string {
|
||||
const { type, size, plain, disabled, loading, square, block } = this.data;
|
||||
return this.classNames(`van-button--${type}`, `van-button--${size}`, {
|
||||
'van-button--block': block,
|
||||
|
@ -1,6 +1,6 @@
|
||||
const hasOwn = {}.hasOwnProperty;
|
||||
|
||||
export function classNames() {
|
||||
export function classNames(): string {
|
||||
const classes = [];
|
||||
|
||||
for (let i = 0; i < arguments.length; i++) {
|
16
types/class-names.d.ts
vendored
Normal file
16
types/class-names.d.ts
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
type ClassValue =
|
||||
| string
|
||||
| number
|
||||
| ClassDictionary
|
||||
| ClassArray
|
||||
| undefined
|
||||
| null
|
||||
| boolean;
|
||||
|
||||
interface ClassDictionary {
|
||||
[id: string]: any;
|
||||
}
|
||||
|
||||
interface ClassArray extends Array<ClassValue> {}
|
||||
|
||||
export type classNames = (...classes: ClassValue[]) => string;
|
20
types/index.d.ts
vendored
20
types/index.d.ts
vendored
@ -1,5 +1,5 @@
|
||||
/// <reference path="./weapp.d.ts" />
|
||||
import { Vue } from './vue';
|
||||
import { ComponentInstance } from './instance';
|
||||
|
||||
type Mixins = any[];
|
||||
type ExternalClasses = string[];
|
||||
@ -14,12 +14,20 @@ type Relations<Instance> = {
|
||||
};
|
||||
};
|
||||
type RecordToAny<T> = { [K in keyof T]: any };
|
||||
type Accessors<T> = {
|
||||
[K in keyof T]: (() => T[K])
|
||||
}
|
||||
|
||||
export type CombinedComponentInstance<Data, Props, Methods, Computed> = Vue &
|
||||
Methods &
|
||||
export type CombinedComponentInstance<
|
||||
Data,
|
||||
Props,
|
||||
Methods,
|
||||
Computed
|
||||
> = Methods &
|
||||
LooseObject &
|
||||
Weapp.Component & {
|
||||
data: Data & RecordToAny<Props> & RecordToAny<Computed>;
|
||||
Weapp.Component &
|
||||
ComponentInstance & {
|
||||
data: Data & RecordToAny<Props> & Computed;
|
||||
};
|
||||
|
||||
export type VantComponentOptions<Data, Props, Methods, Computed, Instance> = {
|
||||
@ -27,7 +35,7 @@ export type VantComponentOptions<Data, Props, Methods, Computed, Instance> = {
|
||||
props?: Props;
|
||||
field?: boolean;
|
||||
mixins?: Mixins;
|
||||
computed?: Computed & ThisType<Instance>;
|
||||
computed?: Accessors<Computed> & ThisType<Instance>;
|
||||
relations?: Relations<Instance>;
|
||||
classes?: ExternalClasses;
|
||||
methods?: Methods & ThisType<Instance>;
|
||||
|
6
types/instance.ts
Normal file
6
types/instance.ts
Normal file
@ -0,0 +1,6 @@
|
||||
import { classNames } from './class-names';
|
||||
|
||||
export interface ComponentInstance {
|
||||
$emit(name: string, detail?: any): void;
|
||||
classNames: classNames;
|
||||
}
|
3
types/vue.d.ts
vendored
3
types/vue.d.ts
vendored
@ -1,3 +0,0 @@
|
||||
export interface Vue {
|
||||
$emit(name: string, detail?: any): void;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user