Browse Source

add line init

huai-sian 3 years ago
parent
commit
3a223ca3bc
2 changed files with 23 additions and 16 deletions
  1. 16 16
      ArkCard-web/collect.html
  2. 7 0
      ArkCard-web/goto.js

+ 16 - 16
ArkCard-web/collect.html

@@ -338,6 +338,7 @@
         <div style="background: #484848;position: fixed; bottom:0px; z-index: 20;" class="sendbox w-100 pt-2">
             <div class="p-2">
                 <input type="number" name="amount" id="number" placeholder="請輸入數量" class="p-2 w-100 mb-3" style="border-radius: 10px; border:none;" required>
+                <p class="text-error text-white mb-2"></p>
                 <input id="address" style="border-radius: 10px; border:none;" class="p-2 w-100 mb-3" type="text" name="address" placeholder="請輸入您要發送的地址" required>
                 <div class="text-end px-2">
                     <p class="text-start text-white mb-2">※ 一次只能發送一則NFT收藏品</p>
@@ -379,25 +380,24 @@ $(document).ready(function () {
         liffId: "1656404434-gJ0Nzy1Y"
     })
     .then(() => {
-        // var context = liff.getContext();
-        // console.log(context);
+        var context = liff.getContext();
+        console.log(context);
 
-        // var profile = liff.getProfile();
-        // console.log(profile);
+        var profile = liff.getProfile();
+        console.log(profile);
 
-        // // login
-        // if (!liff.isLoggedIn()) {
-        //     console.log("您未登入");
-        //     console.log('context.userId = ' + context.userId); // test
-        //     liff.login({ redirectUri: "https://ark.cards/collect.html?"+context.userId });  // test
-        //     //liff.login({ redirectUri: "https://liff.line.me/1656404434-gJ0Nzy1Y?"+context.userId });  // test
-        // } else {
-        //     console.log("您已登入");
-        // }  
+        // login
+        if (!liff.isLoggedIn()) {
+            console.log("您未登入");
+            console.log('context.userId = ' + context.userId); // test
+            liff.login({ redirectUri: "https://ark.cards/collect.html?"+context.userId });  // test
+            //liff.login({ redirectUri: "https://liff.line.me/1656404434-gJ0Nzy1Y?"+context.userId });  // test
+        } else {
+            console.log("您已登入");
+        }  
         
-        // // 收藏頁面
-        // collection(context.userId);
-        collection('0x2fcdf2dff554dbb4a4c08713b9f228813d65e637');
+        // 收藏頁面
+        collection(context.userId);
     })
     .catch((err) => {
         console.log('初始化失敗: ' + err.code + ", " + err.message);

+ 7 - 0
ArkCard-web/goto.js

@@ -231,6 +231,13 @@ $.fn.serializeObject = function () {
 $(".collect-send").submit(function (e) {
   var nftuid = $("input[name='nftid']:checked").val();
   var amount = $("input[name='amount']").val();
+  if(amount > $("input[name='nftid']:checked").data('amount') || !amount) {
+    console.log('over');
+    $('.text-error').text('請輸入合適購買數量');
+    return
+  } else {
+    $('.text-error').text('');
+  }
   var address = $('#address').val();
   console.log(amount);
   var data = `{"nftuid": ${nftuid}, "to": "${address}", "userid": "${userId}", "amount": ${amount}}`;