develop_Yu há 2 anos atrás
pai
commit
27905f5ed3

BIN
yuri/.DS_Store


BIN
yuri/icon/badge.png


BIN
yuri/icon/example.png


BIN
yuri/icon/icon.ico


BIN
yuri/icon/liff.png


+ 27 - 0
yuri/index.html

@@ -0,0 +1,27 @@
+<!DOCTYPE html>
+<html>
+
+<head>
+  <meta charset="utf-8" />
+  <meta name="viewport" content="width=device-width, initial-scale=1" />
+  <title>MISA 資訊分享</title>
+  <link rel="shortcut icon" href="icon/icon.ico" type="image/x-icon" />
+  <link rel="icon" href="icon/icon.ico" type="image/x-icon" />
+  <link rel="stylesheet" href="/css/style.css">
+</head>
+
+<body>
+  <div id="message">
+    <button id="btnShare" onclick="sendShare()">Share Target Picker</button>
+    <button id="btnLogin" onclick="login()">Log In</button>
+    <button id="btnLogOut" onclick="logOut()">Log Out</button>
+  </div>
+
+  <p id="load">ChoozMo</p>
+  <script src="https://static.line-scdn.net/liff/edge/2/sdk.js"></script>
+  <script src="js/liff-init.js"></script>
+  <script src="js/liff-functions.js"></script>
+  <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
+</body>
+
+</html>

+ 136 - 0
yuri/js/liff-functions.js

@@ -0,0 +1,136 @@
+console.log('load');
+async function sendShare() {
+  const result = await liff.shareTargetPicker([
+    {
+      "type": "flex",
+      "altText": "Flex Message",
+      "contents": {
+        "type": "bubble",
+        "body": {
+          "type": "box",
+          "layout": "vertical",
+          "spacing": "md",
+          "contents": [
+            {
+              "type": "text",
+              "text": "BROWN'S ADVENTURE",
+              "size": "xl",
+              "gravity": "center",
+              "weight": "bold",
+              "wrap": true
+            },
+            {
+              "type": "box",
+              "layout": "vertical",
+              "spacing": "sm",
+              "margin": "lg",
+              "contents": [
+                {
+                  "type": "box",
+                  "layout": "baseline",
+                  "spacing": "sm",
+                  "contents": [
+                    {
+                      "type": "text",
+                      "text": "Date",
+                      "flex": 1,
+                      "size": "sm",
+                      "color": "#AAAAAA"
+                    },
+                    {
+                      "type": "text",
+                      "text": "Monday 25, 9:00PM",
+                      "flex": 4,
+                      "size": "sm",
+                      "color": "#666666",
+                      "wrap": true
+                    }
+                  ]
+                },
+                {
+                  "type": "box",
+                  "layout": "baseline",
+                  "spacing": "sm",
+                  "contents": [
+                    {
+                      "type": "text",
+                      "text": "Place",
+                      "flex": 1,
+                      "size": "sm",
+                      "color": "#AAAAAA"
+                    },
+                    {
+                      "type": "text",
+                      "text": "LINE Thailand",
+                      "flex": 4,
+                      "size": "sm",
+                      "color": "#666666",
+                      "wrap": true
+                    }
+                  ]
+                },
+                {
+                  "type": "box",
+                  "layout": "vertical",
+                  "margin": "xxl",
+                  "contents": [
+                    {
+                      "type": "spacer"
+                    },
+                    {
+                      "type": "image",
+                      "url": "https://scdn.line-apps.com/n/channel_devcenter/img/fx/linecorp_code_withborder.png",
+                      "size": "xl",
+                      "aspectMode": "cover"
+                    },
+                    {
+                      "type": "text",
+                      "text": "You can enter the theater by using this code instead of a ticket",
+                      "margin": "xxl",
+                      "size": "xs",
+                      "color": "#AAAAAA",
+                      "wrap": true
+                    }
+                  ]
+                }
+              ]
+            }
+          ]
+        }
+      }
+    }
+  ])
+  if (result) {
+    alert(`[${result.status}] Message sent!`)
+  } else {
+    const [majorVer, minorVer, patchVer] = (liff.getLineVersion() || "").split('.');
+
+    if (minorVer === undefined) {
+      alert('ShareTargetPicker was canceled in external browser')
+      return
+    }
+
+    if (parseInt(majorVer) >= 10 && parseInt(minorVer) >= 10 && parseInt(patchVer) > 0) {
+      alert('ShareTargetPicker was canceled in LINE app')
+    }
+  }
+}
+function logOut() {
+  liff.logout()
+  window.location.reload()
+}
+function login() {
+  liff.login();
+}
+async function main() {
+  await liff.init({ liffId: "1657798711-YMAv5Nd2" })
+  if (liff.isLoggedIn()) {
+    document.getElementById("btnShare").style.display = "block"
+    if (!liff.isInClient()) {
+      document.getElementById("btnLogOut").style.display = "block"
+    }
+  } else {
+    document.getElementById("btnLogin").style.display = "block"
+  }
+}
+main()

