script_msg.js 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. //jQuery time
  2. var current_fs, next_fs, previous_fs; //fieldsets
  3. var left, opacity, scale; //fieldset properties which we will animate
  4. var animating; //flag to prevent quick multi-click glitasdaches
  5. var client_id = Date.now()
  6. var tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]'))
  7. var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) {
  8. return new bootstrap.Tooltip(tooltipTriggerEl)
  9. })
  10. $(".next").click(function(){
  11. avatar = $('.avatar').val();
  12. name_title = $('.title_new').val();
  13. txtARR=[];
  14. imgARR=[];
  15. var step;
  16. for (step = 1; step <= 10; step++) {
  17. if($(".txtsrc"+step).val()!=""){
  18. txtARR.push($(".txtsrc"+step).val())
  19. }
  20. }
  21. var step2;
  22. for (step2 = 1; step2 <= 10; step2++) {
  23. if($(".imgsrc"+step2).val()!=""){
  24. imgARR.push($(".imgsrc"+step2).val())
  25. }
  26. }
  27. dataOBJ = {"name":name_title,"text_content":txtARR,"image_urls":imgARR,"avatar":avatar,"client_id":client_id}
  28. objstr = JSON.stringify(dataOBJ);
  29. console.log(dataOBJ)
  30. alert('資料送出,請稍候')
  31. $.ajax({
  32. url: 'http://www.choozmo.com:8888/make_anchor_video_v2',
  33. //url: 'http://www.choozmo.com:8888/qqreq',
  34. dataType : 'json', // 預期從server接收的資料型態
  35. contentType : 'application/json; charset=utf-8', // 要送到server的資料型態
  36. type: 'post',
  37. data: objstr,
  38. success: function(suc_data) {
  39. alert(suc_data.msg)
  40. },
  41. //data:JSON.stringify({n1:"12",n2:"22"}),
  42. error: function (error) {
  43. alert(error)
  44. }
  45. });
  46. });
  47. var loaded_data = ''
  48. function openNav() {
  49. document.getElementById("mySidenav").style.width = "250px";
  50. document.querySelector('.loader').style.display = "block";
  51. $.get("http://www.choozmo.com:8888/history_input", function(data, status){
  52. console.log(data)
  53. loaded_data = data
  54. for (var obj of data) {
  55. var historyList = document.querySelector('.historyList');
  56. var list = document.createElement('li')
  57. var message = document.createElement('a')
  58. list.classList.add("historyList-item");
  59. message.classList.add("historyList-link");
  60. var content = document.createTextNode(obj.name)
  61. message.id = obj.id
  62. message.setAttribute('href', "#")
  63. message.setAttribute('onclick', "load_data()")
  64. message.appendChild(content)
  65. list.appendChild(message);
  66. historyList.appendChild(list);
  67. }
  68. document.querySelector('.loader').style.display = "none";
  69. });
  70. }
  71. var myModal = new bootstrap.Modal(document.getElementById('history'), {
  72. keyboard: false
  73. })
  74. function closeNav() {
  75. document.getElementById("mySidenav").style.width = "250px";
  76. }
  77. function load_data(){
  78. var title = document.getElementById("title");
  79. var linker = document.getElementById("linker");
  80. myModal.hide()
  81. tid = event.srcElement.id
  82. console.log(tid);
  83. linker.setAttribute('href', loaded_data.find(item => item.id == tid).link)
  84. $("#linker").val(loaded_data.find(item => item.id == tid).link)
  85. $("#linker").show()
  86. $(".title_new").val(loaded_data.find(item => item.id == tid).name)
  87. var step;
  88. for (step = 1; step <= 10; step++) {
  89. $(".txtsrc"+step).val(loaded_data.find(item => item.id == tid).text_content[step-1])
  90. }
  91. var step2;
  92. for (step2 = 1; step2 <= 10; step2++) {
  93. $(".imgsrc"+step2).val(loaded_data.find(item => item.id == tid).image_urls[step2-1])
  94. }
  95. }
  96. var ws = new WebSocket(`ws://www.choozmo.com:8888/progress/${client_id}`);
  97. ws.onmessage = function(event) {
  98. var elem = document.getElementById("myBar");
  99. console.log(event.data)
  100. elem.style.width = event.data + "%";
  101. elem.innerHTML = event.data + "%";
  102. };