2016-12-06 13:50:24 +02:00
|
|
|
const calc = require('reduce-css-calc');
|
2016-12-09 16:56:34 +02:00
|
|
|
const randomNatural = require('random-natural');
|
|
|
|
|
|
|
|
// from https://github.com/styled-components/styled-components/blob/065001c725744629c7870240e4a955b924ef5337/src/utils/generateAlphabeticName.js
|
|
|
|
const chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'.split('')
|
|
|
|
const rndId = (_code) => {
|
|
|
|
const code = !_code ? randomNatural({
|
|
|
|
min: 1000000000
|
|
|
|
}) : _code;
|
|
|
|
|
|
|
|
const lastDigit = chars[code % chars.length];
|
|
|
|
return code > chars.length
|
|
|
|
? `${rndId(Math.floor(code / chars.length))}${lastDigit}`
|
|
|
|
: lastDigit;
|
|
|
|
};
|
2016-12-06 13:50:24 +02:00
|
|
|
|
2016-10-28 17:14:35 +03:00
|
|
|
module.exports = {
|
2016-12-09 16:56:34 +02:00
|
|
|
remcalc: (values) => {
|
2016-12-08 14:08:04 +02:00
|
|
|
values = values.toString().replace('px', '').split(' ');
|
2016-10-28 17:14:35 +03:00
|
|
|
|
|
|
|
let outputRems = '';
|
|
|
|
const base = 16;
|
|
|
|
|
|
|
|
values.forEach( (value, i) => {
|
|
|
|
const remValue = value / base;
|
|
|
|
outputRems += i === 0 ? `${remValue}rem` : ` ${remValue}rem`;
|
|
|
|
});
|
|
|
|
|
|
|
|
return outputRems;
|
2016-12-06 13:50:24 +02:00
|
|
|
},
|
2016-12-09 16:56:34 +02:00
|
|
|
calc: (str) => calc(`calc(${str})`),
|
|
|
|
rndId
|
2016-10-28 17:14:35 +03:00
|
|
|
};
|