Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add bundled support for styles in object literals #3506

Merged
merged 1 commit into from
Aug 13, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/getPostcssResult.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const syntaxes /*: {
stringify: postcss.stringify
}
};
["less", "sass", "scss", "markdown", "html", "styled"].forEach(mod => {
["less", "sass", "scss", "markdown", "html", "styled", "jsx"].forEach(mod => {
syntaxes[mod] = importLazy("postcss-" + mod);
});

Expand Down
32 changes: 32 additions & 0 deletions lib/rules/function-whitespace-after/__tests__/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ testRule(rule, {
{
code: "a { color: color(rgb(0,0,0)\r\nlightness(50%)) };"
},
{
code: "@import url(example.css) screen;"
},
{
code: "$list: (value, value2);$thingTwo: 0px",
description: "Sass list ignored"
Expand Down Expand Up @@ -91,6 +94,12 @@ testRule(rule, {
message: messages.expected,
line: 1,
column: 28
},
{
code: "@import url(example.css)screen;",
message: messages.expected,
line: 1,
column: 25
}
]
});
Expand Down Expand Up @@ -225,3 +234,26 @@ testRule(rule, {
}
]
});

testRule(rule, {
ruleName,
config: ["always"],
skipBasicChecks: true,
syntax: "jsx",

accept: [
{
code: "export default <img style={{ transform: 'translate(1, 1)' }} />;"
}
],

reject: [
{
code:
"export default <img style={{ ['transform']: 'translate(1, 1)scale(3)' }} />;",
message: messages.expected,
line: 1,
column: 60
}
]
});
34 changes: 23 additions & 11 deletions lib/rules/function-whitespace-after/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
"use strict";

const _ = require("lodash");
const atRuleParamIndex = require("../../utils/atRuleParamIndex");
const declarationValueIndex = require("../../utils/declarationValueIndex");
const isWhitespace = require("../../utils/isWhitespace");
const report = require("../../utils/report");
const ruleMessages = require("../../utils/ruleMessages");
Expand Down Expand Up @@ -32,23 +35,21 @@ const rule = function(expectation) {
return;
}

root.walkDecls(decl => {
const declString = decl.toString();

function check(node, value, getIndex) {
styleSearch(
{
source: declString,
source: value,
target: ")",
functionArguments: "only"
},
match => {
checkClosingParen(declString, match.startIndex, decl);
checkClosingParen(value, match.startIndex + 1, node, getIndex);
}
);
});
}

function checkClosingParen(source, index, node) {
const nextChar = source[index + 1];
function checkClosingParen(source, index, node, getIndex) {
const nextChar = source[index];
if (expectation === "always") {
// Allow for the next character to be a single empty space,
// another closing parenthesis, a comma, or the end of the value
Expand All @@ -58,7 +59,7 @@ const rule = function(expectation) {
if (nextChar === "\n") {
return;
}
if (source.substr(index + 1, 2) === "\r\n") {
if (source.substr(index, 2) === "\r\n") {
return;
}
if (ACCEPTABLE_AFTER_CLOSING_PAREN.has(nextChar)) {
Expand All @@ -67,7 +68,7 @@ const rule = function(expectation) {
report({
message: messages.expected,
node,
index: index + 1,
index: getIndex(node) + index,
result,
ruleName
});
Expand All @@ -76,13 +77,24 @@ const rule = function(expectation) {
report({
message: messages.rejected,
node,
index: index + 1,
index: getIndex(node) + index,
result,
ruleName
});
}
}
}

root.walkAtRules(/^import$/i, atRule =>
check(atRule, atRule.params, atRuleParamIndex)
);
root.walkDecls(decl =>
check(
decl,
_.get(decl, "raws.value.raw", decl.value),
declarationValueIndex
)
);
};
};

Expand Down
18 changes: 18 additions & 0 deletions lib/rules/no-missing-end-of-source-newline/__tests__/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,24 @@ a {
]
});

testRule(rule, {
ruleName,
config: [true],
skipBasicChecks: true,
syntax: "jsx",

accept: [
{
code: `export default (
<button
style={{ color: "#fff" }}
>
</button>
);`
}
]
});

testRule(rule, {
ruleName,
config: [true],
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-missing-end-of-source-newline/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const rule = function(primary, _, context) {
eachRoot(root, checkRoot);

function checkRoot(root) {
if (root.source.inline) {
if (root.source.inline || root.source.lang === "object-literal") {
return;
}
const rootString = root.source.input.css;
Expand Down
12 changes: 8 additions & 4 deletions lib/utils/declarationValueIndex.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
/* @flow */
"use strict";
const _ = require("lodash");

/**
* Get the index of a declaration's value
*/
module.exports = function(decl /*: Object*/) /*: number*/ {
const beforeColon = decl.toString().indexOf(":");
const afterColon =
decl.raw("between").length - decl.raw("between").indexOf(":");
return beforeColon + afterColon;
return [
_.get(decl, "raws.prop.prefix"),
_.get(decl, "raws.prop.raw", decl.prop),
_.get(decl, "raws.prop.suffix"),
_.get(decl, "raws.between", ":"),
_.get(decl, "raws.value.prefix")
].reduce((count, str) => (str ? count + str.length : count), 0);
};
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,18 +62,19 @@
"normalize-selector": "^0.2.0",
"pify": "^3.0.0",
"postcss": "^7.0.0",
"postcss-html": "^0.31.0",
"postcss-jsx": "^0.32.0",
"postcss-html": "^0.32.0",
"postcss-less": "^2.0.0",
"postcss-markdown": "^0.31.0",
"postcss-markdown": "^0.32.0",
"postcss-media-query-parser": "^0.2.3",
"postcss-reporter": "^5.0.0",
"postcss-resolve-nested-selector": "^0.1.1",
"postcss-safe-parser": "^4.0.0",
"postcss-sass": "^0.3.0",
"postcss-scss": "^2.0.0",
"postcss-selector-parser": "^3.1.0",
"postcss-styled": "^0.31.0",
"postcss-syntax": "^0.31.0",
"postcss-styled": "^0.32.0",
"postcss-syntax": "^0.32.0",
"postcss-value-parser": "^3.3.0",
"resolve-from": "^4.0.0",
"signal-exit": "^3.0.2",
Expand Down