@azuro-org/images-generator 1.3.13 → 1.3.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,7 @@
1
1
  import { type Template } from '../../utils';
2
+ type Person = 'obama' | 'drake' | 'crash' | 'sydney' | 'tramp' | 'elon' | 'lewis' | 'mark' | 'powell' | 'macron' | 'arnold' | 'person-1' | 'tramp-2' | 'elon-2' | 'person-2' | 'taylor';
2
3
  export type Props = {
3
- type: 'obama' | 'drake' | 'crash' | 'sydney' | 'tramp' | 'elon' | 'lewis' | 'mark';
4
+ type: Person;
4
5
  trend: {
5
6
  image: string;
6
7
  title: string;
@@ -8,6 +9,8 @@ export type Props = {
8
9
  position: {
9
10
  leverage: number;
10
11
  isLong: boolean;
12
+ openLevel: number;
13
+ exitLevel: number | undefined;
11
14
  };
12
15
  pnl: number;
13
16
  };
@@ -1,9 +1,12 @@
1
1
  <!DOCTYPE html>
2
2
  <html lang="en">
3
+
3
4
  <head>
4
5
  <meta charset="UTF-8">
5
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <link href="https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&family=Mona+Sans:wdth,wght@75..125,700&display=swap" rel="stylesheet">
7
+ <link
8
+ href="https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&family=Mona+Sans:wdth,wght@75..125,700&display=swap"
9
+ rel="stylesheet">
7
10
  <style>
8
11
  html {
9
12
  font-family: 'Inter', sans-serif;
@@ -11,7 +14,8 @@
11
14
  color: #000;
12
15
  }
13
16
 
14
- html, body {
17
+ html,
18
+ body {
15
19
  margin: 0;
16
20
  width: fit-content;
17
21
  }
@@ -30,6 +34,10 @@
30
34
  display: flex;
31
35
  }
32
36
 
37
+ .none {
38
+ display: none;
39
+ }
40
+
33
41
  .flex-wrap {
34
42
  flex-wrap: wrap;
35
43
  }
@@ -152,7 +160,7 @@
152
160
  overflow: hidden;
153
161
  }
154
162
 
155
- .trend__img > img {
163
+ .trend__img>img {
156
164
  width: 100%;
157
165
  }
158
166
 
@@ -206,8 +214,30 @@
206
214
  left: 0px;
207
215
  width: 100%;
208
216
  }
217
+
218
+ .level-wrapper {
219
+ margin-top: 30px;
220
+ }
221
+
222
+ .level-title {
223
+ opacity: 50%;
224
+ color: #000000CC;
225
+ font-size: 24px;
226
+ line-height: 100%;
227
+ }
228
+
229
+ .level-content {
230
+ margin-top: 6px;
231
+ font-size: 28px;
232
+ line-height: 37.86px;
233
+ }
234
+
235
+ .level-box {
236
+ margin-left: 125px;
237
+ }
209
238
  </style>
210
239
  </head>
240
+
211
241
  <body>
212
242
  <div class="card flex flex-col justify-between">
213
243
  <img class="bg-img" src={bgImg} alt="">
@@ -228,7 +258,18 @@
228
258
  </div>
229
259
  </div>
230
260
  <div class="pnl">{pnl}%</div>
261
+ <div class="level-wrapper flex items-center">
262
+ <div>
263
+ <div class="level-title">Entry level:</div>
264
+ <div class="level-content">{openLevel}</div>
265
+ </div>
266
+ <div class="level-box {exitLevelClass}">
267
+ <div class="level-title">Exit level:</div>
268
+ <div class="level-content">{exitLevel}</div>
269
+ </div>
270
+ </div>
231
271
  </div>
232
272
  </div>
233
273
  </body>
274
+
234
275
  </html>
@@ -13,14 +13,14 @@ var template = {
13
13
  height: 630,
14
14
  type: 'jpeg',
15
15
  html: function (props) { return __awaiter(void 0, void 0, void 0, function () {
16
- var type, trend, pnl, position, isProfit, _a, rightImg, bgColor, leverage, isLong, html, logo, bgImage, rightImage, personImage, arrowImage, trendImage, positionInfo;
16
+ var type, trend, pnl, position, isProfit, _a, rightImg, bgColor, leverage, isLong, openLevel, exitLevel, html, logo, bgImage, rightImage, personImage, arrowImage, trendImage, positionInfo;
17
17
  return __generator(this, function (_b) {
18
18
  switch (_b.label) {
19
19
  case 0:
20
20
  type = props.type, trend = props.trend, pnl = props.pnl, position = props.position;
21
21
  isProfit = pnl > 0;
22
22
  _a = isProfit ? cardTypes.profit : cardTypes.loss, rightImg = _a.rightImg, bgColor = _a.bgColor;
23
- leverage = position.leverage, isLong = position.isLong;
23
+ leverage = position.leverage, isLong = position.isLong, openLevel = position.openLevel, exitLevel = position.exitLevel;
24
24
  html = getFile(path.join(__dirname, 'index.html'));
25
25
  logo = getBase64Image(path.resolve(__dirname, 'images/logo.png'));
26
26
  bgImage = getBase64Image(path.resolve(__dirname, 'images/bg.png'));
@@ -41,7 +41,10 @@ var template = {
41
41
  .replace('{trendTitle}', trend.title)
42
42
  .replace('{positionInfo}', positionInfo)
43
43
  .replace('{arrowImage}', arrowImage)
44
- .replace('{pnl}', pnl > 0 ? "+".concat(pnl) : "".concat(pnl))];
44
+ .replace('{pnl}', pnl > 0 ? "+".concat(pnl) : "".concat(pnl))
45
+ .replace('{openLevel}', String(openLevel))
46
+ .replace('{exitLevel}', String(exitLevel || ''))
47
+ .replace('{exitLevelClass}', exitLevel ? '' : 'none')];
45
48
  }
46
49
  });
47
50
  }); }
@@ -1,6 +1,7 @@
1
1
  import { type Template } from '../../utils';
2
+ type Person = 'obama' | 'drake' | 'crash' | 'sydney' | 'tramp' | 'elon' | 'lewis' | 'mark' | 'powell' | 'macron' | 'arnold' | 'person-1' | 'tramp-2' | 'elon-2' | 'person-2' | 'taylor';
2
3
  export type Props = {
3
- type: 'obama' | 'drake' | 'crash' | 'sydney' | 'tramp' | 'elon' | 'lewis' | 'mark';
4
+ type: Person;
4
5
  trend: {
5
6
  image: string;
6
7
  title: string;
@@ -8,6 +9,8 @@ export type Props = {
8
9
  position: {
9
10
  leverage: number;
10
11
  isLong: boolean;
12
+ openLevel: number;
13
+ exitLevel: number | undefined;
11
14
  };
12
15
  pnl: number;
13
16
  };
@@ -1,9 +1,12 @@
1
1
  <!DOCTYPE html>
2
2
  <html lang="en">
3
+
3
4
  <head>
4
5
  <meta charset="UTF-8">
5
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <link href="https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&family=Mona+Sans:wdth,wght@75..125,700&display=swap" rel="stylesheet">
7
+ <link
8
+ href="https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&family=Mona+Sans:wdth,wght@75..125,700&display=swap"
9
+ rel="stylesheet">
7
10
  <style>
8
11
  html {
9
12
  font-family: 'Inter', sans-serif;
@@ -11,7 +14,8 @@
11
14
  color: #000;
12
15
  }
13
16
 
14
- html, body {
17
+ html,
18
+ body {
15
19
  margin: 0;
16
20
  width: fit-content;
17
21
  }
@@ -30,6 +34,10 @@
30
34
  display: flex;
31
35
  }
32
36
 
37
+ .none {
38
+ display: none;
39
+ }
40
+
33
41
  .flex-wrap {
34
42
  flex-wrap: wrap;
35
43
  }
@@ -152,7 +160,7 @@
152
160
  overflow: hidden;
153
161
  }
154
162
 
155
- .trend__img > img {
163
+ .trend__img>img {
156
164
  width: 100%;
157
165
  }
158
166
 
@@ -206,8 +214,30 @@
206
214
  left: 0px;
207
215
  width: 100%;
208
216
  }
217
+
218
+ .level-wrapper {
219
+ margin-top: 30px;
220
+ }
221
+
222
+ .level-title {
223
+ opacity: 50%;
224
+ color: #000000CC;
225
+ font-size: 24px;
226
+ line-height: 100%;
227
+ }
228
+
229
+ .level-content {
230
+ margin-top: 6px;
231
+ font-size: 28px;
232
+ line-height: 37.86px;
233
+ }
234
+
235
+ .level-box {
236
+ margin-left: 125px;
237
+ }
209
238
  </style>
210
239
  </head>
240
+
211
241
  <body>
212
242
  <div class="card flex flex-col justify-between">
213
243
  <img class="bg-img" src={bgImg} alt="">
@@ -228,7 +258,18 @@
228
258
  </div>
229
259
  </div>
230
260
  <div class="pnl">{pnl}%</div>
261
+ <div class="level-wrapper flex items-center">
262
+ <div>
263
+ <div class="level-title">Entry level:</div>
264
+ <div class="level-content">{openLevel}</div>
265
+ </div>
266
+ <div class="level-box {exitLevelClass}">
267
+ <div class="level-title">Exit level:</div>
268
+ <div class="level-content">{exitLevel}</div>
269
+ </div>
270
+ </div>
231
271
  </div>
232
272
  </div>
233
273
  </body>
274
+
234
275
  </html>
@@ -13,14 +13,14 @@ var template = {
13
13
  height: 630,
14
14
  type: 'jpeg',
15
15
  html: function (props) { return index._(void 0, void 0, void 0, function () {
16
- var type, trend, pnl, position, isProfit, _a, rightImg, bgColor, leverage, isLong, html, logo, bgImage, rightImage, personImage, arrowImage, trendImage, positionInfo;
16
+ var type, trend, pnl, position, isProfit, _a, rightImg, bgColor, leverage, isLong, openLevel, exitLevel, html, logo, bgImage, rightImage, personImage, arrowImage, trendImage, positionInfo;
17
17
  return index.a(this, function (_b) {
18
18
  switch (_b.label) {
19
19
  case 0:
20
20
  type = props.type, trend = props.trend, pnl = props.pnl, position = props.position;
21
21
  isProfit = pnl > 0;
22
22
  _a = isProfit ? cardTypes.profit : cardTypes.loss, rightImg = _a.rightImg, bgColor = _a.bgColor;
23
- leverage = position.leverage, isLong = position.isLong;
23
+ leverage = position.leverage, isLong = position.isLong, openLevel = position.openLevel, exitLevel = position.exitLevel;
24
24
  html = index.g(path__default["default"].join(__dirname, 'index.html'));
25
25
  logo = index.b(path__default["default"].resolve(__dirname, 'images/logo.png'));
26
26
  bgImage = index.b(path__default["default"].resolve(__dirname, 'images/bg.png'));
@@ -41,7 +41,10 @@ var template = {
41
41
  .replace('{trendTitle}', trend.title)
42
42
  .replace('{positionInfo}', positionInfo)
43
43
  .replace('{arrowImage}', arrowImage)
44
- .replace('{pnl}', pnl > 0 ? "+".concat(pnl) : "".concat(pnl))];
44
+ .replace('{pnl}', pnl > 0 ? "+".concat(pnl) : "".concat(pnl))
45
+ .replace('{openLevel}', String(openLevel))
46
+ .replace('{exitLevel}', String(exitLevel || ''))
47
+ .replace('{exitLevelClass}', exitLevel ? '' : 'none')];
45
48
  }
46
49
  });
47
50
  }); }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azuro-org/images-generator",
3
- "version": "1.3.13",
3
+ "version": "1.3.14",
4
4
  "license": "ISC",
5
5
  "engines": {
6
6
  "node": ">=16.15.1",