goto.js 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  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. var collectuserid = ''; // test
  20. // 收藏頁面
  21. function collection(collectuserid='') {
  22. console.log('Call collection(' + collectuserid + ')'); // test
  23. $.ajax({
  24. method: "GET",
  25. url: "https://ark.cards:8228/collection/" + collectuserid + "",
  26. dataType: "json",
  27. })
  28. .done(function (msg) {
  29. console.log(msg);
  30. // console.log(Object.keys(msg).length);
  31. let msgLen = Object.keys(msg).length;
  32. console.log(msgLen);
  33. var collectcontent = '';
  34. if (msg[0].id == undefined) {
  35. collectcontent += '<p>' + msg + '</p>';
  36. } else {
  37. for (var i = 0; i < msgLen; i++) {
  38. collectcontent += '\
  39. <div class="collectcontent col">\
  40. <input style="display: none;" type="checkbox" value="'+ msg[i].id + '" name="nftid" id="' + msg[i].id + '">\
  41. <label for="'+ msg[i].id + '">\
  42. <div class="collectcard card h-100">\
  43. <a target="_blank">\
  44. <img src="'+ msg[i].imgurl + '"class="card-img-top" alt="...">\
  45. </a>\
  46. <div class="card-body p-2">\
  47. <a target="_blank">\
  48. <h5 class="card-title pt-3">'+ msg[i].title + '</h5>\
  49. </a>\
  50. <p class="card-text">\
  51. '+ msg[i].context + ' \
  52. </p>\
  53. <p class="card-text row">\
  54. <small class="text-muted col-6 px-1">\
  55. <img class="mb-1 mx-1 d-inline" style="width: 10px; object-fit: cover; "\
  56. src="./img/sec05/Icon awesome-ethereum.png" alt=""><span>'+ msg[i].cost + '</span>\
  57. </small>\
  58. <small class="price col-6 px-0 text-center">\
  59. <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>\
  60. </p>\
  61. </div>\
  62. </div>\
  63. </label>\
  64. </div>';
  65. }
  66. }
  67. $('.sec05-moblie-container').html(collectcontent);
  68. });
  69. }
  70. // 購買頁面
  71. function shop(collectuserid='') {
  72. console.log('Call shop(' + collectuserid + ')'); // test
  73. $.ajax({
  74. method: "GET",
  75. url: "https://ark.cards:8228/shop/" + collectuserid + "",
  76. // url: "https://ark.cards:8228/shop/Uf161c92b16f84357987a78c2b4b47719",
  77. dataType: "json",
  78. })
  79. .done(function (msg) {
  80. console.log(msg);
  81. // console.log(Object.keys(msg).length);
  82. let msgLen = Object.keys(msg).length;
  83. console.log(msgLen);
  84. var nftmall = '';
  85. var buybox = "";
  86. for (var i = 0; i < msgLen; i++) {
  87. nftmall += '\
  88. <div class="nftmall col">\
  89. <input style="display:none" type="checkbox" value="'+ msg[i].id + '" name="nftid" class="nftname" id="' + msg[i].id + '">\
  90. <label for="'+ msg[i].id + '">\
  91. <div class="collectcard card h-100">\
  92. <a target="_blank">\
  93. <img src="'+ msg[i].imgurl + '"class="card-img-top" alt="...">\
  94. </a>\
  95. <div class="card-body p-2">\
  96. <a target="_blank">\
  97. <h5 class="card-title pt-3">'+ msg[i].title + '</h5>\
  98. </a>\
  99. <p class="card-text">\
  100. '+ msg[i].context + ' \
  101. </p>\
  102. <p class="card-text row">\
  103. <small class="text-muted col-6 px-1">\
  104. <img class="mb-1 mx-1 d-inline" style="width: 10px; object-fit: cover; "\
  105. src="./img/sec05/Icon awesome-ethereum.png" alt=""><span>'+ msg[i].cost + '</span>\
  106. </small>\
  107. <small class="price col-6 px-0 text-center">\
  108. <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>\
  109. </p>\
  110. </div>\
  111. </div>\
  112. </label>\
  113. </div>';
  114. }
  115. buybox += '\
  116. <div class="p-2">\
  117. <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>\
  118. <div class="text-end px-2">\
  119. <p class="text-start text-white mb-2">※一次只能購買一則NFT收藏品</p>\
  120. <button type="button" style="border:1px solid #fff; border-radius: 30px;" class="close btn text-white px-3">取消</button>\
  121. <input style="border-radius: 30px; background:#fff; border: none;" class="send-btn px-3 ms-1 py-2" type="submit" value="購買">\
  122. </div>\
  123. </div>\
  124. </div>';
  125. $('.sec06-nft-mall').html(nftmall);
  126. $('.buybox').html(buybox);
  127. });
  128. }
  129. // Qrcode頁面
  130. function get_data(collectuserid='') {
  131. console.log('Call get_data(' + collectuserid + ')'); // test
  132. $.ajax({
  133. method: "GET",
  134. url: "https://ark.cards:8228/receive/" + collectuserid + "",
  135. // url:"https://api.ptt.cx:8228/receive/Uf161c92b16f84357987a78c2b4b47719",
  136. dataType: "json",
  137. })
  138. .done(function (msg) {
  139. console.log(msg);
  140. console.log(msg.base)
  141. var Qrcodeimg = '';
  142. var useraddress = '';
  143. Qrcodeimg += '\
  144. <img src="'+ msg.base + '" alt="">\
  145. ';
  146. useraddress += '\
  147. '+ msg.useraddress + '\
  148. ';
  149. $('#Qrcode').html(Qrcodeimg);
  150. $('#copy').html(useraddress);
  151. });
  152. }
  153. $(document).ready(function () {
  154. // 收藏頁面
  155. collection(collectuserid);
  156. // 購買頁面
  157. shop(collectuserid);
  158. // Qrcode頁面
  159. get_data(collectuserid);
  160. });
  161. $(".buybox").hide();
  162. $(document).on("click", ".nftmall", function (event) {
  163. $(".buybox").show(500);
  164. $(this).addClass("select");
  165. $(".select").siblings().removeClass('select');
  166. });
  167. $(document).on("click", ".close", function (event) {
  168. // $(this).siblings('.collectcard').removeClass('select');
  169. $(".buybox").hide(500);
  170. $(".nftmall").removeClass("select");
  171. $(".nftname").prop("checked", false);
  172. });
  173. $.fn.serializeObject = function () {
  174. var o = {};
  175. var a = this.serializeArray();
  176. // o["id"] = 0;
  177. // o["time_stamp"] = "";
  178. $.each(a, function () {
  179. if (o[this.name]) {
  180. if (!o[this.name].push) {
  181. o[this.name] = [o[this.name]];
  182. }
  183. o[this.name].push(this.value || '');
  184. } else {
  185. o[this.name] = this.value || '';
  186. }
  187. });
  188. return o;
  189. };
  190. $(".collect-send").submit(function (e) {
  191. /* var formRef = $('#form1').serializeArray();
  192. var jsonString = JSON.stringify(formRef);*/
  193. var jsonInfo = $('.collect-send').serializeObject();
  194. var jsonString = JSON.stringify(jsonInfo);
  195. console.log(jsonString),
  196. $.ajax({
  197. type: 'POST',
  198. url: 'https://ark.cards:8228/send',
  199. data: jsonString,
  200. dataType: 'json',
  201. success: function (data) {
  202. console.log('送出成功: ' + data);
  203. alert("送出成功");
  204. // location.reload();
  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. }