index.html 8.1 KB

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