goto.js 9.7 KB

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