util.js 4.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
  2. function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
  3. function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
  4. function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
  5. function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
  6. function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
  7. /* eslint no-console: 0 */
  8. export var getIntersectionKeys = function getIntersectionKeys(preObj, nextObj) {
  9. return [Object.keys(preObj), Object.keys(nextObj)].reduce(function (a, b) {
  10. return a.filter(function (c) {
  11. return b.includes(c);
  12. });
  13. });
  14. };
  15. export var identity = function identity(param) {
  16. return param;
  17. };
  18. /*
  19. * @description: convert camel case to dash case
  20. * string => string
  21. */
  22. export var getDashCase = function getDashCase(name) {
  23. return name.replace(/([A-Z])/g, function (v) {
  24. return "-".concat(v.toLowerCase());
  25. });
  26. };
  27. export var log = function log() {
  28. var _console;
  29. (_console = console).log.apply(_console, arguments);
  30. };
  31. /*
  32. * @description: log the value of a varible
  33. * string => any => any
  34. */
  35. export var debug = function debug(name) {
  36. return function (item) {
  37. log(name, item);
  38. return item;
  39. };
  40. };
  41. /*
  42. * @description: log name, args, return value of a function
  43. * function => function
  44. */
  45. export var debugf = function debugf(tag, f) {
  46. return function () {
  47. for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
  48. args[_key] = arguments[_key];
  49. }
  50. var res = f.apply(void 0, args);
  51. var name = tag || f.name || 'anonymous function';
  52. var argNames = "(".concat(args.map(JSON.stringify).join(', '), ")");
  53. log("".concat(name, ": ").concat(argNames, " => ").concat(JSON.stringify(res)));
  54. return res;
  55. };
  56. };
  57. /*
  58. * @description: map object on every element in this object.
  59. * (function, object) => object
  60. */
  61. export var mapObject = function mapObject(fn, obj) {
  62. return Object.keys(obj).reduce(function (res, key) {
  63. return _objectSpread(_objectSpread({}, res), {}, _defineProperty({}, key, fn(key, obj[key])));
  64. }, {});
  65. };
  66. export var getTransitionVal = function getTransitionVal(props, duration, easing) {
  67. return props.map(function (prop) {
  68. return "".concat(getDashCase(prop), " ").concat(duration, "ms ").concat(easing);
  69. }).join(',');
  70. };
  71. var isDev = process.env.NODE_ENV !== 'production';
  72. export var warn = function warn(condition, format, a, b, c, d, e, f) {
  73. if (isDev && typeof console !== 'undefined' && console.warn) {
  74. if (format === undefined) {
  75. console.warn('LogUtils requires an error message argument');
  76. }
  77. if (!condition) {
  78. if (format === undefined) {
  79. console.warn('Minified exception occurred; use the non-minified dev environment ' + 'for the full error message and additional helpful warnings.');
  80. } else {
  81. var args = [a, b, c, d, e, f];
  82. var argIndex = 0;
  83. console.warn(format.replace(/%s/g, function () {
  84. return args[argIndex++];
  85. }));
  86. }
  87. }
  88. }
  89. };