mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[improvement] watcher (#645)
This commit is contained in:
parent
f67fdb9777
commit
2168cc06b5
@ -1,5 +1,6 @@
|
|||||||
page {
|
page {
|
||||||
color: #333;
|
color: #333;
|
||||||
|
font-size: 16px;
|
||||||
background: #f8f8f8;
|
background: #f8f8f8;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
@ -8,14 +8,8 @@ type AreaItem = {
|
|||||||
VantComponent({
|
VantComponent({
|
||||||
props: {
|
props: {
|
||||||
title: String,
|
title: String,
|
||||||
|
value: String,
|
||||||
loading: Boolean,
|
loading: Boolean,
|
||||||
value: {
|
|
||||||
type: String,
|
|
||||||
observer(value) {
|
|
||||||
this.code = value;
|
|
||||||
this.setValues();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
itemHeight: {
|
itemHeight: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: 44
|
value: 44
|
||||||
@ -30,10 +24,7 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
areaList: {
|
areaList: {
|
||||||
type: Object,
|
type: Object,
|
||||||
value: {},
|
value: {}
|
||||||
observer() {
|
|
||||||
this.setValues();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -49,6 +40,15 @@ VantComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
watch: {
|
||||||
|
value(value) {
|
||||||
|
this.code = value;
|
||||||
|
this.setValues();
|
||||||
|
},
|
||||||
|
|
||||||
|
areaList: 'setValues'
|
||||||
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onCancel() {
|
onCancel() {
|
||||||
this.$emit('cancel', {
|
this.$emit('cancel', {
|
||||||
|
@ -20,8 +20,7 @@ VantComponent({
|
|||||||
props: {
|
props: {
|
||||||
active: {
|
active: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: 0,
|
value: 0
|
||||||
observer: 'setActive'
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -29,6 +28,10 @@ VantComponent({
|
|||||||
badges: []
|
badges: []
|
||||||
},
|
},
|
||||||
|
|
||||||
|
watch: {
|
||||||
|
active: 'setActive'
|
||||||
|
},
|
||||||
|
|
||||||
beforeCreate() {
|
beforeCreate() {
|
||||||
this.currentActive = -1;
|
this.currentActive = -1;
|
||||||
},
|
},
|
||||||
|
@ -11,18 +11,19 @@ function mapKeys(source: object, target: object, map: object) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function VantComponent<Data, Props, Methods, Computed>(
|
function VantComponent<Data, Props, Watch, Methods, Computed>(
|
||||||
sfc: VantComponentOptions<
|
vantOptions: VantComponentOptions<
|
||||||
Data,
|
Data,
|
||||||
Props,
|
Props,
|
||||||
|
Watch,
|
||||||
Methods,
|
Methods,
|
||||||
Computed,
|
Computed,
|
||||||
CombinedComponentInstance<Data, Props, Methods, Computed>
|
CombinedComponentInstance<Data, Props, Watch, Methods, Computed>
|
||||||
>
|
>
|
||||||
): void {
|
): void {
|
||||||
const options: any = {};
|
const options: any = {};
|
||||||
|
|
||||||
mapKeys(sfc, options, {
|
mapKeys(vantOptions, options, {
|
||||||
data: 'data',
|
data: 'data',
|
||||||
props: 'properties',
|
props: 'properties',
|
||||||
mixins: 'behaviors',
|
mixins: 'behaviors',
|
||||||
@ -44,7 +45,7 @@ function VantComponent<Data, Props, Methods, Computed>(
|
|||||||
options.behaviors.push(basic);
|
options.behaviors.push(basic);
|
||||||
|
|
||||||
// map field to form-field behavior
|
// map field to form-field behavior
|
||||||
if (sfc.field) {
|
if (vantOptions.field) {
|
||||||
options.behaviors.push('wx://form-field');
|
options.behaviors.push('wx://form-field');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -54,7 +55,7 @@ function VantComponent<Data, Props, Methods, Computed>(
|
|||||||
addGlobalClass: true
|
addGlobalClass: true
|
||||||
};
|
};
|
||||||
|
|
||||||
observe(sfc, options);
|
observe(vantOptions, options);
|
||||||
Component(options);
|
Component(options);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2,25 +2,13 @@ import { VantComponent } from '../common/component';
|
|||||||
|
|
||||||
VantComponent({
|
VantComponent({
|
||||||
props: {
|
props: {
|
||||||
|
show: Boolean,
|
||||||
title: String,
|
title: String,
|
||||||
message: String,
|
message: String,
|
||||||
useSlot: Boolean,
|
useSlot: Boolean,
|
||||||
asyncClose: Boolean,
|
asyncClose: Boolean,
|
||||||
showCancelButton: Boolean,
|
showCancelButton: Boolean,
|
||||||
confirmButtonOpenType: String,
|
confirmButtonOpenType: String,
|
||||||
show: {
|
|
||||||
type: Boolean,
|
|
||||||
observer(show) {
|
|
||||||
if (!show) {
|
|
||||||
this.setData({
|
|
||||||
loading: {
|
|
||||||
confirm: false,
|
|
||||||
cancel: false
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
zIndex: {
|
zIndex: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: 100
|
value: 100
|
||||||
@ -54,6 +42,19 @@ VantComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
watch: {
|
||||||
|
show(show) {
|
||||||
|
if (!show) {
|
||||||
|
this.setData({
|
||||||
|
loading: {
|
||||||
|
confirm: false,
|
||||||
|
cancel: false
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onConfirm() {
|
onConfirm() {
|
||||||
this.handleAction('confirm');
|
this.handleAction('confirm');
|
||||||
|
@ -27,23 +27,23 @@ export const button = Behavior({
|
|||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
bindgetuserinfo(event = {}) {
|
bindgetuserinfo(event: Partial<Weapp.Event>) {
|
||||||
this.$emit('getuserinfo', event.detail);
|
this.$emit('getuserinfo', event.detail);
|
||||||
},
|
},
|
||||||
|
|
||||||
bindcontact(event = {}) {
|
bindcontact(event: Partial<Weapp.Event>) {
|
||||||
this.$emit('contact', event.detail);
|
this.$emit('contact', event.detail);
|
||||||
},
|
},
|
||||||
|
|
||||||
bindgetphonenumber(event = {}) {
|
bindgetphonenumber(event: Partial<Weapp.Event>) {
|
||||||
this.$emit('getphonenumber', event.detail);
|
this.$emit('getphonenumber', event.detail);
|
||||||
},
|
},
|
||||||
|
|
||||||
bindopensetting(event = {}) {
|
bindopensetting(event: Partial<Weapp.Event>) {
|
||||||
this.$emit('opensetting', event.detail);
|
this.$emit('opensetting', event.detail);
|
||||||
},
|
},
|
||||||
|
|
||||||
binderror(event = {}) {
|
binderror(event: Partial<Weapp.Event>) {
|
||||||
this.$emit('error', event.detail);
|
this.$emit('error', event.detail);
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,11 +1,26 @@
|
|||||||
import { behavior } from './behavior';
|
import { behavior } from './behavior';
|
||||||
import { observeProps } from './props';
|
import { observeProps } from './props';
|
||||||
|
|
||||||
export function observe(sfc, options) {
|
export function observe(vantOptions, options) {
|
||||||
if (sfc.computed) {
|
const { watch, computed } = vantOptions;
|
||||||
|
|
||||||
|
if (watch) {
|
||||||
|
options.properties = options.properties || {};
|
||||||
|
Object.keys(watch).forEach(key => {
|
||||||
|
if (key in options.properties) {
|
||||||
|
let prop = options.properties[key];
|
||||||
|
if (prop === null || !prop.type) {
|
||||||
|
prop = { type: prop };
|
||||||
|
}
|
||||||
|
prop.observer = watch[key];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (computed) {
|
||||||
options.behaviors.push(behavior);
|
options.behaviors.push(behavior);
|
||||||
options.methods = options.methods || {};
|
options.methods = options.methods || {};
|
||||||
options.methods.$options = () => sfc;
|
options.methods.$options = () => vantOptions;
|
||||||
|
|
||||||
if (options.properties) {
|
if (options.properties) {
|
||||||
observeProps(options.properties);
|
observeProps(options.properties);
|
||||||
|
@ -3,17 +3,9 @@ export const transition = function(showDefaultValue) {
|
|||||||
properties: {
|
properties: {
|
||||||
customStyle: String,
|
customStyle: String,
|
||||||
show: {
|
show: {
|
||||||
value: showDefaultValue,
|
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
observer(value) {
|
value: showDefaultValue,
|
||||||
if (value) {
|
observer: 'observeShow'
|
||||||
this.show();
|
|
||||||
} else {
|
|
||||||
this.setData({
|
|
||||||
type: 'leave'
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
duration: {
|
duration: {
|
||||||
type: Number,
|
type: Number,
|
||||||
@ -34,6 +26,16 @@ export const transition = function(showDefaultValue) {
|
|||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
observeShow(value) {
|
||||||
|
if (value) {
|
||||||
|
this.show();
|
||||||
|
} else {
|
||||||
|
this.setData({
|
||||||
|
type: 'leave'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
show() {
|
show() {
|
||||||
this.setData({
|
this.setData({
|
||||||
inited: true,
|
inited: true,
|
@ -7,10 +7,7 @@ VantComponent({
|
|||||||
props: {
|
props: {
|
||||||
text: {
|
text: {
|
||||||
type: String,
|
type: String,
|
||||||
value: '',
|
value: ''
|
||||||
observer() {
|
|
||||||
this.setData({}, this.init);
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
mode: {
|
mode: {
|
||||||
type: String,
|
type: String,
|
||||||
@ -61,6 +58,12 @@ VantComponent({
|
|||||||
timer: null
|
timer: null
|
||||||
},
|
},
|
||||||
|
|
||||||
|
watch: {
|
||||||
|
text() {
|
||||||
|
this.setData({}, this.init);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
created() {
|
created() {
|
||||||
if (this.data.mode) {
|
if (this.data.mode) {
|
||||||
this.setData({
|
this.setData({
|
@ -1,5 +1,10 @@
|
|||||||
import { isObj } from '../common/utils';
|
import { isObj } from '../common/utils';
|
||||||
|
|
||||||
|
type NotifyOptions = {
|
||||||
|
selector?: string;
|
||||||
|
duration?: number;
|
||||||
|
}
|
||||||
|
|
||||||
const defaultOptions = {
|
const defaultOptions = {
|
||||||
selector: '#van-notify',
|
selector: '#van-notify',
|
||||||
duration: 3000
|
duration: 3000
|
||||||
@ -9,7 +14,7 @@ function parseOptions(text) {
|
|||||||
return isObj(text) ? text : { text };
|
return isObj(text) ? text : { text };
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function Notify(options = {}) {
|
export default function Notify(options: NotifyOptions = {}) {
|
||||||
const pages = getCurrentPages();
|
const pages = getCurrentPages();
|
||||||
const ctx = pages[pages.length - 1];
|
const ctx = pages[pages.length - 1];
|
||||||
|
|
@ -1,3 +1,4 @@
|
|||||||
|
|
||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
|
|
||||||
VantComponent({
|
VantComponent({
|
@ -1,104 +0,0 @@
|
|||||||
import { VantComponent } from '../common/component';
|
|
||||||
|
|
||||||
VantComponent({
|
|
||||||
props: {
|
|
||||||
inactive: {
|
|
||||||
type: Boolean,
|
|
||||||
observer() {
|
|
||||||
this.setPivotStyle();
|
|
||||||
this.setPortionStyle();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
pivotColor: {
|
|
||||||
type: String,
|
|
||||||
observer: 'setPivotStyle'
|
|
||||||
},
|
|
||||||
percentage: {
|
|
||||||
type: Number,
|
|
||||||
observer() {
|
|
||||||
this.setText();
|
|
||||||
this.setPortionStyle();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
showPivot: {
|
|
||||||
type: Boolean,
|
|
||||||
value: true,
|
|
||||||
observer: 'getWidth'
|
|
||||||
},
|
|
||||||
pivotText: {
|
|
||||||
type: String,
|
|
||||||
observer() {
|
|
||||||
this.setText();
|
|
||||||
this.getWidth();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
color: {
|
|
||||||
type: String,
|
|
||||||
value: '#38f',
|
|
||||||
observer() {
|
|
||||||
this.setPivotStyle();
|
|
||||||
this.setPortionStyle();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
textColor: {
|
|
||||||
type: String,
|
|
||||||
value: '#fff',
|
|
||||||
observer: 'setPivotStyle'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
data: {
|
|
||||||
pivotWidth: 0,
|
|
||||||
progressWidth: 0
|
|
||||||
},
|
|
||||||
|
|
||||||
mounted() {
|
|
||||||
this.setText();
|
|
||||||
this.setPivotStyle();
|
|
||||||
this.getWidth();
|
|
||||||
},
|
|
||||||
|
|
||||||
methods: {
|
|
||||||
getCurrentColor() {
|
|
||||||
return this.data.inactive ? '#cacaca' : this.data.color;
|
|
||||||
},
|
|
||||||
|
|
||||||
setText() {
|
|
||||||
this.setData({
|
|
||||||
text: this.data.pivotText || this.data.percentage + '%'
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
setPortionStyle() {
|
|
||||||
const width = (this.data.progressWidth - this.data.pivotWidth) * this.data.percentage / 100 + 'px';
|
|
||||||
const background = this.getCurrentColor();
|
|
||||||
this.setData({
|
|
||||||
portionStyle: `width: ${width}; background: ${background}; `
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
setPivotStyle() {
|
|
||||||
const color = this.data.textColor;
|
|
||||||
const background = this.data.pivotColor || this.getCurrentColor();
|
|
||||||
this.setData({
|
|
||||||
pivotStyle: `color: ${color}; background: ${background}`
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
getWidth() {
|
|
||||||
this.getRect('.van-progress').then(rect => {
|
|
||||||
this.setData({
|
|
||||||
progressWidth: rect.width
|
|
||||||
});
|
|
||||||
this.setPortionStyle();
|
|
||||||
});
|
|
||||||
|
|
||||||
this.getRect('.van-progress__pivot').then(rect => {
|
|
||||||
this.setData({
|
|
||||||
pivotWidth: rect.width || 0
|
|
||||||
});
|
|
||||||
this.setPortionStyle();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
74
packages/progress/index.ts
Normal file
74
packages/progress/index.ts
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
import { VantComponent } from '../common/component';
|
||||||
|
|
||||||
|
VantComponent({
|
||||||
|
props: {
|
||||||
|
inactive: Boolean,
|
||||||
|
percentage: Number,
|
||||||
|
pivotText: String,
|
||||||
|
pivotColor: String,
|
||||||
|
showPivot: {
|
||||||
|
type: Boolean,
|
||||||
|
value: true
|
||||||
|
},
|
||||||
|
color: {
|
||||||
|
type: String,
|
||||||
|
value: '#38f'
|
||||||
|
},
|
||||||
|
textColor: {
|
||||||
|
type: String,
|
||||||
|
value: '#fff'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
data: {
|
||||||
|
pivotWidth: 0,
|
||||||
|
progressWidth: 0
|
||||||
|
},
|
||||||
|
|
||||||
|
watch: {
|
||||||
|
pivotText: 'getWidth',
|
||||||
|
showPivot: 'getWidth'
|
||||||
|
},
|
||||||
|
|
||||||
|
computed: {
|
||||||
|
portionStyle() {
|
||||||
|
const width = (this.data.progressWidth - this.data.pivotWidth) * this.data.percentage / 100 + 'px';
|
||||||
|
const background = this.getCurrentColor();
|
||||||
|
return `width: ${width}; background: ${background}; `;
|
||||||
|
},
|
||||||
|
|
||||||
|
pivotStyle() {
|
||||||
|
const color = this.data.textColor;
|
||||||
|
const background = this.data.pivotColor || this.getCurrentColor();
|
||||||
|
return `color: ${color}; background: ${background}`
|
||||||
|
},
|
||||||
|
|
||||||
|
text() {
|
||||||
|
return this.data.pivotText || this.data.percentage + '%';
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
mounted() {
|
||||||
|
this.getWidth();
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
getCurrentColor() {
|
||||||
|
return this.data.inactive ? '#cacaca' : this.data.color;
|
||||||
|
},
|
||||||
|
|
||||||
|
getWidth() {
|
||||||
|
this.getRect('.van-progress').then(rect => {
|
||||||
|
this.setData({
|
||||||
|
progressWidth: rect.width
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
this.getRect('.van-progress__pivot').then(rect => {
|
||||||
|
this.setData({
|
||||||
|
pivotWidth: rect.width || 0
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
@ -1,37 +0,0 @@
|
|||||||
import { VantComponent } from '../common/component';
|
|
||||||
|
|
||||||
VantComponent({
|
|
||||||
relations: {
|
|
||||||
'../radio/index': {
|
|
||||||
type: 'descendant',
|
|
||||||
linked(target) {
|
|
||||||
const { value, disabled } = this.data;
|
|
||||||
target.setData({
|
|
||||||
value: value,
|
|
||||||
disabled: disabled || target.data.disabled
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
props: {
|
|
||||||
value: {
|
|
||||||
type: null,
|
|
||||||
observer(value) {
|
|
||||||
const children = this.getRelationNodes('../radio/index');
|
|
||||||
children.forEach(child => {
|
|
||||||
child.setData({ value });
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
disabled: {
|
|
||||||
type: Boolean,
|
|
||||||
observer(disabled) {
|
|
||||||
const children = this.getRelationNodes('../radio/index');
|
|
||||||
children.forEach(child => {
|
|
||||||
child.setData({ disabled: disabled || children.data.disabled });
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
37
packages/radio-group/index.ts
Normal file
37
packages/radio-group/index.ts
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
import { VantComponent } from '../common/component';
|
||||||
|
|
||||||
|
VantComponent({
|
||||||
|
relations: {
|
||||||
|
'../radio/index': {
|
||||||
|
type: 'descendant',
|
||||||
|
linked(target) {
|
||||||
|
const { value, disabled } = this.data;
|
||||||
|
target.setData({
|
||||||
|
value: value,
|
||||||
|
disabled: disabled || target.data.disabled
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
props: {
|
||||||
|
value: null,
|
||||||
|
disabled: Boolean
|
||||||
|
},
|
||||||
|
|
||||||
|
watch: {
|
||||||
|
value(value) {
|
||||||
|
const children = this.getRelationNodes('../radio/index');
|
||||||
|
children.forEach(child => {
|
||||||
|
child.setData({ value });
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
disabled(disabled) {
|
||||||
|
const children = this.getRelationNodes('../radio/index');
|
||||||
|
children.forEach(child => {
|
||||||
|
child.setData({ disabled: disabled || child.data.disabled });
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
@ -30,14 +30,13 @@ VantComponent({
|
|||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
emitChange(value) {
|
emitChange(value) {
|
||||||
const parent = this.getRelationNodes('../radio-group/index')[0];
|
const instance = this.getRelationNodes('../radio-group/index')[0] || this;
|
||||||
(parent || this).$emit('input', value);
|
instance.$emit('input', value);
|
||||||
(parent || this).$emit('change', value);
|
instance.$emit('change', value);
|
||||||
},
|
},
|
||||||
|
|
||||||
onChange(event) {
|
onChange(event) {
|
||||||
const { value } = event.detail;
|
this.emitChange(event.detail.value);
|
||||||
this.emitChange(value);
|
|
||||||
},
|
},
|
||||||
|
|
||||||
onClickLabel() {
|
onClickLabel() {
|
@ -14,10 +14,11 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
gutter: {
|
gutter: Number
|
||||||
type: Number,
|
},
|
||||||
observer: 'setGutter'
|
|
||||||
}
|
watch: {
|
||||||
|
gutter: 'setGutter'
|
||||||
},
|
},
|
||||||
|
|
||||||
mounted() {
|
mounted() {
|
@ -22,6 +22,10 @@ VantComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
data: {
|
||||||
|
value: ''
|
||||||
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onChange(event) {
|
onChange(event) {
|
||||||
this.setData({ value: event.detail });
|
this.setData({ value: event.detail });
|
@ -31,6 +31,10 @@ VantComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
data: {
|
||||||
|
value: 0
|
||||||
|
},
|
||||||
|
|
||||||
created() {
|
created() {
|
||||||
this.setData({
|
this.setData({
|
||||||
value: this.range(this.data.value)
|
value: this.range(this.data.value)
|
@ -3,14 +3,8 @@ import { VantComponent } from '../common/component';
|
|||||||
VantComponent({
|
VantComponent({
|
||||||
props: {
|
props: {
|
||||||
icon: String,
|
icon: String,
|
||||||
steps: {
|
steps: Array,
|
||||||
type: Array,
|
active: Number,
|
||||||
observer: 'formatSteps'
|
|
||||||
},
|
|
||||||
active: {
|
|
||||||
type: Number,
|
|
||||||
observer: 'formatSteps'
|
|
||||||
},
|
|
||||||
direction: {
|
direction: {
|
||||||
type: String,
|
type: String,
|
||||||
value: 'horizontal'
|
value: 'horizontal'
|
||||||
@ -21,6 +15,11 @@ VantComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
watch: {
|
||||||
|
steps: 'formatSteps',
|
||||||
|
active: 'formatSteps'
|
||||||
|
},
|
||||||
|
|
||||||
created() {
|
created() {
|
||||||
this.formatSteps();
|
this.formatSteps();
|
||||||
},
|
},
|
@ -6,20 +6,21 @@ VantComponent({
|
|||||||
props: {
|
props: {
|
||||||
title: String,
|
title: String,
|
||||||
border: Boolean,
|
border: Boolean,
|
||||||
|
checked: Boolean,
|
||||||
loading: Boolean,
|
loading: Boolean,
|
||||||
disabled: Boolean,
|
disabled: Boolean,
|
||||||
checked: {
|
|
||||||
type: Boolean,
|
|
||||||
observer(value) {
|
|
||||||
this.setData({ value });
|
|
||||||
}
|
|
||||||
},
|
|
||||||
size: {
|
size: {
|
||||||
type: String,
|
type: String,
|
||||||
value: '26px'
|
value: '26px'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
watch: {
|
||||||
|
checked(value) {
|
||||||
|
this.setData({ value });
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
created() {
|
created() {
|
||||||
this.setData({ value: this.data.checked });
|
this.setData({ value: this.data.checked });
|
||||||
},
|
},
|
@ -6,20 +6,21 @@ VantComponent({
|
|||||||
classes: ['node-class'],
|
classes: ['node-class'],
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
|
checked: Boolean,
|
||||||
loading: Boolean,
|
loading: Boolean,
|
||||||
disabled: Boolean,
|
disabled: Boolean,
|
||||||
checked: {
|
|
||||||
type: Boolean,
|
|
||||||
observer(value) {
|
|
||||||
this.setData({ value });
|
|
||||||
}
|
|
||||||
},
|
|
||||||
size: {
|
size: {
|
||||||
type: String,
|
type: String,
|
||||||
value: '30px'
|
value: '30px'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
watch: {
|
||||||
|
checked(value) {
|
||||||
|
this.setData({ value });
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
created() {
|
created() {
|
||||||
this.setData({ value: this.data.checked });
|
this.setData({ value: this.data.checked });
|
||||||
},
|
},
|
@ -1,36 +0,0 @@
|
|||||||
import { VantComponent } from '../common/component';
|
|
||||||
|
|
||||||
VantComponent({
|
|
||||||
props: {
|
|
||||||
disabled: {
|
|
||||||
type: Boolean,
|
|
||||||
observer() {
|
|
||||||
const parent = this.getRelationNodes('../tabs/index')[0];
|
|
||||||
if (parent) {
|
|
||||||
parent.updateTabs();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
title: {
|
|
||||||
type: String,
|
|
||||||
observer() {
|
|
||||||
const parent = this.getRelationNodes('../tabs/index')[0];
|
|
||||||
if (parent) {
|
|
||||||
parent.setLine();
|
|
||||||
parent.updateTabs();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
relations: {
|
|
||||||
'../tabs/index': {
|
|
||||||
type: 'ancestor'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
data: {
|
|
||||||
inited: false,
|
|
||||||
active: false
|
|
||||||
}
|
|
||||||
});
|
|
36
packages/tab/index.ts
Normal file
36
packages/tab/index.ts
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
import { VantComponent } from '../common/component';
|
||||||
|
|
||||||
|
VantComponent({
|
||||||
|
relations: {
|
||||||
|
'../tabs/index': {
|
||||||
|
type: 'ancestor'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
props: {
|
||||||
|
title: String,
|
||||||
|
disabled: Boolean
|
||||||
|
},
|
||||||
|
|
||||||
|
data: {
|
||||||
|
inited: false,
|
||||||
|
active: false
|
||||||
|
},
|
||||||
|
|
||||||
|
watch: {
|
||||||
|
disabled() {
|
||||||
|
const parent = this.getRelationNodes('../tabs/index')[0];
|
||||||
|
if (parent) {
|
||||||
|
parent.updateTabs();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
title() {
|
||||||
|
const parent = this.getRelationNodes('../tabs/index')[0];
|
||||||
|
if (parent) {
|
||||||
|
parent.setLine();
|
||||||
|
parent.updateTabs();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
@ -2,13 +2,7 @@ import { VantComponent } from '../common/component';
|
|||||||
|
|
||||||
VantComponent({
|
VantComponent({
|
||||||
props: {
|
props: {
|
||||||
active: {
|
active: Number,
|
||||||
type: Number,
|
|
||||||
observer(active) {
|
|
||||||
this.setData({ currentActive: active });
|
|
||||||
this.setActiveItem();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
fixed: {
|
fixed: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true
|
value: true
|
||||||
@ -24,6 +18,13 @@ VantComponent({
|
|||||||
currentActive: -1
|
currentActive: -1
|
||||||
},
|
},
|
||||||
|
|
||||||
|
watch: {
|
||||||
|
active(active) {
|
||||||
|
this.setData({ currentActive: active });
|
||||||
|
this.setActiveItem();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
created() {
|
created() {
|
||||||
this.setData({ currentActive: this.data.active });
|
this.setData({ currentActive: this.data.active });
|
||||||
},
|
},
|
@ -1,5 +1,10 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
|
|
||||||
|
type TabItemData = {
|
||||||
|
active: boolean;
|
||||||
|
inited?: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
VantComponent({
|
VantComponent({
|
||||||
relations: {
|
relations: {
|
||||||
'../tab/index': {
|
'../tab/index': {
|
||||||
@ -25,18 +30,11 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
color: {
|
color: String,
|
||||||
type: String,
|
lineWidth: Number,
|
||||||
observer: 'setLine'
|
|
||||||
},
|
|
||||||
lineWidth: {
|
|
||||||
type: Number,
|
|
||||||
observer: 'setLine'
|
|
||||||
},
|
|
||||||
active: {
|
active: {
|
||||||
type: null,
|
type: null,
|
||||||
value: 0,
|
value: 0
|
||||||
observer: 'setActiveTab'
|
|
||||||
},
|
},
|
||||||
type: {
|
type: {
|
||||||
type: String,
|
type: String,
|
||||||
@ -52,19 +50,26 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
swipeThreshold: {
|
swipeThreshold: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: 4,
|
value: 4
|
||||||
observer() {
|
|
||||||
this.setData({
|
|
||||||
scrollable: this.data.tabs.length > this.data.swipeThreshold
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
data: {
|
data: {
|
||||||
tabs: [],
|
tabs: [],
|
||||||
lineStyle: '',
|
lineStyle: '',
|
||||||
scrollLeft: 0
|
scrollLeft: 0,
|
||||||
|
scrollable: false
|
||||||
|
},
|
||||||
|
|
||||||
|
watch: {
|
||||||
|
swipeThreshold() {
|
||||||
|
this.setData({
|
||||||
|
scrollable: this.data.tabs.length > this.data.swipeThreshold
|
||||||
|
});
|
||||||
|
},
|
||||||
|
color: 'setLine',
|
||||||
|
lineWidth: 'setLine',
|
||||||
|
active: 'setActiveTab'
|
||||||
},
|
},
|
||||||
|
|
||||||
mounted() {
|
mounted() {
|
||||||
@ -133,7 +138,7 @@ VantComponent({
|
|||||||
|
|
||||||
setActiveTab() {
|
setActiveTab() {
|
||||||
this.data.tabs.forEach((item, index) => {
|
this.data.tabs.forEach((item, index) => {
|
||||||
const data = {
|
const data: TabItemData = {
|
||||||
active: index === this.data.active
|
active: index === this.data.active
|
||||||
};
|
};
|
||||||
|
|
@ -1,5 +1,30 @@
|
|||||||
import { isObj } from '../common/utils';
|
import { isObj } from '../common/utils';
|
||||||
|
|
||||||
|
type ToastMessage = string | number;
|
||||||
|
|
||||||
|
export type ToastOptions = {
|
||||||
|
show?: boolean;
|
||||||
|
type?: string;
|
||||||
|
mask?: boolean;
|
||||||
|
zIndex?: number;
|
||||||
|
position?: string;
|
||||||
|
duration?: number;
|
||||||
|
selector?: string;
|
||||||
|
forbidClick?: boolean;
|
||||||
|
loadingType?: string;
|
||||||
|
message?: ToastMessage;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Toast {
|
||||||
|
(message: ToastOptions | ToastMessage, options?: ToastOptions): Weapp.Component;
|
||||||
|
loading?(options?: ToastOptions | ToastMessage): Weapp.Component;
|
||||||
|
success?(options?: ToastOptions | ToastMessage): Weapp.Component;
|
||||||
|
fail?(options?: ToastOptions | ToastMessage): Weapp.Component;
|
||||||
|
clear?(): void;
|
||||||
|
setDefaultOptions?(options: ToastOptions): void;
|
||||||
|
resetDefaultOptions?(): void;
|
||||||
|
}
|
||||||
|
|
||||||
const defaultOptions = {
|
const defaultOptions = {
|
||||||
type: 'text',
|
type: 'text',
|
||||||
mask: false,
|
mask: false,
|
||||||
@ -14,17 +39,17 @@ const defaultOptions = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
let queue = [];
|
let queue = [];
|
||||||
let currentOptions = { ...defaultOptions };
|
let currentOptions: ToastOptions = { ...defaultOptions };
|
||||||
|
|
||||||
function parseOptions(message) {
|
function parseOptions(message): ToastOptions {
|
||||||
return isObj(message) ? message : { message };
|
return isObj(message) ? message : { message };
|
||||||
}
|
}
|
||||||
|
|
||||||
function Toast(options = {}) {
|
const Toast: Toast = (options = {}) => {
|
||||||
options = {
|
options = {
|
||||||
...currentOptions,
|
...currentOptions,
|
||||||
...parseOptions(options)
|
...parseOptions(options)
|
||||||
};
|
} as ToastOptions;
|
||||||
|
|
||||||
const pages = getCurrentPages();
|
const pages = getCurrentPages();
|
||||||
const ctx = pages[pages.length - 1];
|
const ctx = pages[pages.length - 1];
|
||||||
@ -54,7 +79,7 @@ const createMethod = type => options => Toast({
|
|||||||
Toast[method] = createMethod(method);
|
Toast[method] = createMethod(method);
|
||||||
});
|
});
|
||||||
|
|
||||||
Toast.clear = all => {
|
Toast.clear = () => {
|
||||||
queue.forEach(toast => {
|
queue.forEach(toast => {
|
||||||
toast.clear();
|
toast.clear();
|
||||||
});
|
});
|
@ -4,17 +4,10 @@ const ITEM_HEIGHT = 44;
|
|||||||
|
|
||||||
VantComponent({
|
VantComponent({
|
||||||
props: {
|
props: {
|
||||||
items: {
|
items: Array,
|
||||||
type: Array,
|
|
||||||
observer() {
|
|
||||||
this.updateSubItems();
|
|
||||||
this.updateMainHeight();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
mainActiveIndex: {
|
mainActiveIndex: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: 0,
|
value: 0
|
||||||
observer: 'updateSubItems'
|
|
||||||
},
|
},
|
||||||
activeId: {
|
activeId: {
|
||||||
type: Number,
|
type: Number,
|
||||||
@ -22,11 +15,7 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
maxHeight: {
|
maxHeight: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: 300,
|
value: 300
|
||||||
observer() {
|
|
||||||
this.updateItemHeight();
|
|
||||||
this.updateMainHeight();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -36,6 +25,20 @@ VantComponent({
|
|||||||
itemHeight: 0
|
itemHeight: 0
|
||||||
},
|
},
|
||||||
|
|
||||||
|
watch: {
|
||||||
|
items() {
|
||||||
|
this.updateSubItems();
|
||||||
|
this.updateMainHeight();
|
||||||
|
},
|
||||||
|
|
||||||
|
maxHeight() {
|
||||||
|
this.updateItemHeight();
|
||||||
|
this.updateMainHeight();
|
||||||
|
},
|
||||||
|
|
||||||
|
mainActiveIndex: 'updateSubItems'
|
||||||
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
// 当一个子项被选择时
|
// 当一个子项被选择时
|
||||||
onSelectItem(event) {
|
onSelectItem(event) {
|
||||||
@ -59,14 +62,22 @@ VantComponent({
|
|||||||
|
|
||||||
// 更新组件整体高度,根据最大高度和当前组件需要展示的高度来决定
|
// 更新组件整体高度,根据最大高度和当前组件需要展示的高度来决定
|
||||||
updateMainHeight() {
|
updateMainHeight() {
|
||||||
const maxHeight = Math.max(this.data.items.length * ITEM_HEIGHT, this.data.subItems.length * ITEM_HEIGHT);
|
const maxHeight = Math.max(
|
||||||
|
this.data.items.length * ITEM_HEIGHT,
|
||||||
|
this.data.subItems.length * ITEM_HEIGHT
|
||||||
|
);
|
||||||
|
|
||||||
this.setData({ mainHeight: Math.min(maxHeight, this.data.maxHeight) });
|
this.setData({ mainHeight: Math.min(maxHeight, this.data.maxHeight) });
|
||||||
},
|
},
|
||||||
|
|
||||||
// 更新子项列表高度,根据可展示的最大高度和当前子项列表的高度决定
|
// 更新子项列表高度,根据可展示的最大高度和当前子项列表的高度决定
|
||||||
updateItemHeight() {
|
updateItemHeight() {
|
||||||
this.setData({ itemHeight: Math.min(this.data.subItems.length * ITEM_HEIGHT, this.data.maxHeight) });
|
this.setData({
|
||||||
|
itemHeight: Math.min(
|
||||||
|
this.data.subItems.length * ITEM_HEIGHT,
|
||||||
|
this.data.maxHeight
|
||||||
|
)
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
12
types/index.d.ts
vendored
12
types/index.d.ts
vendored
@ -21,6 +21,7 @@ type RecordToReturn<T> = {
|
|||||||
export type CombinedComponentInstance<
|
export type CombinedComponentInstance<
|
||||||
Data,
|
Data,
|
||||||
Props,
|
Props,
|
||||||
|
Watch,
|
||||||
Methods,
|
Methods,
|
||||||
Computed
|
Computed
|
||||||
> = Methods &
|
> = Methods &
|
||||||
@ -30,11 +31,12 @@ export type CombinedComponentInstance<
|
|||||||
data: Data & RecordToAny<Props> & RecordToReturn<Computed>;
|
data: Data & RecordToAny<Props> & RecordToReturn<Computed>;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type VantComponentOptions<Data, Props, Methods, Computed, Instance> = {
|
export type VantComponentOptions<Data, Props, Watch, Methods, Computed, Instance> = {
|
||||||
data?: Data;
|
data?: Data;
|
||||||
props?: Props & ThisType<Instance>;
|
|
||||||
field?: boolean;
|
field?: boolean;
|
||||||
mixins?: Mixins;
|
mixins?: Mixins;
|
||||||
|
props?: Props & ThisType<Instance>;
|
||||||
|
watch?: Watch & ThisType<Instance>;
|
||||||
computed?: Computed & ThisType<Instance>;
|
computed?: Computed & ThisType<Instance>;
|
||||||
relations?: Relations<Instance>;
|
relations?: Relations<Instance>;
|
||||||
classes?: ExternalClasses;
|
classes?: ExternalClasses;
|
||||||
@ -42,7 +44,7 @@ export type VantComponentOptions<Data, Props, Methods, Computed, Instance> = {
|
|||||||
|
|
||||||
// lifetimes
|
// lifetimes
|
||||||
beforeCreate?: (this: Instance) => void;
|
beforeCreate?: (this: Instance) => void;
|
||||||
created?: () => void;
|
created?: (this: Instance) => void;
|
||||||
mounted?: () => void;
|
mounted?: (this: Instance) => void;
|
||||||
destroyed?: () => void;
|
destroyed?: (this: Instance) => void;
|
||||||
};
|
};
|
||||||
|
1
types/weapp.d.ts
vendored
1
types/weapp.d.ts
vendored
@ -13,6 +13,7 @@ declare function getCurrentPages(): Weapp.Page[];
|
|||||||
|
|
||||||
declare namespace Weapp {
|
declare namespace Weapp {
|
||||||
interface Component {
|
interface Component {
|
||||||
|
[key: string]: any;
|
||||||
getRelationNodes(selector: string): any[];
|
getRelationNodes(selector: string): any[];
|
||||||
setData(data: any, callback?: Function): void;
|
setData(data: any, callback?: Function): void;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user