index.html 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>ECharts</title>
  6. <!-- 引入 echarts.js -->
  7. <script src="/static/echarts.js"></script>
  8. <script src="/static/req.js"></script>
  9. </head>
  10. <body>
  11. <!-- 为ECharts准备一个具备大小(宽高)的Dom -->
  12. <div id="overview" style="width: 1200px;height:400px;"></div>
  13. <!-- <div id="organic", style="width: 1200px;height:400px;">
  14. <div id="organic_users" style="width: 600px;height:400px;float:left;"></div>
  15. <div id="organic_newuser" style="width: 600px;height:400px;float:right"></div>
  16. </div> -->
  17. <div id="social", style="width: 1200px;height:400px;"></div>
  18. <div id="organic", style="width: 1200px;height:400px;"></div>
  19. <div id="keyword-bar", style="width: 1200px;height:400px;"></div>
  20. <div id="keyword-table", style="width: 1200px;height:400px;"></div>
  21. <div id='test-social'> social numbers: {{ users }}</div>
  22. <script type="text/javascript">
  23. // 基於準備好的DOM,初始化echarts實例
  24. // Overview
  25. var week_num = 31;
  26. var overview_users_charts = echarts.init(document.getElementById("overview"));
  27. var social_users_charts = echarts.init(document.getElementById('social'));
  28. var organic_users_charts = echarts.init(document.getElementById('organic'));
  29. var keyword_bar = echarts.init(document.getElementById('keyword-bar'));
  30. // 1. Overview
  31. // 從fastapi取得data, 然後畫echarts
  32. fetch(`http://127.0.0.1:8000/users/${week_num}`)
  33. .then(function(response) {
  34. return response.json();
  35. })
  36. .then(function(myJson) {
  37. // 配置圖表資訊
  38. console.log(myJson);
  39. var option = {
  40. title: {
  41. text: `hhh 流量週報圖表: W${week_num} Overview`
  42. },
  43. tooltip: {},
  44. legend: {
  45. data:['Organic-新使用者人數', 'Organic-使用者人數', 'Social-新使用者人數', 'Social-使用者人數']
  46. },
  47. xAxis: {
  48. // 這邊要放日期
  49. data: myJson['dates']
  50. },
  51. yAxis: {},
  52. series: [
  53. {
  54. name: 'Organic-新使用者人數',
  55. type: 'line',
  56. data: myJson['organic_newusers']
  57. },
  58. {
  59. name: 'Organic-使用者人數',
  60. type:'line',
  61. data: myJson['organic_users']
  62. },
  63. {
  64. name: 'Social-新使用者人數',
  65. type: 'line',
  66. data: myJson['social_newusers']
  67. },
  68. {
  69. name: 'Social-使用者人數',
  70. type:'line',
  71. data: myJson['social_users']
  72. }
  73. ]
  74. };
  75. // 使用刚指定的配置项和数据显示图表。
  76. overview_users_charts.setOption(option);
  77. });
  78. // 2. social
  79. // 從fastapi取得data, 然後畫echarts
  80. fetch(`http://127.0.0.1:8000/users/${week_num}`)
  81. .then(function(response) {
  82. return response.json();
  83. })
  84. .then(function(myJson) {
  85. // 配置圖表資訊
  86. console.log(myJson);
  87. var option = {
  88. title: {
  89. text: `hhh 流量週報圖表(Social): W${week_num}`
  90. },
  91. tooltip: {},
  92. legend: {
  93. data:['Social-新使用者人數', 'Social-使用者人數']
  94. },
  95. xAxis: {
  96. // 這邊要放日期
  97. data: myJson['dates']
  98. },
  99. yAxis: {},
  100. series: [
  101. {
  102. name: 'Social-新使用者人數',
  103. type: 'line',
  104. data: myJson['social_newusers']
  105. },
  106. {
  107. name: 'Social-使用者人數',
  108. type: 'line',
  109. data: myJson['social_users']
  110. }
  111. ]
  112. };
  113. // 使用刚指定的配置项和数据显示图表。
  114. social_users_charts.setOption(option);
  115. });
  116. // 3. organic
  117. // 從fastapi取得data, 然後畫echarts
  118. fetch(`http://127.0.0.1:8000/users/${week_num}`)
  119. .then(function(response) {
  120. return response.json();
  121. })
  122. .then(function(myJson) {
  123. // 配置圖表資訊
  124. console.log(myJson);
  125. var option = {
  126. title: {
  127. text: `hhh 流量週報圖表(Organic): W${week_num}`
  128. },
  129. tooltip: {},
  130. legend: {
  131. data:['Organic-新使用者人數', 'Organic-使用者人數']
  132. },
  133. xAxis: {
  134. // 這邊要放日期
  135. data: myJson['dates']
  136. },
  137. yAxis: {},
  138. series: [
  139. {
  140. name: 'Organic-新使用者人數',
  141. type: 'line',
  142. data: myJson['organic_newusers']
  143. },
  144. {
  145. name: 'Organic-使用者人數',
  146. type: 'line',
  147. data: myJson['organic_users']
  148. }
  149. ]
  150. };
  151. // 使用刚指定的配置项和数据显示图表。
  152. organic_users_charts.setOption(option);
  153. });
  154. // 4. keyword sort-bar
  155. fetch(`http://127.0.0.1:8000/keywords/${week_num}`)
  156. .then(function(response) {
  157. return response.json();
  158. }).then(function(myJson) {
  159. // 配置sorted-bar
  160. console.log(myJson);
  161. option = {
  162. xAxis: {
  163. type: 'category',
  164. axisLabel: {
  165. interval: 0, // 橫軸全部顯示
  166. rotate: -30 // -30度傾斜顯示
  167. },
  168. data: myJson['keywords']
  169. },
  170. yAxis: {
  171. type: 'value'
  172. },
  173. series: [{
  174. data: myJson['keywords_growth'],
  175. type: 'bar'
  176. }]
  177. };
  178. // 使用刚指定的配置项和数据显示图表。
  179. keyword_bar.setOption(option);
  180. });
  181. </script>
  182. </body>
  183. </html>