mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 10:22:44 +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',
|
||||
type: 'descendant',
|
||||
linked(target) {
|
||||
this.data.badges.push(target);
|
||||
this.badges.push(target);
|
||||
this.setActive();
|
||||
},
|
||||
unlinked(target) {
|
||||
this.data.badges = this.data.badges.filter(item => item !== target);
|
||||
this.badges = this.badges.filter(item => item !== target);
|
||||
this.setActive();
|
||||
}
|
||||
},
|
||||
@ -18,19 +18,17 @@ VantComponent({
|
||||
value: 0
|
||||
}
|
||||
},
|
||||
data: {
|
||||
badges: []
|
||||
},
|
||||
watch: {
|
||||
active: 'setActive'
|
||||
},
|
||||
beforeCreate() {
|
||||
this.badges = [];
|
||||
this.currentActive = -1;
|
||||
},
|
||||
methods: {
|
||||
setActive(badge) {
|
||||
let { active } = this.data;
|
||||
const { badges } = this.data;
|
||||
const { badges } = this;
|
||||
if (badge) {
|
||||
active = badges.indexOf(badge);
|
||||
}
|
||||
|
25
dist/field/index.js
vendored
25
dist/field/index.js
vendored
@ -33,10 +33,6 @@ VantComponent({
|
||||
type: Number,
|
||||
value: -1
|
||||
},
|
||||
value: {
|
||||
type: null,
|
||||
value: ''
|
||||
},
|
||||
type: {
|
||||
type: String,
|
||||
value: 'text'
|
||||
@ -51,7 +47,6 @@ VantComponent({
|
||||
}
|
||||
},
|
||||
data: {
|
||||
focused: false,
|
||||
showClear: false
|
||||
},
|
||||
computed: {
|
||||
@ -65,6 +60,9 @@ VantComponent({
|
||||
});
|
||||
}
|
||||
},
|
||||
beforeCreate() {
|
||||
this.focused = false;
|
||||
},
|
||||
methods: {
|
||||
onInput(event) {
|
||||
const { value = '' } = event.detail || {};
|
||||
@ -72,35 +70,34 @@ VantComponent({
|
||||
this.$emit('change', value);
|
||||
this.setData({
|
||||
value,
|
||||
showClear: this.getShowClear({ value })
|
||||
showClear: this.getShowClear(value)
|
||||
});
|
||||
},
|
||||
onFocus() {
|
||||
this.$emit('focus');
|
||||
this.focused = true;
|
||||
this.setData({
|
||||
focused: true,
|
||||
showClear: this.getShowClear({ focused: true })
|
||||
showClear: this.getShowClear()
|
||||
});
|
||||
},
|
||||
onBlur() {
|
||||
this.focused = false;
|
||||
this.$emit('blur');
|
||||
this.setData({
|
||||
focused: false,
|
||||
showClear: this.getShowClear({ focused: false })
|
||||
showClear: this.getShowClear()
|
||||
});
|
||||
},
|
||||
onClickIcon() {
|
||||
this.$emit('click-icon');
|
||||
},
|
||||
getShowClear(options) {
|
||||
const { focused = this.data.focused, value = this.data.value } = options;
|
||||
return (this.data.clearable && focused && value !== '' && !this.data.readonly);
|
||||
getShowClear(value) {
|
||||
value = value === undefined ? this.data.value : value;
|
||||
return (this.data.clearable && this.focused && value && !this.data.readonly);
|
||||
},
|
||||
onClear() {
|
||||
this.setData({
|
||||
value: '',
|
||||
showClear: this.getShowClear({ value: '' })
|
||||
showClear: this.getShowClear('')
|
||||
});
|
||||
this.$emit('input', '');
|
||||
this.$emit('change', '');
|
||||
|
3
dist/search/index.js
vendored
3
dist/search/index.js
vendored
@ -18,9 +18,6 @@ VantComponent({
|
||||
value: -1
|
||||
}
|
||||
},
|
||||
data: {
|
||||
value: ''
|
||||
},
|
||||
methods: {
|
||||
onChange(event) {
|
||||
this.setData({ value: event.detail });
|
||||
|
3
dist/stepper/index.js
vendored
3
dist/stepper/index.js
vendored
@ -26,9 +26,6 @@ VantComponent({
|
||||
value: 1
|
||||
}
|
||||
},
|
||||
data: {
|
||||
value: 0
|
||||
},
|
||||
created() {
|
||||
this.setData({
|
||||
value: this.range(this.data.value)
|
||||
|
@ -22,11 +22,11 @@
|
||||
},
|
||||
"homepage": "https://github.com/youzan/vant-weapp#readme",
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.1.0",
|
||||
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
|
||||
"@babel/preset-env": "^7.1.0",
|
||||
"autoprefixer": "^9.1.5",
|
||||
"babel-core": "^6.26.3",
|
||||
"babel-loader": "7.1.5",
|
||||
"babel-preset-env": "^1.7.0",
|
||||
"babel-preset-stage-0": "^6.24.1",
|
||||
"babel-loader": "8.0.2",
|
||||
"cross-env": "^5.1.4",
|
||||
"css-loader": "^1.0.0",
|
||||
"eslint": "^5.6.0",
|
||||
|
@ -5,11 +5,11 @@ VantComponent({
|
||||
name: 'badge',
|
||||
type: 'descendant',
|
||||
linked(target: Weapp.Component) {
|
||||
this.data.badges.push(target);
|
||||
this.badges.push(target);
|
||||
this.setActive();
|
||||
},
|
||||
unlinked(target: Weapp.Component) {
|
||||
this.data.badges = this.data.badges.filter(item => item !== target);
|
||||
this.badges = this.badges.filter(item => item !== target);
|
||||
this.setActive();
|
||||
}
|
||||
},
|
||||
@ -21,22 +21,19 @@ VantComponent({
|
||||
}
|
||||
},
|
||||
|
||||
data: {
|
||||
badges: []
|
||||
},
|
||||
|
||||
watch: {
|
||||
active: 'setActive'
|
||||
},
|
||||
|
||||
beforeCreate() {
|
||||
this.badges = [];
|
||||
this.currentActive = -1;
|
||||
},
|
||||
|
||||
methods: {
|
||||
setActive(badge) {
|
||||
setActive(badge: Weapp.Component) {
|
||||
let { active } = this.data;
|
||||
const { badges } = this.data;
|
||||
const { badges } = this;
|
||||
|
||||
if (badge) {
|
||||
active = badges.indexOf(badge);
|
||||
|
@ -36,10 +36,6 @@ VantComponent({
|
||||
type: Number,
|
||||
value: -1
|
||||
},
|
||||
value: {
|
||||
type: null,
|
||||
value: ''
|
||||
},
|
||||
type: {
|
||||
type: String,
|
||||
value: 'text'
|
||||
@ -55,7 +51,6 @@ VantComponent({
|
||||
},
|
||||
|
||||
data: {
|
||||
focused: false,
|
||||
showClear: false
|
||||
},
|
||||
|
||||
@ -71,6 +66,10 @@ VantComponent({
|
||||
}
|
||||
},
|
||||
|
||||
beforeCreate() {
|
||||
this.focused = false;
|
||||
},
|
||||
|
||||
methods: {
|
||||
onInput(event: Weapp.Event) {
|
||||
const { value = '' } = event.detail || {};
|
||||
@ -78,15 +77,15 @@ VantComponent({
|
||||
this.$emit('change', value);
|
||||
this.setData({
|
||||
value,
|
||||
showClear: this.getShowClear({ value })
|
||||
showClear: this.getShowClear(value)
|
||||
});
|
||||
},
|
||||
|
||||
onFocus() {
|
||||
this.$emit('focus');
|
||||
this.focused = true;
|
||||
this.setData({
|
||||
focused: true,
|
||||
showClear: this.getShowClear({ focused: true })
|
||||
showClear: this.getShowClear()
|
||||
});
|
||||
},
|
||||
|
||||
@ -94,8 +93,7 @@ VantComponent({
|
||||
this.focused = false;
|
||||
this.$emit('blur');
|
||||
this.setData({
|
||||
focused: false,
|
||||
showClear: this.getShowClear({ focused: false })
|
||||
showClear: this.getShowClear()
|
||||
});
|
||||
},
|
||||
|
||||
@ -103,18 +101,17 @@ VantComponent({
|
||||
this.$emit('click-icon');
|
||||
},
|
||||
|
||||
getShowClear(options): boolean {
|
||||
const { focused = this.data.focused, value = this.data.value } = options;
|
||||
|
||||
getShowClear(value?: string): boolean {
|
||||
value = value === undefined ? this.data.value : value;
|
||||
return (
|
||||
this.data.clearable && focused && value !== '' && !this.data.readonly
|
||||
this.data.clearable && this.focused && value && !this.data.readonly
|
||||
);
|
||||
},
|
||||
|
||||
onClear() {
|
||||
this.setData({
|
||||
value: '',
|
||||
showClear: this.getShowClear({ value: '' })
|
||||
showClear: this.getShowClear('')
|
||||
});
|
||||
this.$emit('input', '');
|
||||
this.$emit('change', '');
|
||||
|
@ -22,10 +22,6 @@ VantComponent({
|
||||
}
|
||||
},
|
||||
|
||||
data: {
|
||||
value: ''
|
||||
},
|
||||
|
||||
methods: {
|
||||
onChange(event: Weapp.Event) {
|
||||
this.setData({ value: event.detail });
|
||||
|
@ -31,10 +31,6 @@ VantComponent({
|
||||
}
|
||||
},
|
||||
|
||||
data: {
|
||||
value: 0
|
||||
},
|
||||
|
||||
created() {
|
||||
this.setData({
|
||||
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 &
|
||||
LooseObject &
|
||||
Weapp.Component &
|
||||
Weapp.FormField &
|
||||
ComponentInstance & {
|
||||
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;
|
||||
}
|
||||
|
||||
interface FormField {
|
||||
data: {
|
||||
name: string;
|
||||
value: any;
|
||||
}
|
||||
}
|
||||
|
||||
interface Target {
|
||||
id: string;
|
||||
tagName: string;
|
||||
|
Loading…
x
Reference in New Issue
Block a user