Skip to content

Commit 628bd4a

Browse files
committed
Merge pull request #53 from postcss/sass-interpolation
Stop interpreting Sass interpolation as id; closes #52
2 parents 2a017b2 + 08ab20f commit 628bd4a

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Head
2+
3+
* Fixes misinterpretation of Sass interpolation (e.g. `#{foo}`) as an id selector.
4+
15
# 2.0.0
26

37
This release contains the following breaking changes:

src/__tests__/id.js

+12
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,15 @@ test('extraneous non-combinating whitespace', ' #h1 , #h2 ', (t, tree) =>
3939
t.same(tree.nodes[1].nodes[0].spaces.before, ' ');
4040
t.same(tree.nodes[1].nodes[0].spaces.after, ' ');
4141
});
42+
43+
test('Sass interpolation within a class', '.#{foo}', (t, tree) => {
44+
t.same(tree.nodes[0].nodes.length, 1);
45+
t.same(tree.nodes[0].nodes[0].type, 'class');
46+
t.same(tree.nodes[0].nodes[0].value, '#{foo}');
47+
});
48+
49+
test('Sass interpolation within an id', '#foo#{bar}', (t, tree) => {
50+
t.same(tree.nodes[0].nodes.length, 1);
51+
t.same(tree.nodes[0].nodes[0].type, 'id');
52+
t.same(tree.nodes[0].nodes[0].value, 'foo#{bar}');
53+
});

src/parser.js

+8-3
Original file line numberDiff line numberDiff line change
@@ -157,11 +157,11 @@ export default class Parser {
157157
error (message) {
158158
throw new this.input.error(message); // eslint-disable-line new-cap
159159
}
160-
160+
161161
missingParenthesis () {
162162
return this.error('Expected opening parenthesis.');
163163
}
164-
164+
165165
missingSquareBracket () {
166166
return this.error('Expected opening square bracket.');
167167
}
@@ -176,7 +176,7 @@ export default class Parser {
176176
return this.universal(before);
177177
}
178178
}
179-
179+
180180
nesting () {
181181
this.newNode(new Nesting({
182182
value: this.currToken[1],
@@ -355,6 +355,11 @@ export default class Parser {
355355
}
356356
let hasClass = indexesOf(word, '.');
357357
let hasId = indexesOf(word, '#');
358+
// Eliminate Sass interpolations from the list of id indexes
359+
let interpolations = indexesOf(word, '#{');
360+
if (interpolations.length) {
361+
hasId = hasId.filter(hashIndex => !~interpolations.indexOf(hashIndex));
362+
}
358363
let indices = sortAsc(uniq(flatten([[0], hasClass, hasId])));
359364
indices.forEach((ind, i) => {
360365
let index = indices[i + 1] || word.length;

0 commit comments

Comments
 (0)