Skip to content

Commit d89bf85

Browse files
committed
refactor: migrate to es-next syntax
1 parent 0c10d9d commit d89bf85

File tree

2 files changed

+91
-96
lines changed

2 files changed

+91
-96
lines changed

index.js

+38-40
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
'use strict';
2-
3-
var { Parser } = require('htmlparser2');
1+
const { Parser } = require('htmlparser2');
42

53
/**
64
* @see https://github.com/fb55/htmlparser2/wiki/Parser-options
75
*/
8-
var defaultOptions = {lowerCaseTags: false, lowerCaseAttributeNames: false};
6+
const defaultOptions = {lowerCaseTags: false, lowerCaseAttributeNames: false};
97

10-
var defaultDirectives = [{name: '!doctype', start: '<', end: '>'}];
8+
const defaultDirectives = [{name: '!doctype', start: '<', end: '>'}];
119

1210
/**
1311
* Parse html to PostHTMLTree
@@ -16,34 +14,34 @@ var defaultDirectives = [{name: '!doctype', start: '<', end: '>'}];
1614
* @return {PostHTMLTree}
1715
*/
1816
function postHTMLParser(html, options) {
19-
var bufArray = [],
20-
results = [];
17+
const bufArray = [];
18+
const results = [];
2119

2220
bufArray.last = function() {
2321
return this[this.length - 1];
2422
};
2523

26-
function isDirective(directive, tag) {
27-
if (directive.name instanceof RegExp) {
28-
var regex = RegExp(directive.name.source, 'i');
24+
function isDirective({name}, tag) {
25+
if (name instanceof RegExp) {
26+
const regex = RegExp(name.source, 'i');
2927

3028
return regex.test(tag);
3129
}
3230

33-
if (tag !== directive.name) {
31+
if (tag !== name) {
3432
return false;
3533
}
3634

3735
return true;
3836
}
3937

4038
function parserDirective(name, data) {
41-
var directives = [].concat(defaultDirectives, options.directives || []);
42-
var last = bufArray.last();
39+
const directives = [].concat(defaultDirectives, options.directives || []);
40+
const last = bufArray.last();
4341

44-
for (var i = 0; i < directives.length; i++) {
45-
var directive = directives[i];
46-
var directiveText = directive.start + data + directive.end;
42+
for (let i = 0; i < directives.length; i++) {
43+
const directive = directives[i];
44+
const directiveText = directive.start + data + directive.end;
4745

4846
name = name.toLowerCase();
4947
if (isDirective(directive, name)) {
@@ -59,21 +57,21 @@ function postHTMLParser(html, options) {
5957
}
6058

6159
function normalizeArributes(attrs) {
62-
var result = {};
63-
Object.keys(attrs).forEach(function(key) {
64-
var obj = {};
65-
obj[key] = attrs[key].replace(/&quot;/g, '"');
60+
const result = {};
61+
Object.keys(attrs).forEach(key => {
62+
const obj = {};
63+
obj[key] = attrs[key].replace(/&quot;/g, '"');
6664
Object.assign(result, obj);
6765
});
6866

6967
return result;
7068
}
7169

72-
var parser = new Parser({
70+
const parser = new Parser({
7371
onprocessinginstruction: parserDirective,
74-
oncomment: function(data) {
75-
var comment = '<!--' + data + '-->',
76-
last = bufArray.last();
72+
oncomment(data) {
73+
const comment = `<!--${data}-->`;
74+
const last = bufArray.last();
7775

7876
if (!last) {
7977
results.push(comment);
@@ -83,32 +81,32 @@ function postHTMLParser(html, options) {
8381
last.content || (last.content = []);
8482
last.content.push(comment);
8583
},
86-
onopentag: function(tag, attrs) {
87-
var buf = { tag: tag };
84+
onopentag(tag, attrs) {
85+
const buf = { tag };
8886

8987
if (Object.keys(attrs).length) {
9088
buf.attrs = normalizeArributes(attrs);
9189
}
9290

9391
bufArray.push(buf);
9492
},
95-
onclosetag: function() {
96-
var buf = bufArray.pop();
93+
onclosetag() {
94+
const buf = bufArray.pop();
9795

9896
if (!bufArray.length) {
9997
results.push(buf);
10098
return;
10199
}
102100

103-
var last = bufArray.last();
101+
const last = bufArray.last();
104102
if (!Array.isArray(last.content)) {
105103
last.content = [];
106104
}
107105

108106
last.content.push(buf);
109107
},
110-
ontext: function(text) {
111-
var last = bufArray.last();
108+
ontext(text) {
109+
const last = bufArray.last();
112110
if (!last) {
113111
results.push(text);
114112
return;
@@ -125,25 +123,25 @@ function postHTMLParser(html, options) {
125123
return results;
126124
}
127125

128-
function parserWrapper() {
129-
var option;
126+
function parserWrapper(...args) {
127+
let option;
130128

131129
function parser(html) {
132-
var opt = Object.assign({}, defaultOptions, option);
130+
const opt = Object.assign({}, defaultOptions, option);
133131
return postHTMLParser(html, opt);
134132
}
135133

136134
if (
137-
arguments.length === 1 &&
138-
Boolean(arguments[0]) &&
139-
arguments[0].constructor.name === 'Object'
135+
args.length === 1 &&
136+
Boolean(args[0]) &&
137+
args[0].constructor.name === 'Object'
140138
) {
141-
option = arguments[0];
139+
option = args[0];
142140
return parser;
143141
}
144142

145-
option = arguments[1];
146-
return parser(arguments[0]);
143+
option = args[1];
144+
return parser(args[0]);
147145
}
148146

149147
module.exports = parserWrapper;

test/test.js

+53-56
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,25 @@
1-
var parser = require('..');
2-
var parserWithMockedDeps = require('rewire')('..');
3-
var describe = require('mocha').describe;
4-
var it = require('mocha').it;
5-
var beforeEach = require('mocha').beforeEach;
6-
var chai = require('chai');
7-
var sinon = require('sinon');
8-
var expect = chai.expect;
1+
const parser = require('..');
2+
const parserWithMockedDeps = require('rewire')('..');
3+
const describe = require('mocha').describe;
4+
const it = require('mocha').it;
5+
const beforeEach = require('mocha').beforeEach;
6+
const chai = require('chai');
7+
const sinon = require('sinon');
8+
const expect = chai.expect;
99
chai.use(require('sinon-chai'));
1010

1111
describe('PostHTML-Parser test', function() {
1212
describe('Call signatures', function() {
13-
var customOptions = {lowerCaseTags: false, lowerCaseAttributeNames: false};
14-
var MockedHtmlParser2;
15-
var parserSpy;
13+
const customOptions = {lowerCaseTags: false, lowerCaseAttributeNames: false};
14+
let MockedHtmlParser2;
15+
let parserSpy;
1616

1717
beforeEach(function() {
18-
// jscs:disable requireFunctionDeclarations
1918
MockedHtmlParser2 = function() {};
2019
MockedHtmlParser2.prototype = {
21-
write: function() {},
22-
end: function() {}
20+
write() {},
21+
end() {}
2322
};
24-
// jscs:enable requireFunctionDeclarations
2523

2624
// Create spy on mocked htmlparser2 to collect call stats
2725
parserSpy = sinon.spy(MockedHtmlParser2);
@@ -43,7 +41,7 @@ describe('PostHTML-Parser test', function() {
4341
});
4442

4543
it('should use custom params when called as factory function', function() {
46-
var factory = parserWithMockedDeps(customOptions);
44+
const factory = parserWithMockedDeps(customOptions);
4745
expect(factory).to.be.a('function');
4846
expect(factory('')).to.be.an('array');
4947
expect(parserSpy.firstCall.args[1]).to.eql(customOptions);
@@ -64,7 +62,23 @@ describe('PostHTML-Parser test', function() {
6462
});
6563

6664
it('should be parse tag with escape object in attribute', function() {
67-
var htmlString = '<button data-bem="{&quot;button&quot;:{&quot;checkedView&quot;:&quot;extra&quot;}}"' +
65+
const htmlString = '<button data-bem="{&quot;button&quot;:{&quot;checkedView&quot;:&quot;extra&quot;}}"' +
66+
' type="submit"></button>';
67+
const tree = [
68+
{
69+
tag: 'button',
70+
attrs: {
71+
type: 'submit',
72+
'data-bem': '{"button":{"checkedView":"extra"}}'
73+
}
74+
}
75+
];
76+
77+
expect(parser(htmlString)).to.eql(tree);
78+
});
79+
80+
it.skip('should be parse tag with object in attribute data witchout escape', function() {
81+
var htmlString = '<button data-bem="{"button":{"checkedView":"extra"}}"' +
6882
' type="submit"></button>';
6983
// console.log(htmlString);
7084
var tree = [
@@ -80,40 +94,23 @@ describe('PostHTML-Parser test', function() {
8094
expect(parser(htmlString)).to.eql(tree);
8195
});
8296

83-
// it('should be parse tag with object in attribute data witchout escape', function() {
84-
// var htmlString = '<button data-bem="{"button":{"checkedView":"extra"}}"' +
85-
// ' type="submit"></button>';
86-
// // console.log(htmlString);
87-
// var tree = [
88-
// {
89-
// tag: 'button',
90-
// attrs: {
91-
// type: 'submit',
92-
// 'data-bem': '{"button":{"checkedView":"extra"}}'
93-
// }
94-
// }
95-
// ];
96-
97-
// expect(parser(htmlString)).to.eql(tree);
98-
// });
99-
100-
// it('should be parse tag with object in attribute data escape', function() {
101-
// var json = JSON.stringify({button: {checkedView:'extra'}});
102-
// var htmlString = '<button data-bem="' + json + '"' +
103-
// ' type="submit"></button>';
104-
// // console.log(htmlString);
105-
// var tree = [
106-
// {
107-
// tag: 'button',
108-
// attrs: {
109-
// type: 'submit',
110-
// 'data-bem': '{"button":{"checkedView":"extra"}}'
111-
// }
112-
// }
113-
// ];
114-
115-
// expect(parser(htmlString)).to.eql(tree);
116-
// });
97+
it.skip('should be parse tag with object in attribute data escape', function() {
98+
var json = JSON.stringify({button: {checkedView:'extra'}});
99+
var htmlString = '<button data-bem="' + json + '"' +
100+
' type="submit"></button>';
101+
// console.log(htmlString);
102+
var tree = [
103+
{
104+
tag: 'button',
105+
attrs: {
106+
type: 'submit',
107+
'data-bem': '{"button":{"checkedView":"extra"}}'
108+
}
109+
}
110+
];
111+
112+
expect(parser(htmlString)).to.eql(tree);
113+
});
117114

118115
it('should be parse comment in content', function() {
119116
expect(parser('<div><!--comment--></div>')).to.eql([{tag: 'div', content: ['<!--comment-->']}]);
@@ -124,7 +121,7 @@ describe('PostHTML-Parser test', function() {
124121
});
125122

126123
it('should be parse directive', function() {
127-
var options = {
124+
const options = {
128125
directives: [
129126
{ name: '?php', start: '<', end: '>' }
130127
]
@@ -134,7 +131,7 @@ describe('PostHTML-Parser test', function() {
134131
});
135132

136133
it('should be parse regular expression directive', function() {
137-
var options = {
134+
const options = {
138135
directives: [
139136
{ name: /\?(php|=).*/, start: '<', end: '>' }
140137
]
@@ -145,15 +142,15 @@ describe('PostHTML-Parser test', function() {
145142
});
146143

147144
it('should be parse directives and tag', function() {
148-
var options = {
145+
const options = {
149146
directives: [
150147
{ name: '!doctype', start: '<', end: '>' },
151148
{ name: '?php', start: '<', end: '>' }
152149
]
153150
};
154151

155-
var html = '<!doctype html><header><?php echo \"Hello word\"; ?></header><body>{{%njk test %}}</body>';
156-
var tree = [
152+
const html = '<!doctype html><header><?php echo \"Hello word\"; ?></header><body>{{%njk test %}}</body>';
153+
const tree = [
157154
'<!doctype html>',
158155
{
159156
content: ['<?php echo \"Hello word\"; ?>'],

0 commit comments

Comments
 (0)