setFlexMessage.js
4.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
function priceToString(price) {
return price.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
function setFlexMessage(
platform,
name,
price,
thumbnailUrl,
itemUrl,
extraInfo
) {
let koreanPlatformName = "";
if (platform === "daangn" || platform === "당근마켓") {
koreanPlatformName = "당근마켓";
} else if (platform === "joongna" || platform === "중고나라") {
koreanPlatformName = "중고나라";
} else if (platform === "bunjang" || platform === "번개장터") {
koreanPlatformName = "번개장터";
} else {
koreanPlatformName = "Unknown";
}
let flexMessage = {
type: "bubble",
hero: {
type: "image",
url: thumbnailUrl,
size: "full",
aspectRatio: "20:13",
aspectMode: "cover",
action: {
type: "uri",
uri: itemUrl,
},
},
body: {
type: "box",
layout: "vertical",
contents: [
{
type: "text",
text: name,
weight: "bold",
size: "xl",
},
// {
// type: "box",
// layout: "baseline",
// margin: "md",
// contents: [
// {
// type: "icon",
// size: "sm",
// url: "https://scdn.line-apps.com/n/channel_devcenter/img/fx/review_gold_star_28.png",
// },
// {
// type: "icon",
// size: "sm",
// url: "https://scdn.line-apps.com/n/channel_devcenter/img/fx/review_gold_star_28.png",
// },
// {
// type: "icon",
// size: "sm",
// url: "https://scdn.line-apps.com/n/channel_devcenter/img/fx/review_gold_star_28.png",
// },
// {
// type: "icon",
// size: "sm",
// url: "https://scdn.line-apps.com/n/channel_devcenter/img/fx/review_gold_star_28.png",
// },
// {
// type: "icon",
// size: "sm",
// url: "https://scdn.line-apps.com/n/channel_devcenter/img/fx/review_gray_star_28.png",
// },
// {
// type: "text",
// text: "4.0",
// size: "sm",
// color: "#999999",
// margin: "md",
// flex: 0,
// },
// ],
// },
{
type: "box",
layout: "vertical",
margin: "lg",
spacing: "sm",
contents: [
{
type: "box",
layout: "baseline",
spacing: "sm",
contents: [
{
type: "text",
text: "플랫폼",
color: "#aaaaaa",
size: "sm",
flex: 1,
},
{
type: "text",
text: koreanPlatformName,
wrap: true,
color: "#666666",
size: "sm",
flex: 5,
},
],
},
{
type: "box",
layout: "baseline",
spacing: "sm",
contents: [
{
type: "text",
text: "가격",
color: "#aaaaaa",
size: "sm",
flex: 1,
},
{
type: "text",
text: priceToString(price * 1) + "원",
wrap: true,
color: "#666666",
size: "sm",
flex: 5,
},
],
},
{
type: "box",
layout: "baseline",
spacing: "sm",
contents: [
{
type: "text",
text: "정보",
color: "#aaaaaa",
size: "sm",
flex: 1,
},
{
type: "text",
text: extraInfo,
wrap: true,
color: "#666666",
size: "sm",
flex: 5,
},
],
},
],
},
],
},
footer: {
type: "box",
layout: "vertical",
spacing: "sm",
contents: [
{
type: "button",
style: "link",
height: "sm",
action: {
type: "uri",
label: "매물 확인",
uri: itemUrl,
},
},
{
type: "box",
layout: "vertical",
contents: [],
margin: "sm",
},
],
flex: 0,
},
};
return flexMessage;
//return JSON.stringify(flexMessage);
}
module.exports = setFlexMessage;