liff-functions.js 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. console.log('load');
  2. async function sendShare() {
  3. const result = await liff.shareTargetPicker([
  4. {
  5. "type": "flex",
  6. "altText": "Flex Message",
  7. "contents": {
  8. "type": "bubble",
  9. "body": {
  10. "type": "box",
  11. "layout": "vertical",
  12. "spacing": "md",
  13. "contents": [
  14. {
  15. "type": "text",
  16. "text": "BROWN'S ADVENTURE",
  17. "size": "xl",
  18. "gravity": "center",
  19. "weight": "bold",
  20. "wrap": true
  21. },
  22. {
  23. "type": "box",
  24. "layout": "vertical",
  25. "spacing": "sm",
  26. "margin": "lg",
  27. "contents": [
  28. {
  29. "type": "box",
  30. "layout": "baseline",
  31. "spacing": "sm",
  32. "contents": [
  33. {
  34. "type": "text",
  35. "text": "Date",
  36. "flex": 1,
  37. "size": "sm",
  38. "color": "#AAAAAA"
  39. },
  40. {
  41. "type": "text",
  42. "text": "Monday 25, 9:00PM",
  43. "flex": 4,
  44. "size": "sm",
  45. "color": "#666666",
  46. "wrap": true
  47. }
  48. ]
  49. },
  50. {
  51. "type": "box",
  52. "layout": "baseline",
  53. "spacing": "sm",
  54. "contents": [
  55. {
  56. "type": "text",
  57. "text": "Place",
  58. "flex": 1,
  59. "size": "sm",
  60. "color": "#AAAAAA"
  61. },
  62. {
  63. "type": "text",
  64. "text": "LINE Thailand",
  65. "flex": 4,
  66. "size": "sm",
  67. "color": "#666666",
  68. "wrap": true
  69. }
  70. ]
  71. },
  72. {
  73. "type": "box",
  74. "layout": "vertical",
  75. "margin": "xxl",
  76. "contents": [
  77. {
  78. "type": "spacer"
  79. },
  80. {
  81. "type": "image",
  82. "url": "https://scdn.line-apps.com/n/channel_devcenter/img/fx/linecorp_code_withborder.png",
  83. "size": "xl",
  84. "aspectMode": "cover"
  85. },
  86. {
  87. "type": "text",
  88. "text": "You can enter the theater by using this code instead of a ticket",
  89. "margin": "xxl",
  90. "size": "xs",
  91. "color": "#AAAAAA",
  92. "wrap": true
  93. }
  94. ]
  95. }
  96. ]
  97. }
  98. ]
  99. }
  100. }
  101. }
  102. ])
  103. if (result) {
  104. alert(`[${result.status}] Message sent!`)
  105. } else {
  106. const [majorVer, minorVer, patchVer] = (liff.getLineVersion() || "").split('.');
  107. if (minorVer === undefined) {
  108. alert('ShareTargetPicker was canceled in external browser')
  109. return
  110. }
  111. if (parseInt(majorVer) >= 10 && parseInt(minorVer) >= 10 && parseInt(patchVer) > 0) {
  112. alert('ShareTargetPicker was canceled in LINE app')
  113. }
  114. }
  115. }
  116. function logOut() {
  117. liff.logout()
  118. window.location.reload()
  119. }
  120. function login() {
  121. liff.login();
  122. }
  123. async function main() {
  124. await liff.init({ liffId: "1657798711-YMAv5Nd2" })
  125. if (liff.isLoggedIn()) {
  126. document.getElementById("btnShare").style.display = "block"
  127. if (!liff.isInClient()) {
  128. document.getElementById("btnLogOut").style.display = "block"
  129. }
  130. } else {
  131. document.getElementById("btnLogin").style.display = "block"
  132. }
  133. }
  134. main()