Skip to content

Commit bd42679

Browse files
committedJan 26, 2017
Add support custom element when use string render.
1 parent 3b369d5 commit bd42679

File tree

4 files changed

+37
-7
lines changed

4 files changed

+37
-7
lines changed
 

‎lib/index.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ exports.string = function (input, options) {
4747
}};
4848

4949
(new Function('module', 'exports', compiled))(module, module.exports); // jshint ignore: line
50-
return new options.Template(module.exports);
50+
var templateRender = new options.Template(module.exports);
51+
templateRender.collection.elements = options.elements || {};
52+
return templateRender;
5153
};
5254

5355
/**
@@ -154,4 +156,3 @@ function findAllFiles (dirname, extname) {
154156
}
155157
}, []);
156158
}
157-

‎test/expected/custom-string.html

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<div>here <br /> my friend</div>

‎test/input/custom-string.html

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<div><raw-html content="here <br /> my friend"/></div>

‎test/test.js

+32-5
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,9 @@ var Promise = require('bluebird'),
55
expect = require('expect.js'),
66
should = require('should');
77

8-
9-
10-
118
describe("Integration Tests", function () {
129
var collection;
10+
1311
before(function () {
1412
collection = LIB.dir(__dirname + '/input', {
1513
elements: {
@@ -20,6 +18,7 @@ describe("Integration Tests", function () {
2018
}
2119
});
2220
});
21+
2322
run("nothing");
2423
run("simple");
2524
run("page");
@@ -50,7 +49,6 @@ describe("Integration Tests", function () {
5049
run("custom-element");
5150
run("cache-references");
5251

53-
5452
function run (name) {
5553
it("should process " + name + ".html", function () {
5654
return Promise.all([
@@ -73,8 +71,37 @@ describe("Integration Tests", function () {
7371
template.reverse = function (input) {
7472
return input.split('').reverse().join('');
7573
};
74+
7675
template.render(fixtures, content).should.equal(expected);
7776
});
7877
});
7978
}
80-
});
79+
80+
it("should process custom-string.html", function () {
81+
return Promise.all([
82+
fs.readFileAsync(__dirname + '/input/custom-string.html', 'utf8'),
83+
fs.readFileAsync(__dirname + '/expected/custom-string.html', 'utf8')
84+
]).then(function (html) {
85+
const input = html[0]
86+
const expected = html[1]
87+
88+
var template = LIB.string(input, {
89+
elements: {
90+
'raw-html': function (params) {
91+
return params.content
92+
}
93+
}
94+
})
95+
96+
template.toCase = function (direction, input) {
97+
return input['to' + direction.charAt(0).toUpperCase() + direction.slice(1) + 'Case']();
98+
};
99+
100+
template.reverse = function (input) {
101+
return input.split('').reverse().join('');
102+
};
103+
104+
template.render({}).should.equal(expected);
105+
});
106+
});
107+
});

0 commit comments

Comments
 (0)