123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- 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()
|