Skip to content

Commit 0fad255

Browse files
committed
Finish switching functions to arrows, and remove JSHint comments
1 parent daa0d85 commit 0fad255

14 files changed

+78
-77
lines changed

.eslintrc.js

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ module.exports = {
5757
} ],
5858
'object-curly-spacing': [ 'error', 'always' ],
5959
'object-property-newline': [ 'error' ],
60+
'prefer-arrow-callback': [ 'error' ],
6061
'prefer-const': [ 'error' ],
6162
'quotes': [ 'error', 'single' ],
6263
'semi': [ 'error', 'always' ],

build/grunt/generate-docs.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module.exports = function( grunt ) {
1111
grunt.log.writeln( 'Extracting page content from README.md...' );
1212

1313
// Kick off generation
14-
require( '../scripts/generate-docs-markdown' ).then( function() {
14+
require( '../scripts/generate-docs-markdown' ).then( () => {
1515
grunt.log.writeln( 'Pages generated successfully' );
1616
done();
1717
} );

build/scripts/simplify-object.js

+27-20
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const objectReduce = require( '../../lib/util/object-reduce' );
1717
* @returns {*} The passed-in value, with non-essential args properties and all
1818
* _links properties removes.
1919
*/
20-
function simplifyObject( obj ) {
20+
const simplifyObject = ( obj ) => {
2121
// Pass through falsy values, Dates and RegExp values without modification
2222
if ( ! obj || obj instanceof Date || obj instanceof RegExp ) {
2323
return obj;
@@ -30,29 +30,36 @@ function simplifyObject( obj ) {
3030

3131
// Reduce through objects to run each property through simplifyObject
3232
if ( typeof obj === 'object' ) {
33-
return objectReduce( obj, function( newObj, val, key ) {
34-
// Omit _links objects entirely
35-
if ( key === '_links' ) {
36-
return newObj;
37-
}
33+
return objectReduce(
34+
obj,
35+
( newObj, val, key ) => {
36+
// Omit _links objects entirely
37+
if ( key === '_links' ) {
38+
return newObj;
39+
}
3840

39-
// If the key is "args", omit all keys of second-level descendants
40-
// other than "required"
41-
if ( key === 'args' ) {
42-
newObj.args = objectReduce( val, function( slimArgs, argVal, argKey ) {
43-
slimArgs[ argKey ] = {};
44-
return slimArgs;
45-
}, {} );
46-
} else {
47-
// Pass all other objects through simplifyObject
48-
newObj[ key ] = simplifyObject( obj[ key ] );
49-
}
50-
return newObj;
51-
}, {} );
41+
// If the key is "args", omit all keys of second-level descendants
42+
if ( key === 'args' ) {
43+
newObj.args = objectReduce(
44+
val,
45+
( slimArgs, argVal, argKey ) => {
46+
slimArgs[ argKey ] = {};
47+
return slimArgs;
48+
},
49+
{}
50+
);
51+
} else {
52+
// Pass all other objects through simplifyObject
53+
newObj[ key ] = simplifyObject( obj[ key ] );
54+
}
55+
return newObj;
56+
},
57+
{}
58+
);
5259
}
5360

5461
// All other types pass through without modification
5562
return obj;
56-
}
63+
};
5764

5865
module.exports = simplifyObject;

build/scripts/update-default-routes-json.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,11 @@ const fileName = argv.file || 'default-routes.json';
104104

105105
// This directory will be called to kick off the JSON download: it uses
106106
// superagent internally for HTTP transport that respects HTTP redirects.
107-
function getJSON( cbFn ) {
107+
const getJSON = ( cbFn ) => {
108108
agent
109109
.get( endpoint )
110110
.set( 'Accept', 'application/json' )
111-
.end( function( err, res ) {
111+
.end( ( err, res ) => {
112112
// Inspect the error and then the response to infer various error states
113113
if ( err ) {
114114
console.error( '\nSomething went wrong! Could not download endpoint JSON.' );
@@ -129,7 +129,7 @@ function getJSON( cbFn ) {
129129

130130
cbFn( res );
131131
} );
132-
}
132+
};
133133

134134
// The only assumption we want to make about the URL is that it should be a web
135135
// URL of _some_ sort, which generally means it has "http" in it somewhere. We
@@ -142,23 +142,23 @@ if ( ! /http/i.test( endpoint ) ) {
142142
process.exit( 1 );
143143
}
144144

145-
fs.stat( outputPath, function( err, stats ) {
145+
fs.stat( outputPath, ( err, stats ) => {
146146
if ( err || ! stats.isDirectory() ) {
147147
console.error( '\nError: ' + outputPath );
148148
console.error( 'This is not a valid directory. Please double-check the path and try again.' );
149149
process.exit( 1 );
150150
}
151151

152152
// If we made it this far, our arguments look good! Carry on.
153-
getJSON( function( response ) {
153+
getJSON( ( response ) => {
154154
// Extract the JSON
155155
const endpointJSON = JSON.parse( JSON.stringify( response.body ) );
156156
// Simplify the JSON structure and pick out the routes dictionary
157157
const slimJSON = simplifyObject( endpointJSON ).routes;
158158

159159
// Save the file
160160
const outputFilePath = path.join( outputPath, fileName );
161-
fs.writeFile( outputFilePath, JSON.stringify( slimJSON ), function( err ) {
161+
fs.writeFile( outputFilePath, JSON.stringify( slimJSON ), ( err ) => {
162162
if ( err ) {
163163
console.error( '\nSomething went wrong! Could not save ' + outputFilePath );
164164
return process.exit( 1 );

lib/constructors/wp-request.js

+17-13
Original file line numberDiff line numberDiff line change
@@ -123,15 +123,19 @@ function prepareTaxonomies( taxonomyFilters ) {
123123
return {};
124124
}
125125

126-
return objectReduce( taxonomyFilters, function( result, terms, key ) {
127-
// Trim whitespace and concatenate multiple terms with +
128-
result[ key ] = terms
129-
// Coerce term into a string so that trim() won't fail
130-
.map( term => ( term + '' ).trim().toLowerCase() )
131-
.join( '+' );
132-
133-
return result;
134-
}, {} );
126+
return objectReduce(
127+
taxonomyFilters,
128+
( result, terms, key ) => {
129+
// Trim whitespace and concatenate multiple terms with +
130+
result[ key ] = terms
131+
// Coerce term into a string so that trim() won't fail
132+
.map( term => ( term + '' ).trim().toLowerCase() )
133+
.join( '+' );
134+
135+
return result;
136+
},
137+
{}
138+
);
135139
}
136140

137141
/**
@@ -150,7 +154,7 @@ function prepareTaxonomies( taxonomyFilters ) {
150154
* @param {Object} obj An object of key/value pairs
151155
* @returns {Object} That object with all empty values removed
152156
*/
153-
function populated( obj ) {
157+
const populated = ( obj ) => {
154158
if ( ! obj ) {
155159
return obj;
156160
}
@@ -164,7 +168,7 @@ function populated( obj ) {
164168
},
165169
{}
166170
);
167-
}
171+
};
168172

169173
/**
170174
* Assert whether a provided URL component is "valid" by checking it against
@@ -178,7 +182,7 @@ function populated( obj ) {
178182
* @returns {boolean} Whether the provided input matches any of the provided
179183
* level validation functions
180184
*/
181-
function validatePathLevel( levelDefinitions, levelContents ) {
185+
const validatePathLevel = ( levelDefinitions, levelContents ) => {
182186
// One "level" may have multiple options, as a route tree is a branching
183187
// structure. We consider a level "valid" if the provided levelContents
184188
// match any of the available validators.
@@ -202,7 +206,7 @@ function validatePathLevel( levelDefinitions, levelContents ) {
202206
).join( ', ' ),
203207
].join( ' ' ) );
204208
}
205-
}
209+
};
206210

207211
// (Semi-)Private Prototype Methods
208212
// ================================

lib/mixins/filters.js

+2-7
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,6 @@ const filterMixins = {};
4747
* @returns The request instance (for chaining)
4848
*/
4949
filterMixins.filter = function( props, value ) {
50-
/* jshint validthis:true */
51-
5250
if ( ! props || typeof props === 'string' && value === undefined ) {
5351
// We have no filter to set, or no value to set for that filter
5452
return this;
@@ -74,14 +72,15 @@ filterMixins.filter = function( props, value ) {
7472
* @returns The request instance (for chaining)
7573
*/
7674
filterMixins.taxonomy = function( taxonomy, term ) {
77-
/* jshint validthis:true */
7875
const termIsArray = Array.isArray( term );
76+
7977
const termIsNumber = termIsArray ?
8078
term.reduce(
8179
( allAreNumbers, term ) => allAreNumbers && typeof term === 'number',
8280
true
8381
) :
8482
typeof term === 'number';
83+
8584
const termIsString = termIsArray ?
8685
term.reduce(
8786
( allAreStrings, term ) => allAreStrings && typeof term === 'string',
@@ -133,7 +132,6 @@ filterMixins.taxonomy = function( taxonomy, term ) {
133132
* @returns The request instance (for chaining)
134133
*/
135134
filterMixins.year = function( year ) {
136-
/* jshint validthis:true */
137135
return filterMixins.filter.call( this, 'year', year );
138136
};
139137

@@ -147,7 +145,6 @@ filterMixins.year = function( year ) {
147145
* @returns The request instance (for chaining)
148146
*/
149147
filterMixins.month = function( month ) {
150-
/* jshint validthis:true */
151148
let monthDate;
152149
if ( typeof month === 'string' ) {
153150
// Append a arbitrary day and year to the month to parse the string into a Date
@@ -179,7 +176,6 @@ filterMixins.month = function( month ) {
179176
* @returns The request instance (for chaining)
180177
*/
181178
filterMixins.day = function( day ) {
182-
/* jshint validthis:true */
183179
return filterMixins.filter.call( this, 'day', day );
184180
};
185181

@@ -192,7 +188,6 @@ filterMixins.day = function( day ) {
192188
* @returns The request instance (for chaining)
193189
*/
194190
filterMixins.path = function( path ) {
195-
/* jshint validthis:true */
196191
return filterMixins.filter.call( this, 'pagename', path );
197192
};
198193

lib/mixins/parameters.js

-5
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ const taxonomy = filters.taxonomy;
4444
* @returns The request instance (for chaining)
4545
*/
4646
parameterMixins.author = function( author ) {
47-
/* jshint validthis:true */
4847
if ( author === undefined ) {
4948
return this;
5049
}
@@ -156,7 +155,6 @@ parameterMixins.categories = paramSetter( 'categories' );
156155
* @returns The request instance (for chaining)
157156
*/
158157
parameterMixins.category = function( category ) {
159-
/* jshint validthis:true */
160158
if ( argumentIsNumeric( category ) ) {
161159
return parameterMixins.categories.call( this, category );
162160
}
@@ -193,7 +191,6 @@ parameterMixins.tags = paramSetter( 'tags' );
193191
* @returns The request instance (for chaining)
194192
*/
195193
parameterMixins.tag = function( tag ) {
196-
/* jshint validthis:true */
197194
if ( argumentIsNumeric( tag ) ) {
198195
return parameterMixins.tags.call( this, tag );
199196
}
@@ -230,7 +227,6 @@ parameterMixins.excludeTags = paramSetter( 'tags_exclude' );
230227
* @returns The request instance (for chaining)
231228
*/
232229
parameterMixins.before = function( date ) {
233-
/* jshint validthis:true */
234230
return this.param( 'before', new Date( date ).toISOString() );
235231
};
236232

@@ -251,7 +247,6 @@ parameterMixins.before = function( date ) {
251247
* @returns The request instance (for chaining)
252248
*/
253249
parameterMixins.after = function( date ) {
254-
/* jshint validthis:true */
255250
return this.param( 'after', new Date( date ).toISOString() );
256251
};
257252

lib/path-part-setter.js

-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ function createPathPartSetter( node ) {
4242
* @returns {Object} The handler instance (for chaining)
4343
*/
4444
return function( val ) {
45-
/* jshint validthis:true */
4645
this.setPathPart( nodeLevel, val );
4746
if ( supportedMethods.length ) {
4847
this._supportedMethods = supportedMethods;
@@ -67,7 +66,6 @@ function createPathPartSetter( node ) {
6766
* @returns {Object} The handler instance (for chaining)
6867
*/
6968
return function( val ) {
70-
/* jshint validthis:true */
7169
// If the path part is not a namedGroup, it should have exactly one
7270
// entry in the names array: use that as the value for this setter,
7371
// as it will usually correspond to a collection endpoint.

lib/util/object-reduce.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
* @param {*} initialState The initial value to pass to the reducer function
2020
* @returns The result of the reduction operation
2121
*/
22-
module.exports = ( obj, iterator, initialState ) => Object.keys( obj )
22+
module.exports = ( obj, iterator, initialState ) => Object
23+
.keys( obj )
2324
.reduce(
2425
( memo, key ) => iterator( memo, obj[ key ], key ),
2526
initialState

lib/util/parameter-setter.js

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ module.exports = ( param ) => {
1616
* @returns The request instance on which this method was called (for chaining)
1717
*/
1818
return function( val ) {
19-
/* jshint validthis:true */
2019
return this.param( param, val );
2120
};
2221
};

lib/wp-register-route.js

-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ function registerRoute( namespace, restBase, options = {} ) {
9191
}
9292

9393
function endpointFactory( options ) {
94-
/* jshint validthis:true */
9594
options = options || {};
9695
options = extend( options, this && this._options );
9796
return new EndpointRequest( options );

tests/integration/custom-http-transport.js

-2
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ describe( 'integration: custom HTTP transport methods', () => {
102102
// If .slug is used, auto-unwrap the returned array
103103
get( wpreq, cb ) {
104104
if ( ! wpreq._params.slug ) {
105-
/* jshint validthis:true */
106105
return WPAPI.transport.get.call( this, wpreq, cb );
107106
}
108107
return WPAPI.transport.get( wpreq ).then( ( results ) => {
@@ -142,7 +141,6 @@ describe( 'integration: custom HTTP transport methods', () => {
142141
transport: {
143142
// Add collection helper methods to the returned arrays
144143
get( wpreq, cb ) {
145-
/* jshint validthis:true */
146144
return WPAPI.transport.get.call( this, wpreq, cb ).then( ( results ) => {
147145
if ( Array.isArray( results ) ) {
148146
return new Collection( results );

tests/integration/posts.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,7 @@ describe( 'integration: posts()', () => {
817817

818818
request( cb ) {
819819
const self = this;
820-
wp.posts().get( function( err, data ) {
820+
wp.posts().get( ( err, data ) => {
821821
expect( err ).toBeNull();
822822

823823
// Context is maintained
@@ -832,7 +832,7 @@ describe( 'integration: posts()', () => {
832832
expect( Array.isArray( this.state.data ) ).toBe( true );
833833
expect( this.state.data.length ).toBe( 10 );
834834
cb();
835-
}.bind( this ) );
835+
} );
836836
}
837837
}
838838
( new Ctor() ).request( done );

0 commit comments

Comments
 (0)