index.html 8.1 KB

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