+ 84 - 0
yuri/js/liff-init.js

@@ -0,0 +1,84 @@
+// ----- Configuration Zone! -----
+// Don't forget to change this to your LIFF ID
+
+const liffId = "1657798711-YMAv5Nd2";
+
+// Don't forget to change this to your LIFF ID
+
+liff.init(
+  { liffId: liffId },
+  () => {
+    initLIFF();
+  },
+  err => {
+    window.alert(err);
+  }
+);
+function initLIFF() {
+  if (liff.isLoggedIn()) {
+    liff
+      .getProfile()
+      .then(profile => {
+        document.getElementById("profileImage").src = profile.pictureUrl;
+//        document.getElementById("userId").innerHTML = profile.userId;
+  //      document.getElementById("displayName").innerHTML = profile.displayName;
+  //      document.getElementById("statusMessage").innerHTML =
+    //      profile.statusMessage;
+//        document.getElementById("pictureUrl").href = profile.pictureUrl;
+  //      document.getElementById("pictureUrl").innerHTML = profile.pictureUrl;
+    //    document.getElementById(
+      //    "email"
+      //  ).innerHTML = liff.getDecodedIDToken().email;
+      })
+      .catch(e => {
+      //  document.getElementById("userId").innerHTML = "No data, " + e;
+      //  document.getElementById("displayName").innerHTML = "No data, " + e;
+      //  document.getElementById("statusMessage").innerHTML = "No data, " + e;
+       // document.getElementById("pictureUrl").innerHTML = "No data, " + e;
+        //document.getElementById("email").innerHTML = "No data, " + e;
+      });
+  } else {
+//    document.getElementById("userId").innerHTML = "No data, Login first";
+  //  document.getElementById("displayName").innerHTML = "No data, Login first";
+ //   document.getElementById("statusMessage").innerHTML = "No data, Login first";
+  //  document.getElementById("pictureUrl").innerHTML = "No data, Login first";
+  //  document.getElementById("email").innerHTML = "No data, Login first";
+  }
+
+//  document.getElementById("getOS").innerHTML = liff.getOS();
+  //document.getElementById("getLanguage").innerHTML = liff.getLanguage();
+ // document.getElementById("getVersion").innerHTML = liff.getVersion();
+ // document.getElementById("isInClient").innerHTML = liff.isInClient();
+  //document.getElementById("isLoggedIn").innerHTML = liff.isLoggedIn();
+  var context = liff.getContext();
+  if (context !== null) {
+//    document.getElementById("context_type").innerHTML = context.type;
+ //   document.getElementById("context_viewType").innerHTML = context.viewType;
+  //  document.getElementById("context_userId").innerHTML = context.userId;
+    if (context.utouId) {
+//      document.getElementById("context_utouId").innerHTML = context.utouId;
+    } else {
+ //     document.getElementById("context_utouId").innerHTML =
+  //      "You are not in the utou";
+    }
+    if (context.roomId) {
+//      document.getElementById("context_roomId").innerHTML = context.roomId;
+    } else {
+ //     document.getElementById("context_roomId").innerHTML =
+  //      "You are not in the room";
+    }
+    if (context.groupId) {
+  //    document.getElementById("context_groupId").innerHTML = context.groupId;
+    } else {
+  //    document.getElementById("context_groupId").innerHTML =
+   //     "You are not in the group ";
+    }
+  } else {
+ //   document.getElementById("context_type").innerHTML = "No data.";
+  //  document.getElementById("context_viewType").innerHTML = "No data.";
+   // document.getElementById("context_userId").innerHTML = "No data.";
+   // document.getElementById("context_utouId").innerHTML = "No data.";
+    //document.getElementById("context_roomId").innerHTML = "No data.";
+   // document.getElementById("context_groupId").innerHTML = "No data.";
+  }
+}