[improvement] rewrite with typescript (#604)

This commit is contained in:
neverland 2018-09-21 10:32:25 +08:00 committed by GitHub
parent 6df0d4bade
commit f9fb953422
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
84 changed files with 398 additions and 370 deletions

View File

@ -33,6 +33,9 @@ gulp.task('compile-ts', () =>
gulp gulp
.src([src + '/**/*.ts']) .src([src + '/**/*.ts'])
.pipe(tsProject()) .pipe(tsProject())
.on('error', (err) => {
console.log(err);
})
.pipe(gulp.dest(dist)) .pipe(gulp.dest(dist))
); );
gulp.task('compile-json', () => copy('json')); gulp.task('compile-json', () => copy('json'));

View File

@ -1,43 +1,39 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
VantComponent({
create({ props: {
props: { show: Boolean,
show: Boolean, title: String,
title: String, cancelText: String,
cancelText: String, zIndex: {
zIndex: { type: Number,
type: Number, value: 100
value: 100 },
actions: {
type: Array,
value: []
},
overlay: {
type: Boolean,
value: true
},
closeOnClickOverlay: {
type: Boolean,
value: true
}
}, },
actions: { methods: {
type: Array, onSelect(event) {
value: [] const { index } = event.currentTarget.dataset;
}, const item = this.data.actions[index];
overlay: { if (item && !item.disabled && !item.loading) {
type: Boolean, this.$emit('select', item);
value: true }
}, },
closeOnClickOverlay: { onCancel() {
type: Boolean, this.$emit('cancel');
value: true },
onClose() {
this.$emit('close');
}
} }
},
methods: {
onSelect(event) {
const { index } = event.currentTarget.dataset;
const item = this.data.actions[index];
if (item && !item.disabled && !item.loading) {
this.$emit('select', item);
}
},
onCancel() {
this.$emit('cancel');
},
onClose() {
this.$emit('close');
}
}
}); });

