Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
bf07fa48
Commit
bf07fa48
authored
6 years ago
by
Tom Robinson
Browse files
Options
Downloads
Patches
Plain Diff
Resolve and replace CSS variables
parent
d1b35cb1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bin/colopocalypse
+71
-29
71 additions, 29 deletions
bin/colopocalypse
with
71 additions
and
29 deletions
bin/colopocalypse
+
71
−
29
View file @
bf07fa48
...
...
@@ -6,11 +6,20 @@ const path = require("path");
const
Color
=
require
(
"
color
"
);
const
colorDiff
=
require
(
"
color-diff
"
);
const
POSTCSS_CONFIG
=
require
(
"
../postcss.config.js
"
);
const
cssVariables
=
POSTCSS_CONFIG
.
plugins
[
"
postcss-cssnext
"
].
features
.
customProperties
.
variables
;
console
.
log
(
cssVariables
);
// these are a bit liberal regexes but that's probably ok
const
COLOR_REGEX
=
/
(
#
[
a-fA-F0-9
]{3}([
a-fA-F0-9
]{3})?
|
(
rgb|hsl
)
a
?\(\s
*
\d
+
\s
*
(
,
\s
*
\d
+
(\.\d
+
)?
%
?\s
*
){2,3}\))
/g
;
const
COLOR_REGEX_WITH_LINE
=
/
(
#
[
a-fA-F0-9
]{3}([
a-fA-F0-9
]{3})?
|
(
rgb|hsl
)
a
?\(\s
*
\d
+
\s
*
(
,
\s
*
\d
+
(\.\d
+
)?
%
?\s
*
){2,3}\))
.*/g
;
const
FILE_GLOB
=
"
frontend/**/*.{css,js,jsx}
"
;
const
CSS_SIMPLE_VAR_REGEX
=
/^var
\(([^
)
]
+
)\)
$/
;
const
CSS_COLOR_VAR_REGEX
=
/^color
\(
var
\(([^
)
]
+
)\)
shade
\(([^
)
]
+
)\)\)
$/
;
const
CSS_VAR_REGEX
=
/var
\([^
)
]
+
\)
|color
\(
var
\([^
)
]
+
\)
shade
\([^
)
]
+
\)\)
/g
;
const
FILE_GLOB
=
process
.
argv
[
2
]
||
"
frontend/**/*.{css,js,jsx}
"
;
const
FILE_GLOB_IGNORE
=
[
// "**/metabase/lib/colors.js"
];
...
...
@@ -116,38 +125,71 @@ function getBestCandidate(color) {
return
[
bestName
,
bestColor
];
}
function
processFiles
(
files
)
{
const
allMatches
=
[];
const
uniqueMatches
=
new
Set
();
function
replaceSimpleColorValues
(
content
,
isCSS
)
{
return
content
.
replace
(
COLOR_REGEX
,
color
=>
{
const
[
newColorName
,
newColor
]
=
getBestCandidate
(
Color
(
color
));
if
(
color
===
newColor
.
string
())
{
console
.
log
(
color
,
`(unchanged:
${
newColorName
}
)`
);
}
else
{
console
.
log
(
color
,
"
=>
"
,
newColor
.
string
(),
`(
${
newColorName
}
)`
);
}
return
newColor
.
string
();
});
}
for
(
const
file
of
files
)
{
const
content
=
fs
.
readFileSync
(
file
,
"
utf-8
"
);
const
modifiedContent
=
content
.
replace
(
COLOR_REGEX_WITH_LINE
,
line
=>
{
const
names
=
[];
let
modifiedLine
=
line
.
replace
(
COLOR_REGEX
,
color
=>
{
uniqueMatches
.
add
(
color
);
allMatches
.
push
(
color
);
const
[
newColorName
,
newColor
]
=
getBestCandidate
(
Color
(
color
));
if
(
color
===
newColor
.
string
())
{
console
.
log
(
color
,
`(unchanged:
${
newColorName
}
)`
);
}
else
{
console
.
log
(
color
,
"
=>
"
,
newColor
.
string
(),
`(
${
newColorName
}
)`
);
function
resolveCSSVariableColor
(
value
)
{
try
{
if
(
value
)
{
if
(
COLOR_REGEX
.
test
(
value
))
{
return
Color
(
value
);
}
const
colorVarMatch
=
value
.
match
(
CSS_COLOR_VAR_REGEX
);
if
(
colorVarMatch
)
{
const
color
=
resolveCSSVariableColor
(
cssVariables
[
colorVarMatch
[
1
]]);
if
(
color
)
{
const
shade
=
parseFloat
(
colorVarMatch
[
2
])
/
100
;
return
Color
(
color
).
mix
(
Color
(
"
black
"
),
shade
);
}
}
const
varMatch
=
value
.
match
(
CSS_SIMPLE_VAR_REGEX
);
if
(
varMatch
)
{
const
color
=
resolveCSSVariableColor
(
cssVariables
[
varMatch
[
1
]]);
if
(
color
)
{
return
color
;
}
}
}
}
catch
(
e
)
{
console
.
warn
(
e
);
}
return
null
;
}
function
replaceCSSVariables
(
content
,
isCSS
)
{
if
(
!
isCSS
)
{
return
content
;
}
return
content
.
replace
(
CSS_VAR_REGEX
,
variable
=>
{
const
color
=
resolveCSSVariableColor
(
variable
);
if
(
color
)
{
const
[
newColorName
,
newColor
]
=
getBestCandidate
(
color
);
console
.
log
(
variable
,
"
=>
"
,
newColor
.
string
(),
`(
${
newColorName
}
)`
);
return
newColor
.
string
();
}
else
{
return
variable
;
}
});
}
function
processFiles
(
files
)
{
for
(
const
file
of
files
)
{
const
isCSS
=
/
\.
css/
.
test
(
file
);
names
.
push
(
newColorName
);
return
newColor
.
string
();
});
// add a comment with the color name. currently disabled due to nested comments breaking some files
// modifiedLine += /\.css/.test(file)
// ? " /* " + names.join(", ") + " */"
// : " // " + names.join(", ");
return
modifiedLine
;
});
fs
.
writeFileSync
(
file
,
modifiedContent
);
let
content
=
fs
.
readFileSync
(
file
,
"
utf-8
"
);
content
=
replaceSimpleColorValues
(
content
,
isCSS
);
content
=
replaceCSSVariables
(
content
,
isCSS
);
fs
.
writeFileSync
(
file
,
content
);
}
console
.
log
(
"
total
"
,
allMatches
.
length
);
console
.
log
(
"
unique
"
,
uniqueMatches
.
size
);
}
glob
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment