tailwindcss-ripple
Version:
Materialize ripple effect for Tailwind
75 lines (69 loc) • 2.74 kB
JavaScript
const _ = require('lodash');
const Color = require('color');
module.exports = function() {
return ({ theme, e, addComponents, postcss }) => {
const defaultBgColors = {};
const rippleBgColors = theme('ripple.colors', defaultBgColors);
const defaultDarkenValue = 0.2;
let darkenValue = theme('ripple.darken', defaultDarkenValue);
if (isNaN(darkenValue) || darkenValue > 1 || darkenValue < 0) {
darkenValue = defaultDarkenValue;
}
const defaultModifierTransition = 'background 0.8s';
let modifierTransition = theme('ripple.modifierTransition', defaultModifierTransition);
const defaultActiveTransition = 'background 0s';
let activeTransition = theme('ripple.activeTransition', defaultActiveTransition);
function returnColorPair([modifier, value]) {
return [
`${modifier}`,
{
backgroundColor: value,
backgroundPosition: 'center',
transition: modifierTransition,
'&:hover': {
background: `${Color(value)
.darken(darkenValue)
.hex()
.toString()} radial-gradient(circle, transparent 1%, ${Color(
value
)
.darken(darkenValue)
.hex()
.toString()} 1%) center/15000%`,
},
'&:active': {
backgroundColor: value,
backgroundSize: '100%',
transition: activeTransition,
},
},
];
}
const allTheColors = _(rippleBgColors)
.flatMap((value, modifier) => {
if (typeof value == 'object') {
return _.map(value, (v, m) => {
return [`.${e(`ripple-bg-${modifier}-${m}`)}`, v];
});
}
if (
typeof value == 'string' &&
value.length > 1
) {
try {
Color(value)
} catch (err) {
return [];
}
return [[`.${e(`ripple-bg-${modifier}`)}`, value]];
}
})
.value();
const components = _.fromPairs(
_.map(allTheColors, (color, index) => {
return returnColorPair(color);
})
);
addComponents(components);
};
};