Plat Admin

timingConstruct.js 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /**
  2. * Created by luyanan on 18/9/4.
  3. * construct monitor
  4. */
  5. /* eslint-disable one-var */
  6. import { parseTime } from '@/utils/index'
  7. var monitorModel = {
  8. construct: function(mCache, $data) {
  9. for (let i = 0; i < $data.length; ++i) {
  10. if ($data[i].ctime === $data[0].ctime) {
  11. mCache.push({
  12. cid: $data[i].cid,
  13. cd: {
  14. tit: '',
  15. xData: [],
  16. seData: []
  17. }
  18. })
  19. }
  20. }
  21. },
  22. fixData: function(item, ftbegin, ftend, $daI) {
  23. if ($daI) {
  24. item.xData.push(parseTime(ftbegin, true, true))
  25. item.xData.push(parseTime(ftend, true, true))
  26. item.seData.push($daI.hvalue)
  27. item.seData.push($daI.lvalue)
  28. item.tit = $daI.cid
  29. } else {
  30. item.xData.push(parseTime(ftbegin, true, true))
  31. item.xData.push(parseTime(ftend, true, true))
  32. item.seData.push(0)
  33. item.seData.push(0)
  34. }
  35. },
  36. shiftData: function(item) {
  37. item.xData.shift()
  38. item.xData.shift()
  39. item.seData.shift()
  40. item.seData.shift()
  41. },
  42. setData: function(mCache, $data, ftbegin, ftend, maxNum) {
  43. if ($data.length) {
  44. for (let n = 0; n < mCache.length; ++n) {
  45. let found_c = false
  46. for (let m = 0; m < $data.length; ++m) {
  47. var tj = ($data[m].cid === mCache[n].cid && (ftbegin === $data[m].ctime))
  48. if (maxNum) {
  49. tj = ($data[m].cid === mCache[n].cid)
  50. }
  51. if (tj) {
  52. found_c = true
  53. this.fixData(mCache[n].cd, ftbegin, ftend, $data[m])
  54. break
  55. }
  56. }
  57. if (!found_c) {
  58. this.fixData(mCache[n].cd, ftbegin, ftend)
  59. }
  60. if (maxNum && mCache[n].cd.xData.length > maxNum) {
  61. this.shiftData(mCache[n].cd)
  62. }
  63. }
  64. } else {
  65. for (let k = 0; k < mCache.length; ++k) {
  66. this.fixData(mCache[k].cd, ftbegin, ftend)
  67. if (maxNum && mCache[k].cd.xData.length > maxNum) {
  68. this.shiftData(mCache[k].cd)
  69. }
  70. }
  71. }
  72. }
  73. }
  74. export default monitorModel