mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
[build] update to babel 7 (#656)
This commit is contained in:
parent
bce7f20a1e
commit
27ed2e5657
12
.babelrc
12
.babelrc
@ -1,12 +0,0 @@
|
|||||||
{
|
|
||||||
"presets": [
|
|
||||||
"stage-0",
|
|
||||||
[
|
|
||||||
"env",
|
|
||||||
{
|
|
||||||
"loose": true,
|
|
||||||
"exclude": ["transform-es2015-typeof-symbol"]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
]
|
|
||||||
}
|
|
14
babel.config.js
Normal file
14
babel.config.js
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
module.exports = {
|
||||||
|
presets: [
|
||||||
|
[
|
||||||
|
'@babel/preset-env',
|
||||||
|
{
|
||||||
|
loose: true,
|
||||||
|
modules: 'commonjs'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
plugins: [
|
||||||
|
'@babel/plugin-syntax-dynamic-import'
|
||||||
|
]
|
||||||
|
};
|
10
dist/badge-group/index.js
vendored
10
dist/badge-group/index.js
vendored
@ -4,11 +4,11 @@ VantComponent({
|
|||||||
name: 'badge',
|
name: 'badge',
|
||||||
type: 'descendant',
|
type: 'descendant',
|
||||||
linked(target) {
|
linked(target) {
|
||||||
this.data.badges.push(target);
|
this.badges.push(target);
|
||||||
this.setActive();
|
this.setActive();
|
||||||
},
|
},
|
||||||
unlinked(target) {
|
unlinked(target) {
|
||||||
this.data.badges = this.data.badges.filter(item => item !== target);
|
this.badges = this.badges.filter(item => item !== target);
|
||||||
this.setActive();
|
this.setActive();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -18,19 +18,17 @@ VantComponent({
|
|||||||
value: 0
|
value: 0
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data: {
|
|
||||||
badges: []
|
|
||||||
},
|
|
||||||
watch: {
|
watch: {
|
||||||
active: 'setActive'
|
active: 'setActive'
|
||||||
},
|
},
|
||||||
beforeCreate() {
|
beforeCreate() {
|
||||||
|
this.badges = [];
|
||||||
this.currentActive = -1;
|
this.currentActive = -1;
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
setActive(badge) {
|
setActive(badge) {
|
||||||
let { active } = this.data;
|
let { active } = this.data;
|
||||||
const { badges } = this.data;
|
const { badges } = this;
|
||||||
if (badge) {
|
if (badge) {
|
||||||
active = badges.indexOf(badge);
|
active = badges.indexOf(badge);
|
||||||
}
|
}
|
||||||
|
25
dist/field/index.js
vendored
25
dist/field/index.js
vendored
@ -33,10 +33,6 @@ VantComponent({
|
|||||||
type: Number,
|
type: Number,
|
||||||
value: -1
|
value: -1
|
||||||
},
|
},
|
||||||
value: {
|
|
||||||
type: null,
|
|
||||||
value: ''
|
|
||||||
},
|
|
||||||
type: {
|
type: {
|
||||||
type: String,
|
type: String,
|
||||||
value: 'text'
|
value: 'text'
|
||||||
@ -51,7 +47,6 @@ VantComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
focused: false,
|
|
||||||
showClear: false
|
showClear: false
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
@ -65,6 +60,9 @@ VantComponent({
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
beforeCreate() {
|
||||||
|
this.focused = false;
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onInput(event) {
|
onInput(event) {
|
||||||
const { value = '' } = event.detail || {};
|
const { value = '' } = event.detail || {};
|
||||||
@ -72,35 +70,34 @@ VantComponent({
|
|||||||
this.$emit('change', value);
|
this.$emit('change', value);
|
||||||
this.setData({
|
this.setData({
|
||||||
value,
|
value,
|
||||||
showClear: this.getShowClear({ value })
|
showClear: this.getShowClear(value)
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
onFocus() {
|
onFocus() {
|
||||||
this.$emit('focus');
|
this.$emit('focus');
|
||||||
|
this.focused = true;
|
||||||
this.setData({
|
this.setData({
|
||||||
focused: true,
|
showClear: this.getShowClear()
|
||||||
showClear: this.getShowClear({ focused: true })
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
onBlur() {
|
onBlur() {
|
||||||
this.focused = false;
|
this.focused = false;
|
||||||
this.$emit('blur');
|
this.$emit('blur');
|
||||||
this.setData({
|
this.setData({
|
||||||
focused: false,
|
showClear: this.getShowClear()
|
||||||
showClear: this.getShowClear({ focused: false })
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
onClickIcon() {
|
onClickIcon() {
|
||||||
this.$emit('click-icon');
|
this.$emit('click-icon');
|
||||||
},
|
},
|
||||||
getShowClear(options) {
|
getShowClear(value) {
|
||||||
const { focused = this.data.focused, value = this.data.value } = options;
|
value = value === undefined ? this.data.value : value;
|
||||||
return (this.data.clearable && focused && value !== '' && !this.data.readonly);
|
return (this.data.clearable && this.focused && value && !this.data.readonly);
|
||||||
},
|
},
|
||||||
onClear() {
|
onClear() {
|
||||||
this.setData({
|
this.setData({
|
||||||
value: '',
|
value: '',
|
||||||
showClear: this.getShowClear({ value: '' })
|
showClear: this.getShowClear('')
|
||||||
});
|
});
|
||||||
this.$emit('input', '');
|
this.$emit('input', '');
|
||||||
this.$emit('change', '');
|
this.$emit('change', '');
|
||||||
|
3
dist/search/index.js
vendored
3
dist/search/index.js
vendored
@ -18,9 +18,6 @@ VantComponent({
|
|||||||
value: -1
|
value: -1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data: {
|
|
||||||
value: ''
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
onChange(event) {
|
onChange(event) {
|
||||||
this.setData({ value: event.detail });
|
this.setData({ value: event.detail });
|
||||||
|
3
dist/stepper/index.js
vendored
3
dist/stepper/index.js
vendored
@ -26,9 +26,6 @@ VantComponent({
|
|||||||
value: 1
|
value: 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data: {
|
|
||||||
value: 0
|
|
||||||
},
|
|
||||||
created() {
|
created() {
|
||||||
this.setData({
|
this.setData({
|
||||||
value: this.range(this.data.value)
|
value: this.range(this.data.value)
|
||||||
|
@ -22,11 +22,11 @@
|
|||||||
},
|
},
|
||||||
"homepage": "https://github.com/youzan/vant-weapp#readme",
|
"homepage": "https://github.com/youzan/vant-weapp#readme",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@babel/core": "^7.1.0",
|
||||||
|
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
|
||||||
|
"@babel/preset-env": "^7.1.0",
|
||||||
"autoprefixer": "^9.1.5",
|
"autoprefixer": "^9.1.5",
|
||||||
"babel-core": "^6.26.3",
|
"babel-loader": "8.0.2",
|
||||||
"babel-loader": "7.1.5",
|
|
||||||
"babel-preset-env": "^1.7.0",
|
|
||||||
"babel-preset-stage-0": "^6.24.1",
|
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"css-loader": "^1.0.0",
|
"css-loader": "^1.0.0",
|
||||||
"eslint": "^5.6.0",
|
"eslint": "^5.6.0",
|
||||||
|
@ -5,11 +5,11 @@ VantComponent({
|
|||||||
name: 'badge',
|
name: 'badge',
|
||||||
type: 'descendant',
|
type: 'descendant',
|
||||||
linked(target: Weapp.Component) {
|
linked(target: Weapp.Component) {
|
||||||
this.data.badges.push(target);
|
this.badges.push(target);
|
||||||
this.setActive();
|
this.setActive();
|
||||||
},
|
},
|
||||||
unlinked(target: Weapp.Component) {
|
unlinked(target: Weapp.Component) {
|
||||||
this.data.badges = this.data.badges.filter(item => item !== target);
|
this.badges = this.badges.filter(item => item !== target);
|
||||||
this.setActive();
|
this.setActive();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -21,22 +21,19 @@ VantComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
data: {
|
|
||||||
badges: []
|
|
||||||
},
|
|
||||||
|
|
||||||
watch: {
|
watch: {
|
||||||
active: 'setActive'
|
active: 'setActive'
|
||||||
},
|
},
|
||||||
|
|
||||||
beforeCreate() {
|
beforeCreate() {
|
||||||
|
this.badges = [];
|
||||||
this.currentActive = -1;
|
this.currentActive = -1;
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
setActive(badge) {
|
setActive(badge: Weapp.Component) {
|
||||||
let { active } = this.data;
|
let { active } = this.data;
|
||||||
const { badges } = this.data;
|
const { badges } = this;
|
||||||
|
|
||||||
if (badge) {
|
if (badge) {
|
||||||
active = badges.indexOf(badge);
|
active = badges.indexOf(badge);
|
||||||
|
@ -36,10 +36,6 @@ VantComponent({
|
|||||||
type: Number,
|
type: Number,
|
||||||
value: -1
|
value: -1
|
||||||
},
|
},
|
||||||
value: {
|
|
||||||
type: null,
|
|
||||||
value: ''
|
|
||||||
},
|
|
||||||
type: {
|
type: {
|
||||||
type: String,
|
type: String,
|
||||||
value: 'text'
|
value: 'text'
|
||||||
@ -55,7 +51,6 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
data: {
|
data: {
|
||||||
focused: false,
|
|
||||||
showClear: false
|
showClear: false
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -71,6 +66,10 @@ VantComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
beforeCreate() {
|
||||||
|
this.focused = false;
|
||||||
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onInput(event: Weapp.Event) {
|
onInput(event: Weapp.Event) {
|
||||||
const { value = '' } = event.detail || {};
|
const { value = '' } = event.detail || {};
|
||||||
@ -78,15 +77,15 @@ VantComponent({
|
|||||||
this.$emit('change', value);
|
this.$emit('change', value);
|
||||||
this.setData({
|
this.setData({
|
||||||
value,
|
value,
|
||||||
showClear: this.getShowClear({ value })
|
showClear: this.getShowClear(value)
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
onFocus() {
|
onFocus() {
|
||||||
this.$emit('focus');
|
this.$emit('focus');
|
||||||
|
this.focused = true;
|
||||||
this.setData({
|
this.setData({
|
||||||
focused: true,
|
showClear: this.getShowClear()
|
||||||
showClear: this.getShowClear({ focused: true })
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -94,8 +93,7 @@ VantComponent({
|
|||||||
this.focused = false;
|
this.focused = false;
|
||||||
this.$emit('blur');
|
this.$emit('blur');
|
||||||
this.setData({
|
this.setData({
|
||||||
focused: false,
|
showClear: this.getShowClear()
|
||||||
showClear: this.getShowClear({ focused: false })
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -103,18 +101,17 @@ VantComponent({
|
|||||||
this.$emit('click-icon');
|
this.$emit('click-icon');
|
||||||
},
|
},
|
||||||
|
|
||||||
getShowClear(options): boolean {
|
getShowClear(value?: string): boolean {
|
||||||
const { focused = this.data.focused, value = this.data.value } = options;
|
value = value === undefined ? this.data.value : value;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
this.data.clearable && focused && value !== '' && !this.data.readonly
|
this.data.clearable && this.focused && value && !this.data.readonly
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
onClear() {
|
onClear() {
|
||||||
this.setData({
|
this.setData({
|
||||||
value: '',
|
value: '',
|
||||||
showClear: this.getShowClear({ value: '' })
|
showClear: this.getShowClear('')
|
||||||
});
|
});
|
||||||
this.$emit('input', '');
|
this.$emit('input', '');
|
||||||
this.$emit('change', '');
|
this.$emit('change', '');
|
||||||
|
@ -22,10 +22,6 @@ VantComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
data: {
|
|
||||||
value: ''
|
|
||||||
},
|
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onChange(event: Weapp.Event) {
|
onChange(event: Weapp.Event) {
|
||||||
this.setData({ value: event.detail });
|
this.setData({ value: event.detail });
|
||||||
|
@ -31,10 +31,6 @@ VantComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
data: {
|
|
||||||
value: 0
|
|
||||||
},
|
|
||||||
|
|
||||||
created() {
|
created() {
|
||||||
this.setData({
|
this.setData({
|
||||||
value: this.range(this.data.value)
|
value: this.range(this.data.value)
|
||||||
|
1
types/index.d.ts
vendored
1
types/index.d.ts
vendored
@ -29,6 +29,7 @@ export type CombinedComponentInstance<
|
|||||||
> = Methods &
|
> = Methods &
|
||||||
LooseObject &
|
LooseObject &
|
||||||
Weapp.Component &
|
Weapp.Component &
|
||||||
|
Weapp.FormField &
|
||||||
ComponentInstance & {
|
ComponentInstance & {
|
||||||
data: Data & RecordToAny<Props> & RecordToReturn<Computed>;
|
data: Data & RecordToAny<Props> & RecordToReturn<Computed>;
|
||||||
};
|
};
|
||||||
|
7
types/weapp.d.ts
vendored
7
types/weapp.d.ts
vendored
@ -18,6 +18,13 @@ declare namespace Weapp {
|
|||||||
setData(data: any, callback?: Function): void;
|
setData(data: any, callback?: Function): void;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface FormField {
|
||||||
|
data: {
|
||||||
|
name: string;
|
||||||
|
value: any;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
interface Target {
|
interface Target {
|
||||||
id: string;
|
id: string;
|
||||||
tagName: string;
|
tagName: string;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user