UNPKG

linkmore-design

Version:

🌈 🚀lm组件库。🚀

117 lines (108 loc) 4.78 kB
import _toConsumableArray from "@babel/runtime/helpers/esm/toConsumableArray"; /* eslint-disable import/prefer-default-export, prefer-destructuring */ import { generate } from '@ant-design/colors'; import { TinyColor } from '@ctrl/tinycolor'; import canUseDom from 'rc-util/lib/Dom/canUseDom'; import { updateCSS } from 'rc-util/lib/Dom/dynamicCSS'; import warning from "../_util/warning"; var dynamicStyleMark = "-ant-".concat(Date.now(), "-").concat(Math.random()); export function getStyle(globalPrefixCls, theme) { var variables = {}; var formatColor = function formatColor(color, updater) { var clone = color.clone(); clone = (updater === null || updater === void 0 ? void 0 : updater(clone)) || clone; return clone.toRgbString(); }; var fillColor = function fillColor(colorVal, type) { var baseColor = new TinyColor(colorVal); var colorPalettes = generate(baseColor.toRgbString()); variables["".concat(type, "-color")] = formatColor(baseColor); variables["".concat(type, "-color-disabled")] = colorPalettes[1]; variables["".concat(type, "-color-hover")] = colorPalettes[4]; variables["".concat(type, "-color-active")] = colorPalettes[6]; variables["".concat(type, "-color-outline")] = baseColor.clone().setAlpha(0.2).toRgbString(); variables["".concat(type, "-color-deprecated-bg")] = colorPalettes[0]; variables["".concat(type, "-color-deprecated-border")] = colorPalettes[2]; try { [0.85, 0.75, 0.6, 0.5, 0.25, 0.2, 0.1].forEach(function (value, index) { variables["".concat(type, "-color-alpha-").concat(index + 1)] = baseColor.clone().setAlpha(value).toRgbString(); }); } catch (err) { console.log('颜色转换失败'); } }; // ================ Primary Color ================ if (theme.primaryColor) { fillColor(theme.primaryColor, 'primary'); var primaryColor = new TinyColor(theme.primaryColor); var primaryColors = generate(primaryColor.toRgbString()); // Legacy - We should use semantic naming standard primaryColors.forEach(function (color, index) { variables["primary-".concat(index + 1)] = color; }); // Deprecated variables['primary-color-deprecated-l-35'] = formatColor(primaryColor, function (c) { return c.lighten(35); }); variables['primary-color-deprecated-l-20'] = formatColor(primaryColor, function (c) { return c.lighten(20); }); variables['primary-color-deprecated-t-20'] = formatColor(primaryColor, function (c) { return c.tint(20); }); variables['primary-color-deprecated-t-50'] = formatColor(primaryColor, function (c) { return c.tint(50); }); variables['primary-color-deprecated-f-12'] = formatColor(primaryColor, function (c) { return c.setAlpha(c.getAlpha() * 0.12); }); /** 添加五个主色的case */ _toConsumableArray(new Array(5).keys()).forEach(function (_, index) { if (theme !== null && theme !== void 0 && theme["primaryColorCase".concat(index + 1)]) { variables["primary-color-case".concat(index + 1)] = theme["primaryColorCase".concat(index + 1)]; } }); var primaryActiveColor = new TinyColor(primaryColors[0]); variables['primary-color-active-deprecated-f-30'] = formatColor(primaryActiveColor, function (c) { return c.setAlpha(c.getAlpha() * 0.3); }); variables['primary-color-active-deprecated-d-02'] = formatColor(primaryActiveColor, function (c) { return c.darken(2); }); } // ================ Success Color ================ if (theme.successColor) { fillColor(theme.successColor, 'success'); } // ================ Warning Color ================ if (theme.warningColor) { fillColor(theme.warningColor, 'warning'); } // ================= Error Color ================= if (theme.errorColor) { fillColor(theme.errorColor, 'error'); } // ================= Info Color ================== if (theme.infoColor) { fillColor(theme.infoColor, 'info'); } if (theme.borderRadiusBase) { variables['border-radius-base'] = theme.borderRadiusBase; } if (theme.modalRadiusBase) { variables['modal-radius-base'] = theme.modalRadiusBase; } // Convert to css variables var cssList = Object.keys(variables).map(function (key) { return "--".concat(globalPrefixCls, "-").concat(key, ": ").concat(variables[key], ";"); }); return "\n :root {\n ".concat(cssList.join('\n'), "\n }\n ").trim(); } export function registerTheme(globalPrefixCls, theme) { var style = getStyle(globalPrefixCls, theme); if (canUseDom()) { updateCSS(style, "".concat(dynamicStyleMark, "-dynamic-theme")); } else { warning(false, 'ConfigProvider', 'SSR do not support dynamic theme with css variables.'); } }