joyent-portal/ui/src/shared/functions.js

34 lines
959 B
JavaScript
Raw Normal View History

2016-12-06 13:50:24 +02:00
const calc = require('reduce-css-calc');
const randomNatural = require('random-natural');
// from https://github.com/styled-components/styled-components/blob/065001c725744629c7870240e4a955b924ef5337/src/utils/generateAlphabeticName.js
2016-12-09 17:33:24 +02:00
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
module.exports = {
remcalc: (values) => {
values = values.toString().replace('px', '').split(' ');
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
},
calc: (str) => calc(`calc(${str})`),
rndId
};