| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- "use strict";
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports._statistic_build_ = void 0;
- exports.default = statisticToken;
- exports.merge = merge;
- exports.statistic = void 0;
- var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
- const enableStatistic = process.env.NODE_ENV !== 'production' || typeof CSSINJS_STATISTIC !== 'undefined';
- let recording = true;
- /**
- * This function will do as `Object.assign` in production. But will use Object.defineProperty:get to
- * pass all value access in development. To support statistic field usage with alias token.
- */
- function merge() {
- for (var _len = arguments.length, objs = new Array(_len), _key = 0; _key < _len; _key++) {
- objs[_key] = arguments[_key];
- }
- /* istanbul ignore next */
- if (!enableStatistic) {
- return (0, _extends2.default)({}, ...objs);
- }
- recording = false;
- const ret = {};
- objs.forEach(obj => {
- const keys = Object.keys(obj);
- keys.forEach(key => {
- Object.defineProperty(ret, key, {
- configurable: true,
- enumerable: true,
- get: () => obj[key]
- });
- });
- });
- recording = true;
- return ret;
- }
- /** @private Internal Usage. Not use in your production. */
- const statistic = exports.statistic = {};
- /** @private Internal Usage. Not use in your production. */
- // eslint-disable-next-line camelcase
- const _statistic_build_ = exports._statistic_build_ = {};
- /* istanbul ignore next */
- function noop() {}
- /** Statistic token usage case. Should use `merge` function if you do not want spread record. */
- function statisticToken(token) {
- let tokenKeys;
- let proxy = token;
- let flush = noop;
- if (enableStatistic) {
- tokenKeys = new Set();
- proxy = new Proxy(token, {
- get(obj, prop) {
- if (recording) {
- tokenKeys.add(prop);
- }
- return obj[prop];
- }
- });
- flush = (componentName, componentToken) => {
- statistic[componentName] = {
- global: Array.from(tokenKeys),
- component: componentToken
- };
- };
- }
- return {
- token: proxy,
- keys: tokenKeys,
- flush
- };
- }
|