index.js 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. import { isDate } from 'date-fns';
  2. import { AES, mode, pad, enc } from "crypto-js";
  3. /**
  4. * @description 判断是否是时间戳
  5. * @param {number} 时间戳
  6. * @return {boolean}
  7. */
  8. export const isTimestamp = (value) => {
  9. // 判断是否为数字
  10. if (typeof value !== 'number') return false;
  11. // 判断是否为合理的时间戳(大于0)
  12. if (value <= 0) return false;
  13. // 判断是否为Math.floor(value),即是否为整数
  14. if (value !== Math.floor(value)) return false;
  15. // 判断是否为日期对象
  16. return isDate(new Date(value));
  17. }
  18. /**
  19. * @description 生成连续的数字
  20. * @param {number} start 起点数字
  21. * @param {number} end 终点数字
  22. * @return {array}
  23. */
  24. export const generateNumberArray = (start, end) => {
  25. return Array.from(new Array(end + 1).keys()).slice(start);
  26. }
  27. /**
  28. * @description 登录加密
  29. * @param {string} str 待加密的字符串
  30. * @return {string}
  31. */
  32. export const encryptByEnAESLogin = (str) => {
  33. str = enc.Utf8.parse(str);
  34. let Key = enc.Utf8.parse('Aes2Util666AQWER');
  35. let tmpAES = AES.encrypt(str, Key, {
  36. mode: mode.ECB,
  37. padding: pad.Pkcs7,
  38. });
  39. return tmpAES.toString();
  40. }
  41. // 处理树数据(parent格式转为children格式)
  42. export const transform = (nodes, id, parentid) => {
  43. let parents = [];
  44. const idMapping = nodes.reduce((acc, el, i) => {
  45. acc[el[id]] = i;
  46. return acc;
  47. }, {});
  48. nodes.forEach((el) => {
  49. if (el[parentid] === null || el[parentid] === undefined) {
  50. parents.push(el);
  51. } else {
  52. const parentEl = nodes[idMapping[el[parentid]]];
  53. parentEl.children = [...(parentEl.children || []), el];
  54. }
  55. });
  56. return parents;
  57. }