goto.js 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. // $('.sec05-moblie-container').slick({
  2. // arrows: false,
  3. // slidesToShow: 1,
  4. // slidesToScroll: 1,
  5. // infinite: false,
  6. // centerMode: true,
  7. // });
  8. $(".sendbox").hide();
  9. $(document).on("click", ".collectcontent", function (event) {
  10. $(".sendbox").show(500);
  11. $(this).addClass("select");
  12. $(".select").siblings().removeClass('select');
  13. });
  14. $(document).on("click", ".close", function (event) {
  15. // $(this).siblings('.collectcard').removeClass('select');
  16. $(".sendbox").hide(500);
  17. $(".collectcontent").removeClass("select");
  18. });
  19. // 收藏頁面
  20. function collection(collectuserid='') {
  21. console.log('Call collection(' + collectuserid + ')'); // test
  22. $.ajax({
  23. method: "GET",
  24. url: "https://ark.cards:8228/collection/" + collectuserid + "",
  25. dataType: "json",
  26. })
  27. .done(function (msg) {
  28. console.log(msg);
  29. // console.log(Object.keys(msg).length);
  30. let msgLen = Object.keys(msg).length;
  31. console.log(msgLen);
  32. var collectcontent = '';
  33. if (msg[0].id == undefined) {
  34. collectcontent += '<p>' + msg + '</p>';
  35. } else {
  36. for (var i = 0; i < msgLen; i++) {
  37. collectcontent += '\
  38. <div class="collectcontent col">\
  39. <input style="display: none;" type="checkbox" value="'+ msg[i].id + '" name="nftid" id="' + msg[i].id + '">\
  40. <label for="'+ msg[i].id + '">\
  41. <div class="collectcard card h-100">\
  42. <a target="_blank">\
  43. <img src="'+ msg[i].imgurl + '"class="card-img-top" alt="...">\
  44. </a>\
  45. <div class="card-body p-2">\
  46. <a target="_blank">\
  47. <h5 class="card-title pt-3">'+ msg[i].title + '</h5>\
  48. </a>\
  49. <p class="card-text">\
  50. '+ msg[i].context + ' \
  51. </p>\
  52. <p class="card-text row">\
  53. <small class="text-muted col-6 px-1">\
  54. <img class="mb-1 mx-1 d-inline" style="width: 10px; object-fit: cover; "\
  55. src="./img/sec05/Icon awesome-ethereum.png" alt=""><span>'+ msg[i].cost + '</span>\
  56. </small>\
  57. <small class="price col-6 px-0 text-center">\
  58. <img class="mb-1 mx-1 d-inline" style="width: 12px; object-fit: cover; " src="./img/sec05/like.png" alt=""><span>'+ msg[i].likes + '</span></small>\
  59. </p>\
  60. </div>\
  61. </div>\
  62. </label>\
  63. </div>';
  64. }
  65. }
  66. $('.sec05-moblie-container').html(collectcontent);
  67. });
  68. }
  69. // 購買頁面
  70. function shop(collectuserid='') {
  71. console.log('Call shop(' + collectuserid + ')'); // test
  72. $.ajax({
  73. method: "GET",
  74. url: "https://ark.cards:8228/shop/" + collectuserid + "",
  75. // url: "https://ark.cards:8228/shop/Uf161c92b16f84357987a78c2b4b47719",
  76. dataType: "json",
  77. })
  78. .done(function (msg) {
  79. console.log(msg);
  80. // console.log(Object.keys(msg).length);
  81. let msgLen = Object.keys(msg).length;
  82. console.log(msgLen);
  83. var nftmall = '';
  84. var buybox = "";
  85. for (var i = 0; i < msgLen; i++) {
  86. nftmall += '\
  87. <div class="nftmall col">\
  88. <input style="display:none" type="checkbox" value="'+ msg[i].id + '" name="nftid" class="nftname" id="' + msg[i].id + '">\
  89. <label for="'+ msg[i].id + '">\
  90. <div class="collectcard card h-100">\
  91. <a target="_blank">\
  92. <img src="'+ msg[i].imgurl + '"class="card-img-top" alt="...">\
  93. </a>\
  94. <div class="card-body p-2">\
  95. <a target="_blank">\
  96. <h5 class="card-title pt-3">'+ msg[i].title + '</h5>\
  97. </a>\
  98. <p class="card-text">\
  99. '+ msg[i].context + ' \
  100. </p>\
  101. <p class="card-text row">\
  102. <small class="text-muted col-6 px-1">\
  103. <img class="mb-1 mx-1 d-inline" style="width: 10px; object-fit: cover; "\
  104. src="./img/sec05/Icon awesome-ethereum.png" alt=""><span>'+ msg[i].cost + '</span>\
  105. </small>\
  106. <small class="price col-6 px-0 text-center">\
  107. <img class="mb-1 mx-1 d-inline" style="width: 12px; object-fit: cover; " src="./img/sec05/like.png" alt=""><span>'+ msg[i].likes + '</span></small>\
  108. </p>\
  109. </div>\
  110. </div>\
  111. </label>\
  112. </div>';
  113. }
  114. buybox += '\
  115. <div class="p-2">\
  116. <input style="border-radius: 10px; border:none; display: none;" class="p-2 w-100 mb-3" type="text" name="userid" value="' + collectuserid + '" placeholder="請輸入您的userid" required>\
  117. <div class="text-end px-2">\
  118. <p class="text-start text-white mb-2">※一次只能購買一則NFT收藏品</p>\
  119. <button type="button" style="border:1px solid #fff; border-radius: 30px;" class="close btn text-white px-3">取消</button>\
  120. <input style="border-radius: 30px; background:#fff; border: none;" class="send-btn px-3 ms-1 py-2" type="submit" value="購買">\
  121. </div>\
  122. </div>\
  123. </div>';
  124. $('.sec06-nft-mall').html(nftmall);
  125. $('.buybox').html(buybox);
  126. });
  127. }
  128. // Qrcode頁面
  129. function get_data(collectuserid='') {
  130. console.log('Call get_data(' + collectuserid + ')'); // test
  131. $.ajax({
  132. method: "GET",
  133. url: "https://ark.cards:8228/receive/" + collectuserid + "",
  134. // url:"https://api.ptt.cx:8228/receive/Uf161c92b16f84357987a78c2b4b47719",
  135. dataType: "json",
  136. })
  137. .done(function (msg) {
  138. console.log(msg);
  139. var Qrcodeimg = '';
  140. var useraddress = '';
  141. Qrcodeimg += '\
  142. <img class="img-fluid" src="./qrcode/'+ collectuserid + '.png" alt="">\
  143. ';
  144. useraddress += '\
  145. '+ msg.useraddress + '\
  146. ';
  147. $('#Qrcode').html(Qrcodeimg);
  148. $('#copy').html(useraddress);
  149. });
  150. }
  151. // $(document).ready(function () {
  152. // // 收藏頁面
  153. // collection(collectuserid);
  154. // // 購買頁面
  155. // shop(collectuserid);
  156. // // Qrcode頁面
  157. // get_data(collectuserid);
  158. // });
  159. $(".buybox").hide();
  160. $(document).on("click", ".nftmall", function (event) {
  161. $(".buybox").show(500);
  162. $(this).addClass("select");
  163. $(".select").siblings().removeClass('select');
  164. });
  165. $(document).on("click", ".close", function (event) {
  166. // $(this).siblings('.collectcard').removeClass('select');
  167. $(".buybox").hide(500);
  168. $(".nftmall").removeClass("select");
  169. $(".nftname").prop("checked", false);
  170. });
  171. $.fn.serializeObject = function () {
  172. var o = {};
  173. var a = this.serializeArray();
  174. // o["id"] = 0;
  175. // o["time_stamp"] = "";
  176. $.each(a, function () {
  177. if (o[this.name]) {
  178. if (!o[this.name].push) {
  179. o[this.name] = [o[this.name]];
  180. }
  181. o[this.name].push(this.value || '');
  182. } else {
  183. o[this.name] = this.value || '';
  184. }
  185. });
  186. return o;
  187. };
  188. // 確定發送按鈕處理
  189. $(".collect-send").submit(function (e) {
  190. /* var formRef = $('#form1').serializeArray();
  191. var jsonString = JSON.stringify(formRef);*/
  192. var jsonInfo = $('.collect-send').serializeObject();
  193. var jsonString = JSON.stringify(jsonInfo);
  194. console.log(jsonString),
  195. $.ajax({
  196. type: 'POST',
  197. url: 'https://ark.cards:8228/send',
  198. data: jsonString,
  199. dataType: 'json',
  200. async: false,
  201. success: function (data) {
  202. console.log('送出成功: ' + JSON.stringify(data));
  203. alert("送出成功");
  204. window.location.href = "collect.html";
  205. },
  206. beforeSend: function () {
  207. console.log('beforeSend');
  208. },
  209. complete: function () {
  210. console.log('complete');
  211. },
  212. error: function (jqXHR, textStatus, errorThrown) {
  213. console.log(JSON.stringify(jqXHR));
  214. console.log("AJAX errr: " + textStatus + ' : ' + errorThrown);
  215. console.log('送出失敗: ' + jqXHR.responseText);
  216. }
  217. });
  218. return false;
  219. });
  220. $(".nft-buy").submit(function (e) {
  221. /* var formRef = $('#form1').serializeArray();
  222. var jsonString = JSON.stringify(formRef);*/
  223. var jsonInfo = $('.nft-buy').serializeObject();
  224. var jsonString = JSON.stringify(jsonInfo);
  225. console.log(jsonString),
  226. $.ajax({
  227. type: 'POST',
  228. url: 'https://ark.cards:8228/buy',
  229. data: jsonString,
  230. dataType: 'json',
  231. success: function (data) {
  232. console.log('購買成功: ' + data);
  233. alert("購買成功");
  234. location.reload();
  235. },
  236. beforeSend: function () {
  237. console.log('beforeSend');
  238. },
  239. complete: function () {
  240. console.log('complete');
  241. },
  242. error: function (jqXHR, textStatus, errorThrown) {
  243. console.log(JSON.stringify(jqXHR));
  244. console.log("AJAX errr: " + textStatus + ' : ' + errorThrown);
  245. console.log('送出失敗: ' + jqXHR.responseText);
  246. }
  247. });
  248. return false;
  249. });
  250. function copyEvent(id) {
  251. var str = document.getElementById(id);
  252. window.getSelection().selectAllChildren(str);
  253. document.execCommand("Copy")
  254. toastr.options = {
  255. // 參數設定[註1]
  256. "closeButton": false, // 顯示關閉按鈕
  257. "debug": false, // 除錯
  258. "newestOnTop": false, // 最新一筆顯示在最上面
  259. "progressBar": false, // 顯示隱藏時間進度條
  260. "positionClass": "toast-top-center", // 位置的類別
  261. "preventDuplicates": false, // 隱藏重覆訊息
  262. "onclick": null, // 當點選提示訊息時,則執行此函式
  263. "showDuration": "300", // 顯示時間(單位: 毫秒)
  264. "hideDuration": "1000", // 隱藏時間(單位: 毫秒)
  265. "timeOut": "1000", // 當超過此設定時間時,則隱藏提示訊息(單位: 毫秒)
  266. "extendedTimeOut": "1000", // 當使用者觸碰到提示訊息時,離開後超過此設定時間則隱藏提示訊息(單位: 毫秒)
  267. "showEasing": "swing", // 顯示動畫時間曲線
  268. "hideEasing": "linear", // 隱藏動畫時間曲線
  269. "showMethod": "fadeIn", // 顯示動畫效果
  270. "hideMethod": "fadeOut" // 隱藏動畫效果
  271. }
  272. toastr.success("複製成功");
  273. }