-
Notifications
You must be signed in to change notification settings - Fork 22
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 support for nested CSS variables #90
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"css-variables-language-server": minor | ||
--- | ||
|
||
Add support for nested CSS variables. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -9,7 +9,6 @@ import path from 'path'; | |||||||||||||||||||||||||||||||||||||||||||||||
import postcssSCSS from 'postcss-scss'; | ||||||||||||||||||||||||||||||||||||||||||||||||
import postcssLESS from 'postcss-less'; | ||||||||||||||||||||||||||||||||||||||||||||||||
import CacheManager from './CacheManager'; | ||||||||||||||||||||||||||||||||||||||||||||||||
import isColor from './utils/isColor'; | ||||||||||||||||||||||||||||||||||||||||||||||||
import { culoriColorToVscodeColor } from './utils/culoriColorToVscodeColor'; | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
export type CSSSymbol = { | ||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -55,7 +54,7 @@ const getAST = (filePath: string, content: string) => { | |||||||||||||||||||||||||||||||||||||||||||||||
if (fileExtension === '.less') { | ||||||||||||||||||||||||||||||||||||||||||||||||
return postcssLESS.parse(content); | ||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
if (fileExtension === '.scss') { | ||||||||||||||||||||||||||||||||||||||||||||||||
return postcssSCSS.parse(content); | ||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -66,6 +65,54 @@ const getAST = (filePath: string, content: string) => { | |||||||||||||||||||||||||||||||||||||||||||||||
export default class CSSVariableManager { | ||||||||||||||||||||||||||||||||||||||||||||||||
private cacheManager = new CacheManager<CSSVariable>(); | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
private resolveCachedVariables = () => { | ||||||||||||||||||||||||||||||||||||||||||||||||
for (const filePath of this.cacheManager.getFiles()) { | ||||||||||||||||||||||||||||||||||||||||||||||||
this.cacheManager.getAll(filePath).forEach((variable, key) => { | ||||||||||||||||||||||||||||||||||||||||||||||||
this.setCssVariable(key, this.resolveRecursiveVariables(variable.symbol.value), filePath, variable.definition.range); | ||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
public resolveRecursiveVariables = (value: string) => { | ||||||||||||||||||||||||||||||||||||||||||||||||
for (let i = 0; i < 20; i++) { | ||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why does the for loop run 20? Is it because the maximum recursion depth is thought to be 20? |
||||||||||||||||||||||||||||||||||||||||||||||||
const variableReference = value.match(/^var\(\s*([a-zA-Z0-9-]+)\s*\)$/)?.[1]; | ||||||||||||||||||||||||||||||||||||||||||||||||
if (variableReference) { | ||||||||||||||||||||||||||||||||||||||||||||||||
const newValue = this.cacheManager.get(variableReference)?.symbol?.value; | ||||||||||||||||||||||||||||||||||||||||||||||||
if (newValue) { | ||||||||||||||||||||||||||||||||||||||||||||||||
value = newValue; | ||||||||||||||||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||||||||||||||||
break; | ||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||||||||||||||||
break; | ||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+78
to
+88
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
I think nested if statements are complicated. How about this? |
||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
return value; | ||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
public setCssVariable = (prop: string, value: string, filePath: string, range: Range) => { | ||||||||||||||||||||||||||||||||||||||||||||||||
const variable: CSSVariable = { | ||||||||||||||||||||||||||||||||||||||||||||||||
symbol: { | ||||||||||||||||||||||||||||||||||||||||||||||||
name: prop, | ||||||||||||||||||||||||||||||||||||||||||||||||
value: value, | ||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||
definition: { | ||||||||||||||||||||||||||||||||||||||||||||||||
uri: filePath, | ||||||||||||||||||||||||||||||||||||||||||||||||
range: range, | ||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
const culoriColor = culori.parse(value); | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
if (culoriColor) { | ||||||||||||||||||||||||||||||||||||||||||||||||
variable.color = culoriColorToVscodeColor(culoriColor); | ||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
// add to cache | ||||||||||||||||||||||||||||||||||||||||||||||||
this.cacheManager.set(filePath, prop, variable); | ||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
public parseCSSVariablesFromText = async ({ | ||||||||||||||||||||||||||||||||||||||||||||||||
content, | ||||||||||||||||||||||||||||||||||||||||||||||||
filePath, | ||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -117,36 +164,25 @@ export default class CSSVariableManager { | |||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
ast.walkDecls((decl) => { | ||||||||||||||||||||||||||||||||||||||||||||||||
if (decl.prop.startsWith('--')) { | ||||||||||||||||||||||||||||||||||||||||||||||||
const variable: CSSVariable = { | ||||||||||||||||||||||||||||||||||||||||||||||||
symbol: { | ||||||||||||||||||||||||||||||||||||||||||||||||
name: decl.prop, | ||||||||||||||||||||||||||||||||||||||||||||||||
value: decl.value, | ||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||
definition: { | ||||||||||||||||||||||||||||||||||||||||||||||||
uri: fileURI, | ||||||||||||||||||||||||||||||||||||||||||||||||
range: Range.create( | ||||||||||||||||||||||||||||||||||||||||||||||||
Position.create( | ||||||||||||||||||||||||||||||||||||||||||||||||
decl.source.start.line - 1, | ||||||||||||||||||||||||||||||||||||||||||||||||
decl.source.start.column - 1 | ||||||||||||||||||||||||||||||||||||||||||||||||
), | ||||||||||||||||||||||||||||||||||||||||||||||||
Position.create( | ||||||||||||||||||||||||||||||||||||||||||||||||
decl.source.end.line - 1, | ||||||||||||||||||||||||||||||||||||||||||||||||
decl.source.end.column - 1 | ||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||
this.setCssVariable( | ||||||||||||||||||||||||||||||||||||||||||||||||
decl.prop, | ||||||||||||||||||||||||||||||||||||||||||||||||
decl.value, | ||||||||||||||||||||||||||||||||||||||||||||||||
fileURI, | ||||||||||||||||||||||||||||||||||||||||||||||||
Range.create( | ||||||||||||||||||||||||||||||||||||||||||||||||
Position.create( | ||||||||||||||||||||||||||||||||||||||||||||||||
decl.source.start.line - 1, | ||||||||||||||||||||||||||||||||||||||||||||||||
decl.source.start.column - 1 | ||||||||||||||||||||||||||||||||||||||||||||||||
), | ||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
const culoriColor = culori.parse(decl.value); | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
if (culoriColor) { | ||||||||||||||||||||||||||||||||||||||||||||||||
variable.color = culoriColorToVscodeColor(culoriColor); | ||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
// add to cache | ||||||||||||||||||||||||||||||||||||||||||||||||
this.cacheManager.set(filePath, decl.prop, variable); | ||||||||||||||||||||||||||||||||||||||||||||||||
Position.create( | ||||||||||||||||||||||||||||||||||||||||||||||||
decl.source.end.line - 1, | ||||||||||||||||||||||||||||||||||||||||||||||||
decl.source.end.column - 1 | ||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
this.resolveCachedVariables(); | ||||||||||||||||||||||||||||||||||||||||||||||||
} catch (error) { | ||||||||||||||||||||||||||||||||||||||||||||||||
console.error(filePath); | ||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,4 +40,4 @@ | |
|
||
.five { | ||
background-color: var(--main-bg-color); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,4 +40,4 @@ | |
|
||
.five { | ||
background-color: var(--main-bg-color); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,4 +40,4 @@ | |
|
||
.five { | ||
background-color: var(--main-bg-color); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,4 +36,4 @@ | |
|
||
.five { | ||
background-color: var(--main-bg-color); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,4 +37,4 @@ | |
|
||
.five { | ||
background-color: var(--main-bg-color); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to be updated...! #95