liff-functions.js 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. function getProfile() {
  2. liff
  3. .getProfile()
  4. .then(profile => {
  5. console.log(JSON.stringify(profile));
  6. window.alert(JSON.stringify(profile));
  7. })
  8. .catch(e => {
  9. console.log(e);
  10. window.alert(e);
  11. });
  12. }
  13. function getAccessToken() {
  14. window.alert(liff.getAccessToken());
  15. }
  16. function getContext() {
  17. window.alert(JSON.stringify(liff.getContext()));
  18. }
  19. function sendMessage() {
  20. liff
  21. .sendMessages([{ type: "text", text: "中文測試 Hello from LIFF2.0" }])
  22. .then(() => {
  23. window.alert("Message has been sent");
  24. })
  25. .catch(e => {
  26. window.alert(e);
  27. });
  28. }
  29. function login() {
  30. liff.login();
  31. }
  32. function scanCode() {
  33. liff
  34. .scanCode()
  35. .then(result => {
  36. window.alert(JSON.stringify(result));
  37. })
  38. .catch(e => {
  39. window.alert(e);
  40. });
  41. }
  42. function openWindow() {
  43. liff.openWindow({
  44. url: "https://sirateek.me",
  45. external: true
  46. });
  47. }
  48. function closeWindow() {
  49. liff.closeWindow();
  50. }
  51. function logout() {
  52. if (liff.isLoggedIn()) {
  53. liff.logout();
  54. window.alert("Successfully to Logout");
  55. location.reload();
  56. }
  57. }
  58. function createFlexMessageData() {
  59. var myFlexContent =
  60. {
  61. "type": "bubble",
  62. "styles": {
  63. "footer": {
  64. "backgroundColor": "#42b3f4"
  65. }
  66. },
  67. "header": {
  68. "type": "box",
  69. "layout": "horizontal",
  70. "contents": [
  71. {
  72. "type": "box",
  73. "layout": "baseline",
  74. "contents": [
  75. {
  76. "type": "icon",
  77. "size": "xxl",
  78. "url": "https://scontent.fbkk7-2.fna.fbcdn.net/v/t1.0-1/p200x200/22814542_1962234637127047_1607260544847069468_n.png?_nc_cat=0&oh=2a303227c24dfab9e71a405b6d594d50&oe=5BC3965D"
  79. }
  80. ]
  81. },
  82. {
  83. "type": "box",
  84. "layout": "vertical",
  85. "flex": 5,
  86. "contents": [
  87. {
  88. "type": "text",
  89. "text": "โรงพยาบาลอ่างทอง",
  90. "weight": "bold",
  91. "color": "#aaaaaa",
  92. "size": "md",
  93. "gravity": "top"
  94. },
  95. {
  96. "type": "text",
  97. "text": "ขอขอบพระคุณ",
  98. "weight": "bold",
  99. "color": "#aaaaaa",
  100. "size": "lg",
  101. "gravity": "top"
  102. }
  103. ]
  104. }
  105. ]
  106. },
  107. "hero": {
  108. "type": "image",
  109. "url": "https://scontent.fbkk7-2.fna.fbcdn.net/v/t1.0-9/35076722_2227987830551725_330757188106584064_n.jpg?_nc_cat=0&oh=0f5fa137c5bd65f109a40439afcd59eb&oe=5BB566B6",
  110. "size": "full",
  111. "aspectRatio": "16:9",
  112. "aspectMode": "cover",
  113. "action": {
  114. "type": "uri",
  115. "uri": "http://bit.ly/2JGBRKv"
  116. }
  117. },
  118. "body": {
  119. "type": "box",
  120. "layout": "vertical",
  121. "contents": [
  122. {
  123. "type": "text",
  124. "margin": "sm",
  125. "text": "คุณกานต์สินี ไหลสงวนงาม",
  126. "weight": "bold",
  127. "size": "md",
  128. "wrap": true
  129. },
  130. {
  131. "type": "box",
  132. "layout": "vertical",
  133. "margin": "xs",
  134. "contents": [
  135. {
  136. "type": "box",
  137. "layout": "baseline",
  138. "spacing": "sm",
  139. "contents": [
  140. {
  141. "type": "text",
  142. "text": "บริจาคเงินจำนวน ๑๘๐,๐๐๐ บาท เพื่อซื้อครุภัณฑ์ทางการแพทย์ ใช้ในโรงพยาบาลอ่างทอง โดยมีนายแพทย์พงษ์นรินทร์ ชาติรังสรรค์ผู้อำนวยการโรงพยาบาลอ่างทอง เป็นผู้รับมอบ",
  143. "wrap": true,
  144. "color": "#666666",
  145. "size": "sm",
  146. "flex": 6
  147. }
  148. ]
  149. }
  150. ]
  151. },
  152. {
  153. "type": "text",
  154. "margin": "md",
  155. "text": "วันที่ 12 มิ.ย. 2561",
  156. "size": "sm",
  157. "color": "#adadad"
  158. }
  159. ]
  160. },
  161. "footer": {
  162. "type": "box",
  163. "layout": "vertical",
  164. "spacing": "sm",
  165. "contents": [
  166. {
  167. "type": "button",
  168. "style": "link",
  169. "color": "#FFFFFF",
  170. "height": "sm",
  171. "action": {
  172. "type": "uri",
  173. "label": "อ่านต่อ...",
  174. "uri": "http://bit.ly/2JGBRKv"
  175. }
  176. }
  177. ]
  178. }
  179. };
  180. var flex = {
  181. "type": "flex",
  182. "altText": 'title',
  183. "contents": myFlexContent,
  184. };
  185. return flex;
  186. }
  187. function shareTargetPicker() {
  188. liff
  189. .shareTargetPicker([
  190. createFlexMessageData()
  191. ])
  192. .then(() => {
  193. alert("Shared to the friend(s) you picked");
  194. })
  195. .catch(function(res) {
  196. alert(res);
  197. });
  198. }