index.html 7.8 KB

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