Skip to content

Commit

Permalink
Merge branch 'fix/color-object-closures' of git://github.com/innocenz…
Browse files Browse the repository at this point in the history
…i/tailwindcss into innocenzi-fix/color-object-closures
  • Loading branch information
adamwathan committed Aug 19, 2020
2 parents 239da62 + f6fc963 commit 28930f4
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 4 deletions.
38 changes: 38 additions & 0 deletions __tests__/plugins/gradientColorStops.test.js
@@ -0,0 +1,38 @@
import postcss from 'postcss'
import tailwind from '../../src/index'

test('opacity variables are given to colors defined as closures', () => {
return postcss([
tailwind({
theme: {
colors: {
primary: ({ opacityVariable }) => `rgba(31,31,31,var(${opacityVariable},1))`,
},
},
variants: {
gradientColorStops: [],
},
corePlugins: ['gradientColorStops'],
}),
])
.process('@tailwind utilities', { from: undefined })
.then(result => {
const expected = `
.from-primary {
--gradient-from-color: rgba(31,31,31,var(--gradient-from-opacity,1));
--gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0))
}
.via-primary {
--gradient-via-color: rgba(31,31,31,var(--gradient-via-opacity,1));
--gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0))
}
.to-primary {
--gradient-to-color: rgba(31,31,31,var(--gradient-to-opacity,1))
}
`

expect(result.css).toMatchCss(expected)
})
})
16 changes: 13 additions & 3 deletions src/plugins/gradientColorStops.js
Expand Up @@ -12,6 +12,16 @@ export default function() {

const utilities = _(colors)
.map((value, modifier) => {
const getColorValue = (color, type) => {
if (_.isFunction(color)) {
return value({
opacityVariable: `--gradient-${type}-opacity`,
})
}

return color
}

const transparentTo = (() => {
try {
const [r, g, b] = toRgba(value)
Expand All @@ -25,21 +35,21 @@ export default function() {
[
`.${e(`from-${modifier}`)}`,
{
'--gradient-from-color': value,
'--gradient-from-color': getColorValue(value, 'from'),
'--gradient-color-stops': `var(--gradient-from-color), var(--gradient-to-color, ${transparentTo})`,
},
],
[
`.${e(`via-${modifier}`)}`,
{
'--gradient-via-color': value,
'--gradient-via-color': getColorValue(value, 'via'),
'--gradient-color-stops': `var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, ${transparentTo})`,
},
],
[
`.${e(`to-${modifier}`)}`,
{
'--gradient-to-color': value,
'--gradient-to-color': getColorValue(value, 'to'),
},
],
]
Expand Down
2 changes: 1 addition & 1 deletion src/util/flattenColorPalette.js
Expand Up @@ -3,7 +3,7 @@ import _ from 'lodash'
export default function flattenColorPalette(colors) {
const result = _(colors)
.flatMap((color, name) => {
if (!_.isObject(color)) {
if (_.isFunction(color) || !_.isObject(color)) {
return [[name, color]]
}

Expand Down

0 comments on commit 28930f4

Please sign in to comment.