mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
[improvement] rewrite with typescript (#604)
This commit is contained in:
parent
6df0d4bade
commit
f9fb953422
@ -33,6 +33,9 @@ gulp.task('compile-ts', () =>
|
||||
gulp
|
||||
.src([src + '/**/*.ts'])
|
||||
.pipe(tsProject())
|
||||
.on('error', (err) => {
|
||||
console.log(err);
|
||||
})
|
||||
.pipe(gulp.dest(dist))
|
||||
);
|
||||
gulp.task('compile-json', () => copy('json'));
|
||||
|
76
dist/action-sheet/index.js
vendored
76
dist/action-sheet/index.js
vendored
@ -1,43 +1,39 @@
|
||||
import { create } from '../common/create';
|
||||
|
||||
create({
|
||||
props: {
|
||||
show: Boolean,
|
||||
title: String,
|
||||
cancelText: String,
|
||||
zIndex: {
|
||||
type: Number,
|
||||
value: 100
|
||||
import { VantComponent } from '../common/component';
|
||||
VantComponent({
|
||||
props: {
|
||||
show: Boolean,
|
||||
title: String,
|
||||
cancelText: String,
|
||||
zIndex: {
|
||||
type: Number,
|
||||
value: 100
|
||||
},
|
||||
actions: {
|
||||
type: Array,
|
||||
value: []
|
||||
},
|
||||
overlay: {
|
||||
type: Boolean,
|
||||
value: true
|
||||
},
|
||||
closeOnClickOverlay: {
|
||||
type: Boolean,
|
||||
value: true
|
||||
}
|
||||
},
|
||||
actions: {
|
||||
type: Array,
|
||||
value: []
|
||||
},
|
||||
overlay: {
|
||||
type: Boolean,
|
||||
value: true
|
||||
},
|
||||
closeOnClickOverlay: {
|
||||
type: Boolean,
|
||||
value: true
|
||||
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');
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
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
4
dist/area/index.js
vendored
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
value: {
|
||||
type: String,
|
||||
|
105
dist/badge-group/index.js
vendored
105
dist/badge-group/index.js
vendored
@ -1,60 +1,49 @@
|
||||
import { create } from '../common/create';
|
||||
|
||||
create({
|
||||
relations: {
|
||||
'../badge/index': {
|
||||
type: 'descendant',
|
||||
|
||||
linked(target) {
|
||||
this.data.badges.push(target);
|
||||
this.setActive();
|
||||
},
|
||||
|
||||
unlinked(target) {
|
||||
this.data.badges = this.data.badges.filter(item => item !== target);
|
||||
this.setActive();
|
||||
}
|
||||
import { VantComponent } from '../common/component';
|
||||
VantComponent({
|
||||
relations: {
|
||||
'../badge/index': {
|
||||
type: 'descendant',
|
||||
linked(target) {
|
||||
this.data.badges.push(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
44
dist/badge/index.js
vendored
@ -1,27 +1,23 @@
|
||||
import { create } from '../common/create';
|
||||
|
||||
create({
|
||||
relations: {
|
||||
'../badge-group/index': {
|
||||
type: 'ancestor'
|
||||
}
|
||||
},
|
||||
|
||||
props: {
|
||||
info: Number,
|
||||
title: String
|
||||
},
|
||||
|
||||
methods: {
|
||||
onClick() {
|
||||
const group = this.getRelationNodes('../badge-group/index')[0];
|
||||
if (group) {
|
||||
group.setActive(this);
|
||||
}
|
||||
import { VantComponent } from '../common/component';
|
||||
VantComponent({
|
||||
relations: {
|
||||
'../badge-group/index': {
|
||||
type: 'ancestor'
|
||||
}
|
||||
},
|
||||
|
||||
setActive(active) {
|
||||
this.setData({ active });
|
||||
props: {
|
||||
info: Number,
|
||||
title: String
|
||||
},
|
||||
methods: {
|
||||
onClick() {
|
||||
const group = this.getRelationNodes('../badge-group/index')[0];
|
||||
if (group) {
|
||||
group.setActive(this);
|
||||
}
|
||||
},
|
||||
setActive(active) {
|
||||
this.setData({ active });
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
4
dist/button/index.js
vendored
4
dist/button/index.js
vendored
@ -1,7 +1,7 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
import { button } from '../mixins/button';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
mixins: [button],
|
||||
|
||||
props: {
|
||||
|
4
dist/card/index.js
vendored
4
dist/card/index.js
vendored
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
classes: [
|
||||
'thumb-class',
|
||||
'title-class',
|
||||
|
4
dist/cell-group/index.js
vendored
4
dist/cell-group/index.js
vendored
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
border: {
|
||||
type: Boolean,
|
||||
|
4
dist/cell/index.js
vendored
4
dist/cell/index.js
vendored
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
classes: [
|
||||
'title-class',
|
||||
'label-class',
|
||||
|
4
dist/col/index.js
vendored
4
dist/col/index.js
vendored
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
relations: {
|
||||
'../row/index': {
|
||||
type: 'ancestor'
|
||||
|
48
dist/common/component.js
vendored
Normal file
48
dist/common/component.js
vendored
Normal 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
40
dist/common/create.js
vendored
@ -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);
|
||||
};
|
4
dist/dialog/index.js
vendored
4
dist/dialog/index.js
vendored
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
title: String,
|
||||
message: String,
|
||||
|
4
dist/field/index.js
vendored
4
dist/field/index.js
vendored
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
field: true,
|
||||
|
||||
classes: ['input-class'],
|
||||
|
4
dist/icon/index.js
vendored
4
dist/icon/index.js
vendored
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
info: null,
|
||||
name: String,
|
||||
|
4
dist/loading/index.js
vendored
4
dist/loading/index.js
vendored
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
size: {
|
||||
type: String,
|
||||
|
12
dist/mixins/observer/index.js
vendored
12
dist/mixins/observer/index.js
vendored
@ -1,14 +1,14 @@
|
||||
import { behavior } from './behavior';
|
||||
import { observeProps } from './props';
|
||||
|
||||
export function observe(sfc) {
|
||||
export function observe(sfc, options) {
|
||||
if (sfc.computed) {
|
||||
sfc.behaviors.push(behavior);
|
||||
sfc.methods = sfc.methods || {};
|
||||
sfc.methods.$options = () => sfc;
|
||||
options.behaviors.push(behavior);
|
||||
options.methods = options.methods || {};
|
||||
options.methods.$options = () => sfc;
|
||||
|
||||
if (sfc.properties) {
|
||||
observeProps(sfc.properties);
|
||||
if (options.properties) {
|
||||
observeProps(options.properties);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
4
dist/nav-bar/index.js
vendored
4
dist/nav-bar/index.js
vendored
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
classes: ['title-class'],
|
||||
|
||||
props: {
|
||||
|
4
dist/notice-bar/index.js
vendored
4
dist/notice-bar/index.js
vendored
@ -1,9 +1,9 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
const FONT_COLOR = '#f60';
|
||||
const BG_COLOR = '#fff7cc';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
text: {
|
||||
type: String,
|
||||
|
4
dist/notify/index.js
vendored
4
dist/notify/index.js
vendored
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
text: String,
|
||||
color: {
|
||||
|
9
dist/overlay/index.js
vendored
9
dist/overlay/index.js
vendored
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
show: Boolean,
|
||||
mask: Boolean,
|
||||
@ -14,6 +14,9 @@ create({
|
||||
methods: {
|
||||
onClick() {
|
||||
this.$emit('click');
|
||||
}
|
||||
},
|
||||
|
||||
// for prevent touchmove
|
||||
noop() {}
|
||||
}
|
||||
});
|
||||
|
2
dist/overlay/index.wxml
vendored
2
dist/overlay/index.wxml
vendored
@ -3,5 +3,5 @@
|
||||
custom-class="van-overlay"
|
||||
custom-style="z-index: {{ zIndex }}; {{ mask ? 'background-color: rgba(0, 0, 0, .7);' : '' }}; {{ customStyle }}"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
|
4
dist/panel/index.js
vendored
4
dist/panel/index.js
vendored
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
classes: ['footer-class'],
|
||||
|
||||
props: {
|
||||
|
4
dist/popup/index.js
vendored
4
dist/popup/index.js
vendored
@ -1,7 +1,7 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
import { transition } from '../mixins/transition';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
mixins: [transition(false)],
|
||||
|
||||
props: {
|
||||
|
4
dist/progress/index.js
vendored
4
dist/progress/index.js
vendored
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
inactive: {
|
||||
type: Boolean,
|
||||
|
4
dist/row/index.js
vendored
4
dist/row/index.js
vendored
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
relations: {
|
||||
'../col/index': {
|
||||
type: 'descendant',
|
||||
|
4
dist/search/index.js
vendored
4
dist/search/index.js
vendored
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
field: true,
|
||||
|
||||
classes: ['cancel-class'],
|
||||
|
4
dist/slider/index.js
vendored
4
dist/slider/index.js
vendored
@ -1,7 +1,7 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
import { touch } from '../mixins/touch';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
mixins: [touch],
|
||||
|
||||
props: {
|
||||
|
4
dist/stepper/index.js
vendored
4
dist/stepper/index.js
vendored
@ -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
|
||||
// so in that case, the max safe integer is 2^31-1, or 2147483647
|
||||
const MAX = 2147483647;
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
field: true,
|
||||
|
||||
classes: [
|
||||
|
4
dist/steps/index.js
vendored
4
dist/steps/index.js
vendored
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
icon: String,
|
||||
steps: {
|
||||
|
4
dist/submit-bar/index.js
vendored
4
dist/submit-bar/index.js
vendored
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
classes: [
|
||||
'price-class',
|
||||
'button-class'
|
||||
|
4
dist/switch-cell/index.js
vendored
4
dist/switch-cell/index.js
vendored
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
field: true,
|
||||
|
||||
props: {
|
||||
|
4
dist/switch/index.js
vendored
4
dist/switch/index.js
vendored
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
field: true,
|
||||
|
||||
classes: ['node-class'],
|
||||
|
4
dist/tab/index.js
vendored
4
dist/tab/index.js
vendored
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
disabled: {
|
||||
type: Boolean,
|
||||
|
4
dist/tabbar-item/index.js
vendored
4
dist/tabbar-item/index.js
vendored
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
info: null,
|
||||
icon: String,
|
||||
|
4
dist/tabbar/index.js
vendored
4
dist/tabbar/index.js
vendored
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
active: {
|
||||
type: Number,
|
||||
|
4
dist/tabs/index.js
vendored
4
dist/tabs/index.js
vendored
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
relations: {
|
||||
'../tab/index': {
|
||||
type: 'descendant',
|
||||
|
4
dist/tag/index.js
vendored
4
dist/tag/index.js
vendored
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
type: String,
|
||||
mark: Boolean,
|
||||
|
9
dist/toast/index.js
vendored
9
dist/toast/index.js
vendored
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
show: Boolean,
|
||||
mask: Boolean,
|
||||
@ -29,6 +29,9 @@ create({
|
||||
this.setData({
|
||||
show: false
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
// for prevent touchmove
|
||||
noop() {}
|
||||
}
|
||||
});
|
||||
|
2
dist/toast/index.wxml
vendored
2
dist/toast/index.wxml
vendored
@ -10,7 +10,7 @@
|
||||
>
|
||||
<view
|
||||
class="van-toast van-toast--{{ type === 'text' ? 'text' : 'icon' }} van-toast--{{ position }}"
|
||||
catch:touchmove
|
||||
catch:touchmove="noop"
|
||||
>
|
||||
<!-- text only -->
|
||||
<view wx:if="{{ type === 'text' }}">{{ message }}</view>
|
||||
|
4
dist/transition/index.js
vendored
4
dist/transition/index.js
vendored
@ -1,7 +1,7 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
import { transition } from '../mixins/transition';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
mixins: [transition(true)],
|
||||
|
||||
props: {
|
||||
|
4
dist/tree-select/index.js
vendored
4
dist/tree-select/index.js
vendored
@ -1,8 +1,8 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
const ITEM_HEIGHT = 44;
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
items: {
|
||||
type: Array,
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
show: Boolean,
|
||||
title: String,
|
||||
@ -24,7 +24,7 @@ create({
|
||||
},
|
||||
|
||||
methods: {
|
||||
onSelect(event) {
|
||||
onSelect(event: Weapp.Event) {
|
||||
const { index } = event.currentTarget.dataset;
|
||||
const item = this.data.actions[index];
|
||||
if (item && !item.disabled && !item.loading) {
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
value: {
|
||||
type: String,
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
relations: {
|
||||
'../badge/index': {
|
||||
type: 'descendant',
|
||||
@ -29,7 +29,7 @@ create({
|
||||
badges: []
|
||||
},
|
||||
|
||||
created() {
|
||||
beforeCreate() {
|
||||
this.currentActive = -1;
|
||||
},
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
relations: {
|
||||
'../badge-group/index': {
|
||||
type: 'ancestor'
|
@ -1,7 +1,7 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
import { button } from '../mixins/button';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
mixins: [button],
|
||||
|
||||
props: {
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
classes: [
|
||||
'thumb-class',
|
||||
'title-class',
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
border: {
|
||||
type: Boolean,
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
classes: [
|
||||
'title-class',
|
||||
'label-class',
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
relations: {
|
||||
'../row/index': {
|
||||
type: 'ancestor'
|
||||
|
74
packages/common/component.ts
Normal file
74
packages/common/component.ts
Normal 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 };
|
@ -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);
|
||||
};
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
title: String,
|
||||
message: String,
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
field: true,
|
||||
|
||||
classes: ['input-class'],
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
info: null,
|
||||
name: String,
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
size: {
|
||||
type: String,
|
||||
|
@ -1,14 +1,14 @@
|
||||
import { behavior } from './behavior';
|
||||
import { observeProps } from './props';
|
||||
|
||||
export function observe(sfc) {
|
||||
export function observe(sfc, options) {
|
||||
if (sfc.computed) {
|
||||
sfc.behaviors.push(behavior);
|
||||
sfc.methods = sfc.methods || {};
|
||||
sfc.methods.$options = () => sfc;
|
||||
options.behaviors.push(behavior);
|
||||
options.methods = options.methods || {};
|
||||
options.methods.$options = () => sfc;
|
||||
|
||||
if (sfc.properties) {
|
||||
observeProps(sfc.properties);
|
||||
if (options.properties) {
|
||||
observeProps(options.properties);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
classes: ['title-class'],
|
||||
|
||||
props: {
|
||||
|
@ -1,9 +1,9 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
const FONT_COLOR = '#f60';
|
||||
const BG_COLOR = '#fff7cc';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
text: {
|
||||
type: String,
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
text: String,
|
||||
color: {
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
show: Boolean,
|
||||
mask: Boolean,
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
classes: ['footer-class'],
|
||||
|
||||
props: {
|
||||
|
@ -1,7 +1,7 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
import { transition } from '../mixins/transition';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
mixins: [transition(false)],
|
||||
|
||||
props: {
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
inactive: {
|
||||
type: Boolean,
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
relations: {
|
||||
'../col/index': {
|
||||
type: 'descendant',
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
field: true,
|
||||
|
||||
classes: ['cancel-class'],
|
||||
|
@ -1,7 +1,7 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
import { touch } from '../mixins/touch';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
mixins: [touch],
|
||||
|
||||
props: {
|
||||
|
@ -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
|
||||
// so in that case, the max safe integer is 2^31-1, or 2147483647
|
||||
const MAX = 2147483647;
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
field: true,
|
||||
|
||||
classes: [
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
icon: String,
|
||||
steps: {
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
classes: [
|
||||
'price-class',
|
||||
'button-class'
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
field: true,
|
||||
|
||||
props: {
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
field: true,
|
||||
|
||||
classes: ['node-class'],
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
disabled: {
|
||||
type: Boolean,
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
info: null,
|
||||
icon: String,
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
active: {
|
||||
type: Number,
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
relations: {
|
||||
'../tab/index': {
|
||||
type: 'descendant',
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
type: String,
|
||||
mark: Boolean,
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
show: Boolean,
|
||||
mask: Boolean,
|
||||
|
@ -1,7 +1,7 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
import { transition } from '../mixins/transition';
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
mixins: [transition(true)],
|
||||
|
||||
props: {
|
||||
|
@ -1,8 +1,8 @@
|
||||
import { create } from '../common/create';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
const ITEM_HEIGHT = 44;
|
||||
|
||||
create({
|
||||
VantComponent({
|
||||
props: {
|
||||
items: {
|
||||
type: Array,
|
||||
|
@ -1,8 +1,7 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"module": "commonjs",
|
||||
"removeComments": true,
|
||||
"target": "es6",
|
||||
"noImplicitThis": true,
|
||||
"noImplicitUseStrict": true
|
||||
},
|
||||
|
13
types/index.d.ts
vendored
13
types/index.d.ts
vendored
@ -1,10 +1,11 @@
|
||||
/// <reference path="./weapp.d.ts" />
|
||||
import { Vue } from './vue';
|
||||
import { Weapp } from './weapp';
|
||||
|
||||
type Mixins = any[];
|
||||
type ExternalClasses = string[];
|
||||
type LooseObject = {
|
||||
[key: string]: any;
|
||||
};
|
||||
type Mixins = any[];
|
||||
type Relations<Instance> = {
|
||||
[key: string]: {
|
||||
type: string;
|
||||
@ -12,13 +13,13 @@ type Relations<Instance> = {
|
||||
unlinked?: (this: Instance, target?: any) => void;
|
||||
}
|
||||
};
|
||||
type ExternalClasses = string[];
|
||||
|
||||
|
||||
type RecordProps<T> = {
|
||||
[K in keyof T]: any
|
||||
}
|
||||
|
||||
export type CombinedComponentInstance<Props, Data, Methods> = Vue &
|
||||
LooseObject &
|
||||
Weapp.Component & { data: Data & Props } & Methods;
|
||||
Weapp.Component & { data: Data & RecordProps<Props> } & Methods;
|
||||
|
||||
export type VantComponentOptions<Props, Data, Methods, Instance> = {
|
||||
data?: Data;
|
||||
|
4
types/weapp.d.ts
vendored
4
types/weapp.d.ts
vendored
@ -36,7 +36,3 @@ declare namespace Weapp {
|
||||
detail: any;
|
||||
}
|
||||
}
|
||||
|
||||
export {
|
||||
Weapp
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user