123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- function getProfile() {
- liff
- .getProfile()
- .then(profile => {
- console.log(JSON.stringify(profile));
- window.alert(JSON.stringify(profile));
- })
- .catch(e => {
- console.log(e);
- window.alert(e);
- });
- }
- function getAccessToken() {
- window.alert(liff.getAccessToken());
- }
- function getContext() {
- window.alert(JSON.stringify(liff.getContext()));
- }
- function sendMessage() {
- liff
- .sendMessages([{ type: "text", text: "中文測試 Hello from LIFF2.0" }])
- .then(() => {
- window.alert("Message has been sent");
- })
- .catch(e => {
- window.alert(e);
- });
- }
- function login() {
- liff.login();
- }
- function scanCode() {
- liff
- .scanCode()
- .then(result => {
- window.alert(JSON.stringify(result));
- })
- .catch(e => {
- window.alert(e);
- });
- }
- function openWindow() {
- liff.openWindow({
- url: "https://sirateek.me",
- external: true
- });
- }
- function closeWindow() {
- liff.closeWindow();
- }
- function logout() {
- if (liff.isLoggedIn()) {
- liff.logout();
- window.alert("Successfully to Logout");
- location.reload();
- }
- }
- function createFlexMessageData() {
- var myFlexContent =
- {
- "type": "bubble",
- "styles": {
- "footer": {
- "backgroundColor": "#42b3f4"
- }
- },
- "header": {
- "type": "box",
- "layout": "horizontal",
- "contents": [
- {
- "type": "box",
- "layout": "baseline",
- "contents": [
- {
- "type": "icon",
- "size": "xxl",
- "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"
- }
- ]
- },
- {
- "type": "box",
- "layout": "vertical",
- "flex": 5,
- "contents": [
- {
- "type": "text",
- "text": "โรงพยาบาลอ่างทอง",
- "weight": "bold",
- "color": "#aaaaaa",
- "size": "md",
- "gravity": "top"
- },
- {
- "type": "text",
- "text": "ขอขอบพระคุณ",
- "weight": "bold",
- "color": "#aaaaaa",
- "size": "lg",
- "gravity": "top"
- }
- ]
- }
- ]
- },
- "hero": {
- "type": "image",
- "url": "https://scontent.fbkk7-2.fna.fbcdn.net/v/t1.0-9/35076722_2227987830551725_330757188106584064_n.jpg?_nc_cat=0&oh=0f5fa137c5bd65f109a40439afcd59eb&oe=5BB566B6",
- "size": "full",
- "aspectRatio": "16:9",
- "aspectMode": "cover",
- "action": {
- "type": "uri",
- "uri": "http://bit.ly/2JGBRKv"
- }
- },
- "body": {
- "type": "box",
- "layout": "vertical",
- "contents": [
- {
- "type": "text",
- "margin": "sm",
- "text": "คุณกานต์สินี ไหลสงวนงาม",
- "weight": "bold",
- "size": "md",
- "wrap": true
- },
- {
- "type": "box",
- "layout": "vertical",
- "margin": "xs",
- "contents": [
- {
- "type": "box",
- "layout": "baseline",
- "spacing": "sm",
- "contents": [
- {
- "type": "text",
- "text": "บริจาคเงินจำนวน ๑๘๐,๐๐๐ บาท เพื่อซื้อครุภัณฑ์ทางการแพทย์ ใช้ในโรงพยาบาลอ่างทอง โดยมีนายแพทย์พงษ์นรินทร์ ชาติรังสรรค์ผู้อำนวยการโรงพยาบาลอ่างทอง เป็นผู้รับมอบ",
- "wrap": true,
- "color": "#666666",
- "size": "sm",
- "flex": 6
- }
- ]
- }
- ]
- },
- {
- "type": "text",
- "margin": "md",
- "text": "วันที่ 12 มิ.ย. 2561",
- "size": "sm",
- "color": "#adadad"
- }
- ]
- },
- "footer": {
- "type": "box",
- "layout": "vertical",
- "spacing": "sm",
- "contents": [
- {
- "type": "button",
- "style": "link",
- "color": "#FFFFFF",
- "height": "sm",
- "action": {
- "type": "uri",
- "label": "อ่านต่อ...",
- "uri": "http://bit.ly/2JGBRKv"
- }
- }
- ]
- }
- };
- var flex = {
- "type": "flex",
- "altText": 'title',
- "contents": myFlexContent,
- };
- return flex;
- }
- function shareTargetPicker() {
- liff
- .shareTargetPicker([
- createFlexMessageData()
- ])
- .then(() => {
- alert("Shared to the friend(s) you picked");
- })
- .catch(function(res) {
- alert(res);
- });
- }
|