Skip to content
This repository was archived by the owner on Dec 25, 2017. It is now read-only.

Commit 33a3378

Browse files
committedMar 13, 2016
refactor: more const variables
1 parent b5b2bc4 commit 33a3378

File tree

7 files changed

+24
-19
lines changed

7 files changed

+24
-19
lines changed
 

‎src/directives/validate.js

+6-4
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,14 @@ export default function (Vue) {
99
// register `v-validate` as terminal directive
1010
Vue.compiler.terminalDirectives.push('validate')
1111

12+
1213
/**
1314
* `v-validate` directive
1415
*/
1516

1617
Vue.directive('validate', {
1718
priority: vIf.priority + 1,
19+
1820
params: ['group', 'field', 'detect-blur', 'detect-change', 'initial'],
1921

2022
paramWatchers: {
@@ -94,9 +96,9 @@ export default function (Vue) {
9496
},
9597

9698
listen () {
97-
let model = this.model
98-
let validation = this.validation
99-
let el = this.frag.node
99+
const model = this.model
100+
const validation = this.validation
101+
const el = this.frag.node
100102

101103
this.onBlur = _.bind(validation.listener, validation)
102104
_.on(el, 'blur', this.onBlur)
@@ -121,7 +123,7 @@ export default function (Vue) {
121123
},
122124

123125
unlisten () {
124-
let el = this.frag.node
126+
const el = this.frag.node
125127

126128
if (this.onInput) {
127129
_.off(el, 'input', this.onInput)

‎src/directives/validator.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ export default function (Vue) {
88
const vIf = Vue.directive('if')
99
const camelize = Vue.util.camelize
1010

11+
12+
/**
13+
* `validator` element directive
14+
*/
15+
1116
Vue.elementDirective('validator', {
1217
params: ['name', 'groups', 'lazy'],
1318

@@ -52,7 +57,7 @@ export default function (Vue) {
5257
},
5358

5459
setupValidator () {
55-
let validator
60+
const validator
5661
= this.validator
5762
= new Validator(this.validatorName, this, this.getGroups())
5863
validator.enableReactive()

‎src/validations/base.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,14 @@ export default class BaseValidation {
3030
get el () { return this._el }
3131

3232
get detectChange () { return this._detectChange }
33-
3433
set detectChange (val) { this._detectChange = val }
3534

3635
get detectBlur () { return this._detectBlur }
37-
3836
set detectBlur (val) { this._detectBlur = val }
3937

4038
manageElement (el) {
4139
const scope = this._getScope()
42-
let model = this._model
40+
const model = this._model
4341
if (model) {
4442
el.value = scope.$get(model) || ''
4543
this._unwatch = scope.$watch(model, (val, old) => {

‎src/validations/checkbox.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export default class CheckboxValidation extends BaseValidation {
8383
}
8484

8585
_addItem (el) {
86-
let item = {
86+
const item = {
8787
el: el,
8888
init: el.checked,
8989
value: el.value

‎src/validations/radio.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export default class RadioValidation extends BaseValidation {
6363
}
6464

6565
_addItem (el) {
66-
let item = {
66+
const item = {
6767
el: el,
6868
init: el.checked,
6969
value: el.value

‎src/validations/select.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ export default class SelectValidation extends BaseValidation {
1717
const scope = this._getScope()
1818
const model = this._model
1919
if (model) {
20-
let value = scope.$get(model)
21-
let values = !Array.isArray(value) ? [value] : value
20+
const value = scope.$get(model)
21+
const values = !Array.isArray(value) ? [value] : value
2222
this._setOption(values, el)
2323
this._unwatch = scope.$watch(model, (val, old) => {
2424
let values1 = !Array.isArray(val) ? [val] : val
@@ -68,7 +68,7 @@ export default class SelectValidation extends BaseValidation {
6868
}
6969

7070
_checkModified (target) {
71-
let values = this._getValue(target).slice().sort()
71+
const values = this._getValue(target).slice().sort()
7272
if (this._init.length !== values.length) {
7373
return true
7474
} else {

‎src/validator.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export default class Validator {
7979
}
8080

8181
registerEvents () {
82-
let attrs = this._dir.el.attributes
82+
const attrs = this._dir.el.attributes
8383
for (let i = 0, l = attrs.length; i < l; i++) {
8484
let event = attrs[i].name
8585
if (eventRE.test(event)) {
@@ -152,7 +152,7 @@ export default class Validator {
152152
addGroupValidation (group, field) {
153153
const indexOf = util.Vue.util.indexOf
154154

155-
let validation = this._validations[field]
155+
const validation = this._validations[field]
156156
|| this._checkboxValidations[field].validation
157157
|| this._radioValidations[field].validation
158158
let validations = this._groupValidations[group]
@@ -161,7 +161,7 @@ export default class Validator {
161161
}
162162

163163
removeGroupValidation (group, field) {
164-
let validation = this._validations[field]
164+
const validation = this._validations[field]
165165
|| this._checkboxValidations[field].validation
166166
|| this._radioValidations[field].validation
167167
let validations = this._groupValidations[group]
@@ -192,8 +192,8 @@ export default class Validator {
192192
}
193193

194194
waitFor (cb) {
195+
const method = '$activateValidator'
195196
let vm = this._dir.vm
196-
let method = '$activateValidator'
197197

198198
vm[method] = () => {
199199
cb()
@@ -204,7 +204,7 @@ export default class Validator {
204204
_validate (field, touched = false, noopable = false, cb = null) {
205205
const scope = this._scope
206206

207-
let validation = this._getValidationFrom(field)
207+
const validation = this._getValidationFrom(field)
208208
if (validation) {
209209
validation.willUpdateFlags(touched)
210210
validation.validate((results) => {
@@ -366,7 +366,7 @@ export default class Validator {
366366
}
367367

368368
_fireEvent (type, ...args) {
369-
let handler = this._events[this._getEventName(type)]
369+
const handler = this._events[this._getEventName(type)]
370370
handler && handler.apply(null, args)
371371
}
372372

0 commit comments

Comments
 (0)