index.html 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. <head>
  2. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  3. <title>实验中学成绩整理</title>
  4. <script type="text/javascript" src="/js/jquery.min.js" crossorigin="anonymous"></script>
  5. <link rel="stylesheet" href="/css/bootstrap.min.css" crossorigin="anonymous">
  6. <script type="text/javascript" src="/js/bootstrap.min.js" crossorigin="anonymous"></script>
  7. <script async src="/js/echarts-5.4.1.min.js"></script>
  8. <link href="https://fonts.loli.net/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700
  9. &family=Noto+Serif+SC:wght@300;400;500;600;700&display=swap" rel="stylesheet">
  10. <link rel="stylesheet" href="/css/style.css">
  11. <script>
  12. var wid = 0, skip = 0
  13. var col = {
  14. '向量': '#337ab7',
  15. '隐': '#b5b5b5'
  16. }
  17. function getCol(str, pam) {
  18. str = str.split(' ')[0]
  19. return col[str] ? col[str] : (pam ? '#6f9f3f' : '#3f3f3f')
  20. }
  21. function unique(arr) {
  22. let hash = [];
  23. for (let i = 0; i < arr.length; i++) {
  24. if (hash.indexOf(arr[i]) === -1) {
  25. hash.push(arr[i]);
  26. }
  27. }
  28. return hash;
  29. }
  30. function myUnique(arr) {
  31. let res = [];
  32. for (let i = 0; i < arr.length; i++) {
  33. if (!arr[i]) continue;
  34. res.push({
  35. source: arr[i].source, target: arr[i].target,
  36. value: wid ? 1 : arr.filter(function (e) {
  37. return e.source == arr[i].source && e.target == arr[i].target
  38. }).length
  39. })
  40. for (let j = i + 1; j < arr.length; j++) {
  41. if (!arr[j]) continue;
  42. if (arr[j].source == arr[i].source && arr[j].target == arr[i].target) delete arr[j]
  43. }
  44. }
  45. return res;
  46. }
  47. function resizeChart() {
  48. cc.resize()
  49. }
  50. function get() {
  51. if ($('#filter').val()) o = 800
  52. else o = 3000
  53. if (wid) o /= 1.75
  54. $("#sanky").css('height', o + 'px')
  55. cc = echarts.init($("#sanky")[0]);
  56. fetch('/a.log', {
  57. method: 'GET',
  58. }).then(res => {
  59. return res.text()
  60. }).then(e => {
  61. var f = '[' + e.replace(/^((?!fetched).)*$\n/gm, '')
  62. .replace(/^.*(: \d).*$\n/gm, '')
  63. .replace(/^.*(: :).*$\n/gm, '')
  64. .replace(/undefined/g, '隐')
  65. .replace(/^.*GMT: ([^\w ,]+)[0-9, a-z\(]+([^\w)]+).*/gm, '{"source": "$1","target": "$2 ", "value": 1},')
  66. f = JSON.parse(f.slice(0, f.length - 2) + ']')
  67. f = myUnique(f)
  68. var p = [], data = []
  69. for (var i = 0; i < f.length; i++) {
  70. if (skip && f[i].source == f[i].target.split(' ')[0]) continue;
  71. if ($('#filter').val() && f[i].source != $('#filter').val()) continue;
  72. p.push(f[i].source)
  73. p.push(f[i].target)
  74. }
  75. p = unique(p)
  76. var ppp = [];
  77. for (let i = 0; i < p.length; i++) {
  78. ppp.push({
  79. name: p[i],
  80. itemStyle: { color: getCol(p[i]) }
  81. })
  82. }
  83. for (var i = 0; i < f.length; i++) {
  84. if (skip && f[i].source == f[i].target.split(' ')[0]) continue;
  85. if ($('#filter').val() && f[i].source != $('#filter').val()) continue;
  86. var color = new echarts.graphic.LinearGradient(0, 0, 1, 0, [{
  87. offset: 0.5,
  88. color: getCol(f[i].source, f[i].source == f[i].target.split(' ')[0])
  89. }, {
  90. offset: 1,
  91. color: getCol(f[i].target, f[i].source == f[i].target.split(' ')[0])
  92. }]
  93. )
  94. data.push(
  95. {
  96. source: f[i].source,
  97. target: f[i].target,
  98. value: f[i].value,
  99. lineStyle: {
  100. color: color
  101. }
  102. }
  103. )
  104. }
  105. var op = {
  106. textStyle: {
  107. fontFamily: 'Noto Serif SC'
  108. },
  109. title: {
  110. text: '人物关系图',
  111. textStyle: {
  112. fontSize: 14,
  113. fontStyle: 'normal',
  114. fontWeight: 'bold',
  115. },
  116. },
  117. tooltip: {
  118. trigger: 'axis'
  119. },
  120. toolbox: {
  121. show: true,
  122. feature: {
  123. saveAsImage: {
  124. show: true
  125. },
  126. },
  127. padding: 25,
  128. orient: 'vertical'
  129. },
  130. series: [
  131. {
  132. type: 'sankey',
  133. data: ppp,
  134. links: data,
  135. focusNodeAdjacency: 'allEdges',
  136. itemStyle: {
  137. borderWidth: 1,
  138. color: '#1b6199',
  139. borderColor: '#fff'
  140. },
  141. lineStyle: {
  142. curveness: 0.5,
  143. opacity: 0.4
  144. }
  145. }
  146. ],
  147. }
  148. cc.setOption(op);
  149. cc.resize();
  150. window.onresize = resizeChart
  151. })
  152. }
  153. </script>
  154. </head>
  155. <body>
  156. <div class="input-group">
  157. <div class="input-group-btn">
  158. <button class="btn btn-success" onclick="get()">get</button>
  159. </div>
  160. <input class="form-control" id="filter" placeholder="筛选">
  161. <div class="input-group-btn">
  162. <button data-toggle="button" class="btn btn-default" onclick="skip=!skip;get()">忽略自环</button>
  163. <button class="btn btn-default" data-toggle="button" onclick="wid=!wid;get()">固定宽度</button>
  164. </div>
  165. <span class="input-group-addon">
  166. 提示:保持鼠标不动,可以随意滑动滚轮而不改变焦点
  167. </span>
  168. </div>
  169. <div id="sanky" class="chart" style="height:3000px"></div>
  170. </body>