egirlskey/src/client/app/common/scripts/theme.ts

93 lines
2.1 KiB
TypeScript
Raw Normal View History

2018-09-26 11:19:35 +00:00
import * as tinycolor from 'tinycolor2';
2018-09-26 16:32:04 +00:00
const lightTheme = require('../../../theme/light');
const darkTheme = require('../../../theme/dark');
type Theme = {
meta: {
id: string;
name: string;
inherit: string;
2018-09-27 10:14:35 +00:00
vars: any;
2018-09-26 16:32:04 +00:00
};
} & {
[key: string]: string;
};
export default function(theme: Theme) {
if (theme.meta.inherit) {
const inherit = [lightTheme, darkTheme].find(x => x.meta.id == theme.meta.inherit);
theme = Object.assign({}, inherit, theme);
}
2018-09-26 11:19:35 +00:00
2018-09-26 09:59:37 +00:00
const props = compile(theme);
Object.entries(props).forEach(([k, v]) => {
if (k == 'meta') return;
document.documentElement.style.setProperty(`--${k}`, v.toString());
});
2018-09-26 10:14:11 +00:00
localStorage.setItem('theme', JSON.stringify(props));
2018-09-26 09:59:37 +00:00
}
2018-09-26 16:32:04 +00:00
function compile(theme: Theme): { [key: string]: string } {
2018-09-26 11:19:35 +00:00
function getColor(code: string): tinycolor.Instance {
2018-09-26 09:59:37 +00:00
// ref
if (code[0] == '@') {
2018-09-26 11:19:35 +00:00
return getColor(theme[code.substr(1)]);
2018-09-26 09:59:37 +00:00
}
2018-09-27 10:14:35 +00:00
if (code[0] == '$') {
return getColor(theme.meta.vars[code.substr(1)]);
}
// func
if (code[0] == ':') {
const parts = code.split('<');
const func = parts.shift().substr(1);
const arg = parseInt(parts.shift(), 10);
const color = getColor(parts.join('<'));
switch (func) {
case 'darken': return color.darken(arg);
case 'lighten': return color.lighten(arg);
}
}
2018-09-26 09:59:37 +00:00
2018-09-26 11:19:35 +00:00
return tinycolor(code);
2018-09-26 09:59:37 +00:00
}
const props = {};
Object.entries(theme).forEach(([k, v]) => {
if (k == 'meta') return;
2018-09-26 11:19:35 +00:00
const c = getColor(v);
props[k] = genValue(c);
props[`${k}-r`] = c.toRgb().r;
props[`${k}-g`] = c.toRgb().g;
props[`${k}-b`] = c.toRgb().b;
props[`${k}-a`] = c.toRgb().a;
2018-09-26 09:59:37 +00:00
});
2018-09-26 11:19:35 +00:00
const primary = getColor(props['primary']);
for (let i = 1; i < 10; i++) {
const color = primary.clone().setAlpha(i / 10);
props['primaryAlpha0' + i] = genValue(color);
}
for (let i = 1; i < 100; i++) {
const color = primary.clone().lighten(i);
props['primaryLighten' + i] = genValue(color);
}
for (let i = 1; i < 100; i++) {
const color = primary.clone().darken(i);
props['primaryDarken' + i] = genValue(color);
}
2018-09-26 09:59:37 +00:00
return props;
}
2018-09-26 11:19:35 +00:00
function genValue(c: tinycolor.Instance): string {
return c.toRgbString();
2018-09-26 09:59:37 +00:00
}