4
dist/area/index.js vendored
View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
value: { value: {
type: String, type: String,

View File

@ -1,60 +1,49 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
VantComponent({
create({ relations: {
relations: { '../badge/index': {
'../badge/index': { type: 'descendant',
type: 'descendant', linked(target) {
this.data.badges.push(target);
linked(target) { this.setActive();
this.data.badges.push(target); },
this.setActive(); unlinked(target) {
}, this.data.badges = this.data.badges.filter(item => item !== target);
this.setActive();
unlinked(target) { }
this.data.badges = this.data.badges.filter(item => item !== target); }
this.setActive(); },
} props: {
active: {
type: Number,
value: 0,
observer: 'setActive'
}
},
data: {
badges: []
},
beforeCreate() {
this.currentActive = -1;
},
methods: {
setActive(badge) {
let { active } = this.data;
const { badges } = this.data;
if (badge) {
active = badges.indexOf(badge);
}
if (active === this.currentActive) {
return;
}
if (this.currentActive !== -1 && badges[this.currentActive]) {
this.$emit('change', active);
badges[this.currentActive].setActive(false);
}
if (badges[active]) {
badges[active].setActive(true);
this.currentActive = active;
}
}
} }
},
props: {
active: {
type: Number,
value: 0,
observer: 'setActive'
}
},
data: {
badges: []
},
created() {
this.currentActive = -1;
},
methods: {
setActive(badge) {
let { active } = this.data;
const { badges } = this.data;
if (badge) {
active = badges.indexOf(badge);
}
if (active === this.currentActive) {
return;
}
if (this.currentActive !== -1 && badges[this.currentActive]) {
this.$emit('change', active);
badges[this.currentActive].setActive(false);
}
if (badges[active]) {
badges[active].setActive(true);
this.currentActive = active;
}
}
}
}); });

44
dist/badge/index.js vendored
View File

@ -1,27 +1,23 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
VantComponent({
create({ relations: {
relations: { '../badge-group/index': {
'../badge-group/index': { type: 'ancestor'
type: 'ancestor' }
}
},
props: {
info: Number,
title: String
},
methods: {
onClick() {
const group = this.getRelationNodes('../badge-group/index')[0];
if (group) {
group.setActive(this);
}
}, },
props: {
setActive(active) { info: Number,
this.setData({ active }); title: String
},
methods: {
onClick() {
const group = this.getRelationNodes('../badge-group/index')[0];
if (group) {
group.setActive(this);
}
},
setActive(active) {
this.setData({ active });
}
} }
}
}); });

View File

@ -1,7 +1,7 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
import { button } from '../mixins/button'; import { button } from '../mixins/button';
create({ VantComponent({
mixins: [button], mixins: [button],
props: { props: {

4
dist/card/index.js vendored
View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
classes: [ classes: [
'thumb-class', 'thumb-class',
'title-class', 'title-class',

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
border: { border: {
type: Boolean, type: Boolean,

4
dist/cell/index.js vendored
View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
classes: [ classes: [
'title-class', 'title-class',
'label-class', 'label-class',

4
dist/col/index.js vendored
View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
relations: { relations: {
'../row/index': { '../row/index': {
type: 'ancestor' type: 'ancestor'

48
dist/common/component.js vendored Normal file
View File

@ -0,0 +1,48 @@
import { basic } from '../mixins/basic';
import { observe } from '../mixins/observer/index';
function VantComponent(sfc) {
const options = {};
// map props to properties
if (sfc.props) {
options.properties = sfc.props;
}
// map mixins to behaviors
if (sfc.mixins) {
options.behaviors = sfc.mixins;
}
// copy methods
if (sfc.methods) {
options.methods = sfc.methods;
}
if (sfc.beforeCreate) {
options.created = sfc.beforeCreate;
}
if (sfc.created) {
options.attached = sfc.created;
}
if (sfc.mounted) {
options.ready = sfc.mounted;
}
if (sfc.destroyed) {
options.detached = sfc.destroyed;
}
// map classes to externalClasses
options.externalClasses = sfc.classes || [];
// add default externalClasses
options.externalClasses.push('custom-class');
// add default behaviors
options.behaviors = sfc.mixins || [];
options.behaviors.push(basic);
// add default options
options.options = {
multipleSlots: true,
addGlobalClass: true
};
// map field to form-field behavior
if (sfc.field) {
options.behaviors.push('wx://form-field');
}
observe(sfc, options);
Component(options);
}
export { VantComponent };

40
dist/common/create.js vendored
View File

@ -1,40 +0,0 @@
import { basic } from '../mixins/basic';
import { observe } from '../mixins/observer/index';
export function create(sfc) {
// map props to properties
if (sfc.props) {
sfc.properties = sfc.props;
delete sfc.props;
}
// map mixins to behaviors
if (sfc.mixins) {
sfc.behaviors = sfc.mixins;
delete sfc.mixins;
}
// map classes to externalClasses
sfc.externalClasses = sfc.classes || [];
delete sfc.classes;
// add default externalClasses
sfc.externalClasses.push('custom-class');
// add default behaviors
sfc.behaviors = sfc.behaviors || [];
sfc.behaviors.push(basic);
// add default options
sfc.options = sfc.options || {};
sfc.options.multipleSlots = true;
sfc.options.addGlobalClass = true;
// map field to form-field behavior
if (sfc.field) {
sfc.behaviors.push('wx://form-field');
}
observe(sfc);
Component(sfc);
};

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
title: String, title: String,
message: String, message: String,

4
dist/field/index.js vendored
View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
field: true, field: true,
classes: ['input-class'], classes: ['input-class'],

4
dist/icon/index.js vendored
View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
info: null, info: null,
name: String, name: String,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
size: { size: {
type: String, type: String,

View File

@ -1,14 +1,14 @@
import { behavior } from './behavior'; import { behavior } from './behavior';
import { observeProps } from './props'; import { observeProps } from './props';
export function observe(sfc) { export function observe(sfc, options) {
if (sfc.computed) { if (sfc.computed) {
sfc.behaviors.push(behavior); options.behaviors.push(behavior);
sfc.methods = sfc.methods || {}; options.methods = options.methods || {};
sfc.methods.$options = () => sfc; options.methods.$options = () => sfc;
if (sfc.properties) { if (options.properties) {
observeProps(sfc.properties); observeProps(options.properties);
} }
} }
} }

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
classes: ['title-class'], classes: ['title-class'],
props: { props: {

View File

@ -1,9 +1,9 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
const FONT_COLOR = '#f60'; const FONT_COLOR = '#f60';
const BG_COLOR = '#fff7cc'; const BG_COLOR = '#fff7cc';
create({ VantComponent({
props: { props: {
text: { text: {
type: String, type: String,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
text: String, text: String,
color: { color: {

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
show: Boolean, show: Boolean,
mask: Boolean, mask: Boolean,
@ -14,6 +14,9 @@ create({
methods: { methods: {
onClick() { onClick() {
this.$emit('click'); this.$emit('click');
} },
// for prevent touchmove
noop() {}
} }
}); });

View File

@ -3,5 +3,5 @@
custom-class="van-overlay" custom-class="van-overlay"
custom-style="z-index: {{ zIndex }}; {{ mask ? 'background-color: rgba(0, 0, 0, .7);' : '' }}; {{ customStyle }}" custom-style="z-index: {{ zIndex }}; {{ mask ? 'background-color: rgba(0, 0, 0, .7);' : '' }}; {{ customStyle }}"
bind:tap="onClick" bind:tap="onClick"
catch:touchmove catch:touchmove="noop"
/> />

4
dist/panel/index.js vendored
View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
classes: ['footer-class'], classes: ['footer-class'],
props: { props: {

4
dist/popup/index.js vendored
View File

@ -1,7 +1,7 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
import { transition } from '../mixins/transition'; import { transition } from '../mixins/transition';
create({ VantComponent({
mixins: [transition(false)], mixins: [transition(false)],
props: { props: {

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
inactive: { inactive: {
type: Boolean, type: Boolean,

4
dist/row/index.js vendored
View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
relations: { relations: {
'../col/index': { '../col/index': {
type: 'descendant', type: 'descendant',

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
field: true, field: true,
classes: ['cancel-class'], classes: ['cancel-class'],

View File

@ -1,7 +1,7 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
import { touch } from '../mixins/touch'; import { touch } from '../mixins/touch';
create({ VantComponent({
mixins: [touch], mixins: [touch],
props: { props: {

View File

@ -1,10 +1,10 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
// Note that the bitwise operators and shift operators operate on 32-bit ints // Note that the bitwise operators and shift operators operate on 32-bit ints
// so in that case, the max safe integer is 2^31-1, or 2147483647 // so in that case, the max safe integer is 2^31-1, or 2147483647
const MAX = 2147483647; const MAX = 2147483647;
create({ VantComponent({
field: true, field: true,
classes: [ classes: [

4
dist/steps/index.js vendored
View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
icon: String, icon: String,
steps: { steps: {

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
classes: [ classes: [
'price-class', 'price-class',
'button-class' 'button-class'

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
field: true, field: true,
props: { props: {

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
field: true, field: true,
classes: ['node-class'], classes: ['node-class'],

4
dist/tab/index.js vendored
View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
disabled: { disabled: {
type: Boolean, type: Boolean,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
info: null, info: null,
icon: String, icon: String,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
active: { active: {
type: Number, type: Number,

4
dist/tabs/index.js vendored
View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
relations: { relations: {
'../tab/index': { '../tab/index': {
type: 'descendant', type: 'descendant',

4
dist/tag/index.js vendored
View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
type: String, type: String,
mark: Boolean, mark: Boolean,

9
dist/toast/index.js vendored
View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
show: Boolean, show: Boolean,
mask: Boolean, mask: Boolean,
@ -29,6 +29,9 @@ create({
this.setData({ this.setData({
show: false show: false
}); });
} },
// for prevent touchmove
noop() {}
} }
}); });

View File

@ -10,7 +10,7 @@
> >
<view <view
class="van-toast van-toast--{{ type === 'text' ? 'text' : 'icon' }} van-toast--{{ position }}" class="van-toast van-toast--{{ type === 'text' ? 'text' : 'icon' }} van-toast--{{ position }}"
catch:touchmove catch:touchmove="noop"
> >
<!-- text only --> <!-- text only -->
<view wx:if="{{ type === 'text' }}">{{ message }}</view> <view wx:if="{{ type === 'text' }}">{{ message }}</view>

View File

@ -1,7 +1,7 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
import { transition } from '../mixins/transition'; import { transition } from '../mixins/transition';
create({ VantComponent({
mixins: [transition(true)], mixins: [transition(true)],
props: { props: {

View File

@ -1,8 +1,8 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
const ITEM_HEIGHT = 44; const ITEM_HEIGHT = 44;
create({ VantComponent({
props: { props: {
items: { items: {
type: Array, type: Array,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
show: Boolean, show: Boolean,
title: String, title: String,
@ -24,7 +24,7 @@ create({
}, },
methods: { methods: {
onSelect(event) { onSelect(event: Weapp.Event) {
const { index } = event.currentTarget.dataset; const { index } = event.currentTarget.dataset;
const item = this.data.actions[index]; const item = this.data.actions[index];
if (item && !item.disabled && !item.loading) { if (item && !item.disabled && !item.loading) {

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
value: { value: {
type: String, type: String,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
relations: { relations: {
'../badge/index': { '../badge/index': {
type: 'descendant', type: 'descendant',
@ -29,7 +29,7 @@ create({
badges: [] badges: []
}, },
created() { beforeCreate() {
this.currentActive = -1; this.currentActive = -1;
}, },

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
relations: { relations: {
'../badge-group/index': { '../badge-group/index': {
type: 'ancestor' type: 'ancestor'

View File

@ -1,7 +1,7 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
import { button } from '../mixins/button'; import { button } from '../mixins/button';
create({ VantComponent({
mixins: [button], mixins: [button],
props: { props: {

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
classes: [ classes: [
'thumb-class', 'thumb-class',
'title-class', 'title-class',

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
border: { border: {
type: Boolean, type: Boolean,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
classes: [ classes: [
'title-class', 'title-class',
'label-class', 'label-class',

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
relations: { relations: {
'../row/index': { '../row/index': {
type: 'ancestor' type: 'ancestor'

View File

@ -0,0 +1,74 @@
import { basic } from '../mixins/basic';
import { observe } from '../mixins/observer/index';
import {
VantComponentOptions,
CombinedComponentInstance
} from '../../types/index';
function VantComponent<Props, Data, Methods>(
sfc: VantComponentOptions<
Props,
Data,
Methods,
CombinedComponentInstance<Props, Data, Methods>
>
): void {
const options: any = {};
// map props to properties
if (sfc.props) {
options.properties = sfc.props;
}
// map mixins to behaviors
if (sfc.mixins) {
options.behaviors = sfc.mixins;
}
// copy methods
if (sfc.methods) {
options.methods = sfc.methods;
}
if (sfc.beforeCreate) {
options.created = sfc.beforeCreate;
}
if (sfc.created) {
options.attached = sfc.created;
}
if (sfc.mounted) {
options.ready = sfc.mounted;
}
if (sfc.destroyed) {
options.detached = sfc.destroyed;
}
// map classes to externalClasses
options.externalClasses = sfc.classes || [];
// add default externalClasses
options.externalClasses.push('custom-class');
// add default behaviors
options.behaviors = sfc.mixins || [];
options.behaviors.push(basic);
// add default options
options.options = {
multipleSlots: true,
addGlobalClass: true
};
// map field to form-field behavior
if (sfc.field) {
options.behaviors.push('wx://form-field');
}
observe(sfc, options);
Component(options);
}
export { VantComponent };

View File

@ -1,40 +0,0 @@
import { basic } from '../mixins/basic';
import { observe } from '../mixins/observer/index';
export function create(sfc) {
// map props to properties
if (sfc.props) {
sfc.properties = sfc.props;
delete sfc.props;
}
// map mixins to behaviors
if (sfc.mixins) {
sfc.behaviors = sfc.mixins;
delete sfc.mixins;
}
// map classes to externalClasses
sfc.externalClasses = sfc.classes || [];
delete sfc.classes;
// add default externalClasses
sfc.externalClasses.push('custom-class');
// add default behaviors
sfc.behaviors = sfc.behaviors || [];
sfc.behaviors.push(basic);
// add default options
sfc.options = sfc.options || {};
sfc.options.multipleSlots = true;
sfc.options.addGlobalClass = true;
// map field to form-field behavior
if (sfc.field) {
sfc.behaviors.push('wx://form-field');
}
observe(sfc);
Component(sfc);
};

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
title: String, title: String,
message: String, message: String,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
field: true, field: true,
classes: ['input-class'], classes: ['input-class'],

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
info: null, info: null,
name: String, name: String,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
size: { size: {
type: String, type: String,

View File

@ -1,14 +1,14 @@
import { behavior } from './behavior'; import { behavior } from './behavior';
import { observeProps } from './props'; import { observeProps } from './props';
export function observe(sfc) { export function observe(sfc, options) {
if (sfc.computed) { if (sfc.computed) {
sfc.behaviors.push(behavior); options.behaviors.push(behavior);
sfc.methods = sfc.methods || {}; options.methods = options.methods || {};
sfc.methods.$options = () => sfc; options.methods.$options = () => sfc;
if (sfc.properties) { if (options.properties) {
observeProps(sfc.properties); observeProps(options.properties);
} }
} }
} }

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
classes: ['title-class'], classes: ['title-class'],
props: { props: {

View File

@ -1,9 +1,9 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
const FONT_COLOR = '#f60'; const FONT_COLOR = '#f60';
const BG_COLOR = '#fff7cc'; const BG_COLOR = '#fff7cc';
create({ VantComponent({
props: { props: {
text: { text: {
type: String, type: String,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
text: String, text: String,
color: { color: {

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
show: Boolean, show: Boolean,
mask: Boolean, mask: Boolean,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
classes: ['footer-class'], classes: ['footer-class'],
props: { props: {

View File

@ -1,7 +1,7 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
import { transition } from '../mixins/transition'; import { transition } from '../mixins/transition';
create({ VantComponent({
mixins: [transition(false)], mixins: [transition(false)],
props: { props: {

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
inactive: { inactive: {
type: Boolean, type: Boolean,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
relations: { relations: {
'../col/index': { '../col/index': {
type: 'descendant', type: 'descendant',

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
field: true, field: true,
classes: ['cancel-class'], classes: ['cancel-class'],

View File

@ -1,7 +1,7 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
import { touch } from '../mixins/touch'; import { touch } from '../mixins/touch';
create({ VantComponent({
mixins: [touch], mixins: [touch],
props: { props: {

View File

@ -1,10 +1,10 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
// Note that the bitwise operators and shift operators operate on 32-bit ints // Note that the bitwise operators and shift operators operate on 32-bit ints
// so in that case, the max safe integer is 2^31-1, or 2147483647 // so in that case, the max safe integer is 2^31-1, or 2147483647
const MAX = 2147483647; const MAX = 2147483647;
create({ VantComponent({
field: true, field: true,
classes: [ classes: [

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
icon: String, icon: String,
steps: { steps: {

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
classes: [ classes: [
'price-class', 'price-class',
'button-class' 'button-class'

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
field: true, field: true,
props: { props: {

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
field: true, field: true,
classes: ['node-class'], classes: ['node-class'],

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
disabled: { disabled: {
type: Boolean, type: Boolean,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
info: null, info: null,
icon: String, icon: String,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
active: { active: {
type: Number, type: Number,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
relations: { relations: {
'../tab/index': { '../tab/index': {
type: 'descendant', type: 'descendant',

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
type: String, type: String,
mark: Boolean, mark: Boolean,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
create({ VantComponent({
props: { props: {
show: Boolean, show: Boolean,
mask: Boolean, mask: Boolean,

View File

@ -1,7 +1,7 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
import { transition } from '../mixins/transition'; import { transition } from '../mixins/transition';
create({ VantComponent({
mixins: [transition(true)], mixins: [transition(true)],
props: { props: {

View File

@ -1,8 +1,8 @@
import { create } from '../common/create'; import { VantComponent } from '../common/component';
const ITEM_HEIGHT = 44; const ITEM_HEIGHT = 44;
create({ VantComponent({
props: { props: {
items: { items: {
type: Array, type: Array,

View File

@ -1,8 +1,7 @@
{ {
"compilerOptions": { "compilerOptions": {
"baseUrl": ".", "baseUrl": ".",
"module": "commonjs", "target": "es6",
"removeComments": true,
"noImplicitThis": true, "noImplicitThis": true,
"noImplicitUseStrict": true "noImplicitUseStrict": true
}, },

13
types/index.d.ts vendored
View File

@ -1,10 +1,11 @@
/// <reference path="./weapp.d.ts" />
import { Vue } from './vue'; import { Vue } from './vue';
import { Weapp } from './weapp';
type Mixins = any[];
type ExternalClasses = string[];
type LooseObject = { type LooseObject = {
[key: string]: any; [key: string]: any;
}; };
type Mixins = any[];
type Relations<Instance> = { type Relations<Instance> = {
[key: string]: { [key: string]: {
type: string; type: string;
@ -12,13 +13,13 @@ type Relations<Instance> = {
unlinked?: (this: Instance, target?: any) => void; unlinked?: (this: Instance, target?: any) => void;
} }
}; };
type ExternalClasses = string[]; type RecordProps<T> = {
[K in keyof T]: any
}
export type CombinedComponentInstance<Props, Data, Methods> = Vue & export type CombinedComponentInstance<Props, Data, Methods> = Vue &
LooseObject & LooseObject &
Weapp.Component & { data: Data & Props } & Methods; Weapp.Component & { data: Data & RecordProps<Props> } & Methods;
export type VantComponentOptions<Props, Data, Methods, Instance> = { export type VantComponentOptions<Props, Data, Methods, Instance> = {
data?: Data; data?: Data;

4
types/weapp.d.ts vendored
View File

@ -36,7 +36,3 @@ declare namespace Weapp {
detail: any; detail: any;
} }
} }
export {
Weapp
};