Skip to content

Commit c4bf8ec

Browse files
author
Alexandre Stanislawski
committed
fix(prepareTemplates): uses templates with keys that are not in defaults
1 parent 5170f53 commit c4bf8ec

File tree

2 files changed

+36
-15
lines changed

2 files changed

+36
-15
lines changed

src/lib/__tests__/utils-test.js

+23-5
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,9 @@ describe('prepareTemplateProps', function() {
8989
bar: 'tata'
9090
};
9191
let templatesConfig = [];
92-
let transformData = function() {};
92+
let transformData = function() {}; // eslint-disable-line func-style
9393

94-
it(
95-
'should return the default templates and set useCustomCompileOptions to false when using the defaults',
94+
it('should return the default templates and set useCustomCompileOptions to false when using the defaults',
9695
function() {
9796
let defaultsPrepared = utils.prepareTemplateProps({
9897
transformData,
@@ -108,8 +107,7 @@ describe('prepareTemplateProps', function() {
108107
}
109108
);
110109

111-
it(
112-
'should return the missing default templates and set useCustomCompileOptions to true when for the customs',
110+
it('should return the missing default templates and set useCustomCompileOptions for the custom template',
113111
function() {
114112
let templates = {foo: 'baz'};
115113
let defaultsPrepared = utils.prepareTemplateProps({
@@ -125,6 +123,26 @@ describe('prepareTemplateProps', function() {
125123
expect(defaultsPrepared.templatesConfig).toBe(templatesConfig);
126124
}
127125
);
126+
127+
it('should add also the templates that are not in the defaults', () => {
128+
const templates = {
129+
foo: 'something else',
130+
baz: 'Of course!'
131+
};
132+
133+
const preparedProps = utils.prepareTemplateProps({
134+
transformData,
135+
defaultTemplates,
136+
templates,
137+
templatesConfig
138+
});
139+
140+
141+
expect(preparedProps.transformData).toBe(transformData);
142+
expect(preparedProps.useCustomCompileOptions).toEqual({foo: true, bar: false, baz: true});
143+
expect(preparedProps.templates).toEqual({...defaultTemplates, ...templates});
144+
expect(preparedProps.templatesConfig).toBe(templatesConfig);
145+
});
128146
});
129147

130148
describe('getRefinements', function() {

src/lib/utils.js

+13-10
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ import forEach from 'lodash/collection/forEach';
33
import find from 'lodash/collection/find';
44
import get from 'lodash/object/get';
55
import isEmpty from 'lodash/lang/isEmpty';
6+
import keys from 'lodash/object/keys';
7+
import uniq from 'lodash/array/uniq';
68

79
let utils = {
810
getContainerNode,
@@ -112,16 +114,17 @@ function prepareTemplateProps({
112114
};
113115
}
114116

115-
function prepareTemplates(defaultTemplates, templates) {
116-
return reduce(defaultTemplates, (config, defaultTemplate, key) => {
117-
let isCustomTemplate = templates && templates[key] !== undefined && (templates[key] !== defaultTemplate);
118-
if (isCustomTemplate) {
119-
config.templates[key] = templates[key];
120-
config.useCustomCompileOptions[key] = true;
121-
} else {
122-
config.templates[key] = defaultTemplate;
123-
config.useCustomCompileOptions[key] = false;
124-
}
117+
function prepareTemplates(defaultTemplates = [], templates = []) {
118+
const allKeys = uniq([...(keys(defaultTemplates)), ...(keys(templates))]);
119+
120+
return reduce(allKeys, (config, key) => {
121+
const defaultTemplate = defaultTemplates[key];
122+
const customTemplate = templates[key];
123+
const isCustomTemplate = customTemplate !== undefined && (customTemplate !== defaultTemplate);
124+
125+
config.templates[key] = isCustomTemplate ? customTemplate : defaultTemplate;
126+
config.useCustomCompileOptions[key] = isCustomTemplate;
127+
125128
return config;
126129
}, {templates: {}, useCustomCompileOptions: {}});
127130
}

0 commit comments

Comments
 (0)