[build] update to babel 7 (#656)

This commit is contained in:
neverland 2018-09-27 16:52:41 +08:00 committed by GitHub
parent bce7f20a1e
commit 27ed2e5657
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
14 changed files with 635 additions and 746 deletions

View File

@ -1,12 +0,0 @@
{
"presets": [
"stage-0",
[
"env",
{
"loose": true,
"exclude": ["transform-es2015-typeof-symbol"]
}
]
]
}

14
babel.config.js Normal file
View File

@ -0,0 +1,14 @@
module.exports = {
presets: [
[
'@babel/preset-env',
{
loose: true,
modules: 'commonjs'
}
]
],
plugins: [
'@babel/plugin-syntax-dynamic-import'
]
};

View File

@ -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
View File

@ -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', '');

View File

@ -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 });

View File

@ -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)

View File

@ -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",

View File

@ -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);

View File

@ -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', '');

View File

@ -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 });

View File

@ -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
View File

@ -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
View File

@ -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;

1250
yarn.lock

File diff suppressed because it is too large Load Diff