Skip to content

Commit

Permalink
Fix/icss hashing (#52)
Browse files Browse the repository at this point in the history
* fix: icss hashing

* bump version

* remove console log

* remove other console logs
  • Loading branch information
axyz committed Apr 16, 2021
1 parent b268cf7 commit dcd051d
Show file tree
Hide file tree
Showing 29 changed files with 205 additions and 50 deletions.
37 changes: 33 additions & 4 deletions integration-test/packages/atoms/all/atom.css.snap
Expand Up @@ -22,27 +22,56 @@
display: flex;
border: 1px solid red;
}
/* custom static css (e.g. normalize) can be added here */._1RrCqF {
._9M8f-j {
color: red;
}.o3-BnE {
color: blue;
width: 100px;
display: flex;
border: 1px solid red;
}/* custom static css (e.g. normalize) can be added here */._1RrCqF {
color: #1a1a1a
}.pQ96hs:hover {
color: #fafafa
}.dgII7d {
font-weight: bold
}

.n4oS1I {
.hZEeRw {
height: 100%;
}

.i6EUck {
.Gpf-P8 {

text-decoration: underline;
}

._8F86eH {
._3XV0Ef {

font-size: 4em;
}
._9M8f-j {
color: red;
}

.sMmOaU {
color: blue
}

.sMmOaU .R2GDg- {
color: green;
}
._9M8f-j {
color: red;
}

.sMmOaU {
color: blue
}

.sMmOaU .R2GDg- {
color: green;
}
/* custom static css (e.g. normalize) can be added here */._1RrCqF {
color: #1a1a1a
}.DJ9tNH:hover {
Expand Down
2 changes: 1 addition & 1 deletion integration-test/packages/atoms/all/atom.min.css.snap

Large diffs are not rendered by default.

@@ -0,0 +1,3 @@
**/*.tsx
**/*.ts
!**/*.d.ts
15 changes: 15 additions & 0 deletions integration-test/packages/atoms/duplicate-classes-a/index.css
@@ -0,0 +1,15 @@
:import("@my-org/simple-class/module.css") {
single-declaration: singleDeclaration;
}

.simpleDeclaration {
composes: single-declaration;
}

.withSharedVar {
color: blue;

.nested {
color: green;
}
}
@@ -0,0 +1,4 @@
declare const simpleDeclaration: string;
declare const withSharedVar: string;
declare const nested: string
export { simpleDeclaration, withSharedVar, nested }
@@ -0,0 +1,3 @@
export var simpleDeclaration = "_9M8f-j";
export var withSharedVar = "sMmOaU";
export var nested = "R2GDg-"
@@ -0,0 +1,5 @@
module.exports = {
simpleDeclaration: "_9M8f-j",
withSharedVar: "sMmOaU",
nested: "R2GDg-"
};
@@ -0,0 +1 @@
{"simpleDeclaration":"_9M8f-j","withSharedVar":"sMmOaU","nested":"R2GDg-"}
@@ -0,0 +1,15 @@
:import("@my-org/simple-class/module.css") {
single-declaration: singleDeclaration;
}

.simpleDeclaration {
composes: single-declaration;
}

.withSharedVar {
color: blue
}

.withSharedVar .nested {
color: green;
}
10 changes: 10 additions & 0 deletions integration-test/packages/atoms/duplicate-classes-a/package.json
@@ -0,0 +1,10 @@
{
"name": "@my-org/duplicate-classes-a",
"version": "0.0.1",
"main": "index.js",
"module": "index.esm.js",
"sideEffects": false,
"dependencies": {
"@my-org/simple-class": "0.0.1"
}
}
@@ -0,0 +1,11 @@
._9M8f-j {
color: red;
}

.sMmOaU {
color: blue
}

.sMmOaU .R2GDg- {
color: green;
}
@@ -0,0 +1,3 @@
**/*.tsx
**/*.ts
!**/*.d.ts
15 changes: 15 additions & 0 deletions integration-test/packages/atoms/duplicate-classes-b/index.css
@@ -0,0 +1,15 @@
:import("@my-org/simple-class/module.css") {
single-declaration: singleDeclaration;
}

.simpleDeclaration {
composes: single-declaration;
}

.withSharedVar {
color: blue;

.nested {
color: green;
}
}
@@ -0,0 +1,4 @@
declare const simpleDeclaration: string;
declare const withSharedVar: string;
declare const nested: string
export { simpleDeclaration, withSharedVar, nested }
@@ -0,0 +1,3 @@
export var simpleDeclaration = "_9M8f-j";
export var withSharedVar = "sMmOaU";
export var nested = "R2GDg-"
@@ -0,0 +1,5 @@
module.exports = {
simpleDeclaration: "_9M8f-j",
withSharedVar: "sMmOaU",
nested: "R2GDg-"
};
@@ -0,0 +1 @@
{"simpleDeclaration":"_9M8f-j","withSharedVar":"sMmOaU","nested":"R2GDg-"}
@@ -0,0 +1,15 @@
:import("@my-org/simple-class/module.css") {
single-declaration: singleDeclaration;
}

.simpleDeclaration {
composes: single-declaration;
}

.withSharedVar {
color: blue
}

.withSharedVar .nested {
color: green;
}
10 changes: 10 additions & 0 deletions integration-test/packages/atoms/duplicate-classes-b/package.json
@@ -0,0 +1,10 @@
{
"name": "@my-org/duplicate-classes-b",
"version": "0.0.1",
"main": "index.js",
"module": "index.esm.js",
"sideEffects": false,
"dependencies": {
"@my-org/simple-class": "0.0.1"
}
}
@@ -0,0 +1,11 @@
._9M8f-j {
color: red;
}

.sMmOaU {
color: blue
}

.sMmOaU .R2GDg- {
color: green;
}
4 changes: 2 additions & 2 deletions integration-test/packages/atoms/icss-import/index.css
@@ -1,6 +1,6 @@
:import("@my-org/simple-class/module.css") {
single: single-declaration;
multiple: multiple-declarations;
single: singleDeclaration;
multiple: multipleDeclarations;
}

:root {
Expand Down
10 changes: 5 additions & 5 deletions integration-test/packages/atoms/icss-import/index.esm.js.snap
@@ -1,5 +1,5 @@
export var localClass = "n4oS1I";
export var localComposes = "i6EUck n4oS1I dgII7d";
export var simpleComposes = "";
export var complexComposes = "i6EUck n4oS1I dgII7d _1RrCqF pQ96hs";
export var extend = "_8F86eH"
export var localClass = "hZEeRw";
export var localComposes = "Gpf-P8 hZEeRw dgII7d";
export var simpleComposes = "_9M8f-j";
export var complexComposes = "_9M8f-j o3-BnE Gpf-P8 hZEeRw dgII7d _1RrCqF pQ96hs";
export var extend = "_3XV0Ef o3-BnE"
10 changes: 5 additions & 5 deletions integration-test/packages/atoms/icss-import/index.js.snap
@@ -1,7 +1,7 @@
module.exports = {
localClass: "n4oS1I",
localComposes: "i6EUck n4oS1I dgII7d",
simpleComposes: "",
complexComposes: "i6EUck n4oS1I dgII7d _1RrCqF pQ96hs",
extend: "_8F86eH"
localClass: "hZEeRw",
localComposes: "Gpf-P8 hZEeRw dgII7d",
simpleComposes: "_9M8f-j",
complexComposes: "_9M8f-j o3-BnE Gpf-P8 hZEeRw dgII7d _1RrCqF pQ96hs",
extend: "_3XV0Ef o3-BnE"
};
@@ -1 +1 @@
{"localClass":"n4oS1I","localComposes":"i6EUck n4oS1I dgII7d","simpleComposes":"","complexComposes":"i6EUck n4oS1I dgII7d _1RrCqF pQ96hs","extend":"_8F86eH"}
{"localClass":"hZEeRw","localComposes":"Gpf-P8 hZEeRw dgII7d","simpleComposes":"_9M8f-j","complexComposes":"_9M8f-j o3-BnE Gpf-P8 hZEeRw dgII7d _1RrCqF pQ96hs","extend":"_3XV0Ef o3-BnE"}
4 changes: 2 additions & 2 deletions integration-test/packages/atoms/icss-import/module.css.snap
@@ -1,6 +1,6 @@
:import("@my-org/simple-class/module.css") {
single: single-declaration;
multiple: multiple-declarations;
single: singleDeclaration;
multiple: multipleDeclarations;
}

:root {
Expand Down
15 changes: 11 additions & 4 deletions integration-test/packages/atoms/icss-import/result.css.snap
@@ -1,4 +1,11 @@
/* custom static css (e.g. normalize) can be added here */._1RrCqF {
._9M8f-j {
color: red;
}.o3-BnE {
color: blue;
width: 100px;
display: flex;
border: 1px solid red;
}/* custom static css (e.g. normalize) can be added here */._1RrCqF {
color: #1a1a1a
}.pQ96hs:hover {
color: #fafafa
Expand All @@ -15,16 +22,16 @@
--large: 4em;
}

.n4oS1I {
.hZEeRw {
height: 100%;
}

.i6EUck {
.Gpf-P8 {

text-decoration: underline;
}

._8F86eH {
._3XV0Ef {

font-size: var(--large);
}
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "@utilitycss/atomic",
"version": "0.16.2",
"version": "0.17.0",
"author": "Andrea Moretti (@axyz) <axyzxp@gmail.com>",
"description": "Atomic CSS composition for yarn workspaces",
"repository": "utilitycss/atomic",
Expand Down
33 changes: 9 additions & 24 deletions src/postcss/atomic-css-modules/generateScopedName.ts
Expand Up @@ -11,7 +11,6 @@ const generateScopedName: generateScopedName = ({
trackClasses,
importedElectronRE,
importedModuleRE,
ICSSImportRE,
root,
server,
}) =>
Expand All @@ -22,13 +21,14 @@ const generateScopedName: generateScopedName = ({
const definitionsMap = new Map();
const isElectron = importedElectronRE.test(filename);
root.walkRules(new RegExp(`(\.${name}|:import)`), (rule): any => {
// ensure that a rule that appear multiple times has the same hash
// e.g. inside media queries or when ICSS imported in a different atom.
// in the context of ICSS import and composes the filename will point
// to the imported module as relative imports are forbidden in atoms
// we can safely check for @scope/something patterns to get the correct
// package name
if (isElectron) {
// ensure that a rule that appear multiple times has the same hash
// e.g. inside media queries or when ICSS imported in a different atom.
// in the context of ICSS import and composes the filename will point
// to the imported module as relative imports are forbidden in atoms
// we can safely check for @scope/something patterns to get the correct
// package name

// check for @scope/electrons pattern in the filename
pkgName = filename.match(importedElectronRE)[1];
const key = `${pkgName};${name}`;
Expand All @@ -43,10 +43,9 @@ const generateScopedName: generateScopedName = ({
const key = `${pkg};${name}`;
trackClasses.set(key, hash);
}

// short circuit: electron definition for a given name is always
// highest priority and unique source of truth.
return DEVELOPMENT ? `${name.toUpperCase()}_${hash}` : hash;
return;
} else if (importedModuleRE.test(filename)) {
// check for @scope/xxx pattern in the filename
const importedPackage = filename.match(importedModuleRE)[1];
Expand All @@ -58,20 +57,6 @@ const generateScopedName: generateScopedName = ({
} else {
pkgName = importedPackage;
}
} else if (/:import/.test(rule.selector)) {
// check for @scope/xxx pattern in the ICSS selector
const importedPackage = rule.selector.match(ICSSImportRE)[1];
const pkg = <{ [key: string]: any }>(
server.readFileSync(`pkg:${importedPackage}`)
);
if (pkg.proxy) {
// check if it is a proxy atom (passthrough for utility electrons)
// in that case we can use the same hash of the respective electron
// and avoid a duplicate for each defined rule
pkgName = pkg.proxy;
} else {
pkgName = importedPackage;
}
} else {
// base case: use the package name from package.json
const pkg = <{ [key: string]: any }>(
Expand All @@ -86,8 +71,8 @@ const generateScopedName: generateScopedName = ({
}

const key = `${pkgName};${name}`;
// if the hash was generated on a different source file we should use it

// if the hash was generated on a different source file we should use it
if (trackClasses.has(key)) {
hash = trackClasses.get(key);
} else {
Expand Down
2 changes: 1 addition & 1 deletion templates/package.json.hbs
Expand Up @@ -7,7 +7,7 @@
"start": "atomic start"
},
"devDependencies": {
"@utilitycss/atomic": "^0.16.0",
"@utilitycss/atomic": "^0.17.0",
"lerna": "3.13.3"
},
"workspaces": {
Expand Down

0 comments on commit dcd051d

Please sign in to comment.