goto.js 10 KB

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