liff-functions.js 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  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 shareTargetPicker() {
  59. liff
  60. .shareTargetPicker([
  61. {
  62. "type": "carousel",
  63. "contents": [
  64. {
  65. "type": "bubble",
  66. "size": "nano",
  67. "header": {
  68. "type": "box",
  69. "layout": "vertical",
  70. "contents": [
  71. {
  72. "type": "text",
  73. "text": "In Progress",
  74. "color": "#ffffff",
  75. "align": "start",
  76. "size": "md",
  77. "gravity": "center"
  78. },
  79. {
  80. "type": "text",
  81. "text": "70%",
  82. "color": "#ffffff",
  83. "align": "start",
  84. "size": "xs",
  85. "gravity": "center",
  86. "margin": "lg"
  87. },
  88. {
  89. "type": "box",
  90. "layout": "vertical",
  91. "contents": [
  92. {
  93. "type": "box",
  94. "layout": "vertical",
  95. "contents": [
  96. {
  97. "type": "filler"
  98. }
  99. ],
  100. "width": "70%",
  101. "backgroundColor": "#0D8186",
  102. "height": "6px"
  103. }
  104. ],
  105. "backgroundColor": "#9FD8E36E",
  106. "height": "6px",
  107. "margin": "sm"
  108. }
  109. ],
  110. "backgroundColor": "#27ACB2",
  111. "paddingTop": "19px",
  112. "paddingAll": "12px",
  113. "paddingBottom": "16px"
  114. },
  115. "body": {
  116. "type": "box",
  117. "layout": "vertical",
  118. "contents": [
  119. {
  120. "type": "box",
  121. "layout": "horizontal",
  122. "contents": [
  123. {
  124. "type": "text",
  125. "text": "Buy milk and lettuce before class",
  126. "color": "#8C8C8C",
  127. "size": "sm",
  128. "wrap": true
  129. }
  130. ],
  131. "flex": 1
  132. }
  133. ],
  134. "spacing": "md",
  135. "paddingAll": "12px"
  136. },
  137. "styles": {
  138. "footer": {
  139. "separator": false
  140. }
  141. }
  142. },
  143. {
  144. "type": "bubble",
  145. "size": "nano",
  146. "header": {
  147. "type": "box",
  148. "layout": "vertical",
  149. "contents": [
  150. {
  151. "type": "text",
  152. "text": "Pending",
  153. "color": "#ffffff",
  154. "align": "start",
  155. "size": "md",
  156. "gravity": "center"
  157. },
  158. {
  159. "type": "text",
  160. "text": "30%",
  161. "color": "#ffffff",
  162. "align": "start",
  163. "size": "xs",
  164. "gravity": "center",
  165. "margin": "lg"
  166. },
  167. {
  168. "type": "box",
  169. "layout": "vertical",
  170. "contents": [
  171. {
  172. "type": "box",
  173. "layout": "vertical",
  174. "contents": [
  175. {
  176. "type": "filler"
  177. }
  178. ],
  179. "width": "30%",
  180. "backgroundColor": "#DE5658",
  181. "height": "6px"
  182. }
  183. ],
  184. "backgroundColor": "#FAD2A76E",
  185. "height": "6px",
  186. "margin": "sm"
  187. }
  188. ],
  189. "backgroundColor": "#FF6B6E",
  190. "paddingTop": "19px",
  191. "paddingAll": "12px",
  192. "paddingBottom": "16px"
  193. },
  194. "body": {
  195. "type": "box",
  196. "layout": "vertical",
  197. "contents": [
  198. {
  199. "type": "box",
  200. "layout": "horizontal",
  201. "contents": [
  202. {
  203. "type": "text",
  204. "text": "Wash my car",
  205. "color": "#8C8C8C",
  206. "size": "sm",
  207. "wrap": true
  208. }
  209. ],
  210. "flex": 1
  211. }
  212. ],
  213. "spacing": "md",
  214. "paddingAll": "12px"
  215. },
  216. "styles": {
  217. "footer": {
  218. "separator": false
  219. }
  220. }
  221. },
  222. {
  223. "type": "bubble",
  224. "size": "nano",
  225. "header": {
  226. "type": "box",
  227. "layout": "vertical",
  228. "contents": [
  229. {
  230. "type": "text",
  231. "text": "In Progress",
  232. "color": "#ffffff",
  233. "align": "start",
  234. "size": "md",
  235. "gravity": "center"
  236. },
  237. {
  238. "type": "text",
  239. "text": "100%",
  240. "color": "#ffffff",
  241. "align": "start",
  242. "size": "xs",
  243. "gravity": "center",
  244. "margin": "lg"
  245. },
  246. {
  247. "type": "box",
  248. "layout": "vertical",
  249. "contents": [
  250. {
  251. "type": "box",
  252. "layout": "vertical",
  253. "contents": [
  254. {
  255. "type": "filler"
  256. }
  257. ],
  258. "width": "100%",
  259. "backgroundColor": "#7D51E4",
  260. "height": "6px"
  261. }
  262. ],
  263. "backgroundColor": "#9FD8E36E",
  264. "height": "6px",
  265. "margin": "sm"
  266. }
  267. ],
  268. "backgroundColor": "#A17DF5",
  269. "paddingTop": "19px",
  270. "paddingAll": "12px",
  271. "paddingBottom": "16px"
  272. },
  273. "body": {
  274. "type": "box",
  275. "layout": "vertical",
  276. "contents": [
  277. {
  278. "type": "box",
  279. "layout": "horizontal",
  280. "contents": [
  281. {
  282. "type": "text",
  283. "text": "Buy milk and lettuce before class",
  284. "color": "#8C8C8C",
  285. "size": "sm",
  286. "wrap": true
  287. }
  288. ],
  289. "flex": 1
  290. }
  291. ],
  292. "spacing": "md",
  293. "paddingAll": "12px"
  294. },
  295. "styles": {
  296. "footer": {
  297. "separator": false
  298. }
  299. }
  300. }
  301. ]
  302. }
  303. ])
  304. .then(() => {
  305. alert("Shared to the friend(s) you picked");
  306. })
  307. .catch(function(res) {
  308. alert(res);
  309. });
  310. }