@abtnode/blocklet-services 1.16.8-beta-81db8efa → 1.16.8-beta-b3039c78
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.
- package/api/emails/components/asset.js +1 -3
- package/api/emails/components/attachments.js +4 -4
- package/api/emails/components/content.js +2 -2
- package/api/emails/components/footer.js +1 -3
- package/api/emails/components/header.js +1 -3
- package/api/emails/components/token.js +1 -3
- package/api/emails/components/transaction.js +1 -3
- package/api/emails/pages/notification.js +1 -5
- package/api/emails/test.js +2 -2
- package/build/asset-manifest.json +7 -7
- package/build/index.html +1 -1
- package/build/static/js/{343.6b05b9c8.chunk.js → 343.6fc2089d.chunk.js} +2 -2
- package/build/static/js/460.df719a3e.chunk.js +2 -0
- package/build/static/js/{main.4c0f9347.js → main.94c49b7d.js} +3 -3
- package/package.json +17 -17
- package/api/emails/libs/context.js +0 -43
- package/build/static/js/460.3181ba2e.chunk.js +0 -2
- /package/build/static/js/{main.4c0f9347.js.LICENSE.txt → main.94c49b7d.js.LICENSE.txt} +0 -0
|
@@ -2,9 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const components_1 = require("@react-email/components");
|
|
5
|
-
|
|
6
|
-
function Asset({ data, }) {
|
|
7
|
-
const { locale } = (0, context_1.useGlobalContext)();
|
|
5
|
+
function Asset({ locale, data, }) {
|
|
8
6
|
const title = { zh: '接收', en: 'Received' }[locale] || 'Received';
|
|
9
7
|
return ((0, jsx_runtime_1.jsxs)(components_1.Section, Object.assign({ style: assetStyle }, { children: [(0, jsx_runtime_1.jsxs)(components_1.Row, Object.assign({ style: titleStyle }, { children: [(0, jsx_runtime_1.jsx)(components_1.Column, { children: title }), (0, jsx_runtime_1.jsxs)(components_1.Column, Object.assign({ align: "right", style: summaryStyle }, { children: ["+", data.amount || 1, " Asset"] }))] })), (0, jsx_runtime_1.jsx)(components_1.Text, Object.assign({ style: remarkStyle }, { children: data.address }))] })));
|
|
10
8
|
}
|
|
@@ -11,7 +11,7 @@ const compose_1 = __importDefault(require("./compose"));
|
|
|
11
11
|
const transaction_1 = __importDefault(require("./transaction"));
|
|
12
12
|
const dapp_1 = __importDefault(require("./dapp"));
|
|
13
13
|
const article_1 = __importDefault(require("./article"));
|
|
14
|
-
function Attachments({ severity = 'normal', attachments = [], }) {
|
|
14
|
+
function Attachments({ locale, severity = 'normal', attachments = [], }) {
|
|
15
15
|
const attachmentList = attachments.map((item) => {
|
|
16
16
|
switch (item.type) {
|
|
17
17
|
case 'text':
|
|
@@ -22,9 +22,9 @@ function Attachments({ severity = 'normal', attachments = [], }) {
|
|
|
22
22
|
case 'image':
|
|
23
23
|
return ((0, jsx_runtime_1.jsx)(components_1.Img, { src: item.data.url, alt: item.data.alt, style: { width: '100%', height: '150px', objectFit: 'contain', objectPosition: 'left center' } }));
|
|
24
24
|
case 'token':
|
|
25
|
-
return (0, jsx_runtime_1.jsx)(token_1.default, { data: item.data });
|
|
25
|
+
return (0, jsx_runtime_1.jsx)(token_1.default, { data: item.data, locale: locale });
|
|
26
26
|
case 'transaction':
|
|
27
|
-
return (0, jsx_runtime_1.jsx)(transaction_1.default, { data: item.data });
|
|
27
|
+
return (0, jsx_runtime_1.jsx)(transaction_1.default, { data: item.data, locale: locale });
|
|
28
28
|
case 'dapp':
|
|
29
29
|
return (0, jsx_runtime_1.jsx)(dapp_1.default, { data: item.data });
|
|
30
30
|
case 'link':
|
|
@@ -33,7 +33,7 @@ function Attachments({ severity = 'normal', attachments = [], }) {
|
|
|
33
33
|
return (0, jsx_runtime_1.jsx)(components_1.Hr, {});
|
|
34
34
|
// case 'vc':
|
|
35
35
|
case 'nft':
|
|
36
|
-
return (0, jsx_runtime_1.jsx)(asset_1.default, { data: { address: item.data.did } });
|
|
36
|
+
return (0, jsx_runtime_1.jsx)(asset_1.default, { data: { address: item.data.did }, locale: locale });
|
|
37
37
|
case 'section':
|
|
38
38
|
return (0, jsx_runtime_1.jsx)(compose_1.default, { data: item.fileds });
|
|
39
39
|
default:
|
|
@@ -8,8 +8,8 @@ const components_1 = require("@react-email/components");
|
|
|
8
8
|
const attachments_1 = __importDefault(require("./attachments"));
|
|
9
9
|
const actions_1 = __importDefault(require("./actions"));
|
|
10
10
|
const highlight_1 = require("../libs/highlight");
|
|
11
|
-
function Content({ title, content, attachments = [], actions = [], style = {}, }) {
|
|
12
|
-
return ((0, jsx_runtime_1.jsxs)(components_1.Section, Object.assign({ style: style }, { children: [(0, jsx_runtime_1.jsx)(components_1.Heading, Object.assign({ style: h1 }, { children: title })), content && (0, jsx_runtime_1.jsx)(components_1.Text, {
|
|
11
|
+
function Content({ title, content, attachments = [], actions = [], style = {}, locale, }) {
|
|
12
|
+
return ((0, jsx_runtime_1.jsxs)(components_1.Section, Object.assign({ style: style }, { children: [(0, jsx_runtime_1.jsx)(components_1.Heading, Object.assign({ style: h1 }, { children: title })), content && (0, jsx_runtime_1.jsx)(components_1.Text, { className: "content", dangerouslySetInnerHTML: { __html: (0, highlight_1.toClickableSpan)(content) } }), (0, jsx_runtime_1.jsx)(attachments_1.default, { severity: "success", attachments: attachments, locale: locale }), (0, jsx_runtime_1.jsx)(actions_1.default, { actions: actions })] })));
|
|
13
13
|
}
|
|
14
14
|
exports.default = Content;
|
|
15
15
|
const h1 = {
|
|
@@ -6,9 +6,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
7
7
|
const components_1 = require("@react-email/components");
|
|
8
8
|
const copyright_1 = __importDefault(require("./copyright"));
|
|
9
|
-
|
|
10
|
-
function Footer({ showLogo = false, showCopyright = false, showBlocklet = true, }) {
|
|
11
|
-
const { appInfo } = (0, context_1.useGlobalContext)();
|
|
9
|
+
function Footer({ showLogo = false, showCopyright = false, showBlocklet = true, appInfo, }) {
|
|
12
10
|
return ((0, jsx_runtime_1.jsxs)(components_1.Section, { children: [showLogo && (0, jsx_runtime_1.jsx)(components_1.Img, { src: appInfo.logo, width: "32", height: "32", alt: appInfo.title }), showBlocklet && ((0, jsx_runtime_1.jsxs)(components_1.Text, Object.assign({ style: footer }, { children: [(0, jsx_runtime_1.jsx)(components_1.Link, Object.assign({ href: appInfo.url, target: "_blank", style: Object.assign(Object.assign({}, link), { color: '#898989' }) }, { children: appInfo.title })), (0, jsx_runtime_1.jsx)("br", {}), appInfo.description] }))), showCopyright && (0, jsx_runtime_1.jsx)(copyright_1.default, {})] }));
|
|
13
11
|
}
|
|
14
12
|
exports.default = Footer;
|
|
@@ -13,10 +13,8 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
13
13
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
14
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
15
15
|
const components_1 = require("@react-email/components");
|
|
16
|
-
const context_1 = require("../libs/context");
|
|
17
16
|
function Header(_a) {
|
|
18
|
-
var props = __rest(_a, []);
|
|
19
|
-
const { appInfo } = (0, context_1.useGlobalContext)();
|
|
17
|
+
var { appInfo } = _a, props = __rest(_a, ["appInfo"]);
|
|
20
18
|
return ((0, jsx_runtime_1.jsx)(components_1.Section, Object.assign({}, props, { children: (0, jsx_runtime_1.jsx)(components_1.Img, { src: appInfo.logo, height: "80", alt: appInfo.title }) })));
|
|
21
19
|
}
|
|
22
20
|
exports.default = Header;
|
|
@@ -2,9 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const components_1 = require("@react-email/components");
|
|
5
|
-
|
|
6
|
-
function Token({ data, }) {
|
|
7
|
-
const { locale } = (0, context_1.useGlobalContext)();
|
|
5
|
+
function Token({ locale, data, }) {
|
|
8
6
|
const showAddress = data.address.slice(0, 4) + '...' + data.address.slice(-4);
|
|
9
7
|
const title = { zh: '接收', en: 'Received' }[locale] || 'Received';
|
|
10
8
|
return ((0, jsx_runtime_1.jsxs)(components_1.Section, Object.assign({ style: assetStyle }, { children: [(0, jsx_runtime_1.jsxs)(components_1.Row, Object.assign({ style: titleStyle }, { children: [(0, jsx_runtime_1.jsx)(components_1.Column, { children: title }), (0, jsx_runtime_1.jsxs)(components_1.Column, Object.assign({ align: "right", style: summaryStyle }, { children: ["+", data.amount, " ", data.symbol] }))] })), (0, jsx_runtime_1.jsxs)(components_1.Text, Object.assign({ style: remarkStyle }, { children: ["from ", showAddress] }))] })));
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
|
-
|
|
5
|
-
function Transaction({ data, }) {
|
|
4
|
+
function Transaction({ locale, data, }) {
|
|
6
5
|
const chainMap = {
|
|
7
6
|
beta: 'beta.abtnetwork.io',
|
|
8
7
|
main: 'main.abtnetwork.io',
|
|
@@ -10,7 +9,6 @@ function Transaction({ data, }) {
|
|
|
10
9
|
const host = 'explorer.arcblockio.cn';
|
|
11
10
|
const chianHost = chainMap[data.chainId] || host;
|
|
12
11
|
const url = `https://${chianHost}/explorer/txs/${data.hash}`;
|
|
13
|
-
const { locale } = (0, context_1.useGlobalContext)();
|
|
14
12
|
const title = { zh: '交易详情', en: 'Transaction Details' }[locale] || 'Transaction Details';
|
|
15
13
|
const subTitle = { zh: '交易哈希', en: 'Transaction Hash' }[locale] || 'Transaction Hash';
|
|
16
14
|
return ((0, jsx_runtime_1.jsxs)("a", Object.assign({ href: url, target: "_blank", style: { margin: '1em 0', textDecoration: 'none', color: 'initial' } }, { children: [(0, jsx_runtime_1.jsx)("h6", Object.assign({ style: { color: '#a5a5a5', margin: 0 } }, { children: host })), (0, jsx_runtime_1.jsx)("p", Object.assign({ style: { color: '#4598fa', margin: '6px 0' } }, { children: title })), (0, jsx_runtime_1.jsxs)("div", { children: [subTitle, ": ", data.hash] })] })));
|
|
@@ -10,12 +10,8 @@ const footer_1 = __importDefault(require("../components/footer"));
|
|
|
10
10
|
const content_1 = __importDefault(require("../components/content"));
|
|
11
11
|
const layout_1 = __importDefault(require("../components/layout"));
|
|
12
12
|
const header_1 = __importDefault(require("../components/header"));
|
|
13
|
-
const context_1 = require("../libs/context");
|
|
14
13
|
const NotificationEmail = ({ title, body = '', attachments = [], actions = [], appInfo, locale = 'en', }) => {
|
|
15
|
-
return ((0, jsx_runtime_1.
|
|
16
|
-
appInfo,
|
|
17
|
-
locale,
|
|
18
|
-
} }, { children: (0, jsx_runtime_1.jsxs)(layout_1.default, Object.assign({ mainStyle: main }, { children: [(0, jsx_runtime_1.jsx)(components_1.Preview, { children: title }), (0, jsx_runtime_1.jsx)(header_1.default, {}), (0, jsx_runtime_1.jsx)(content_1.default, { style: container, title: title, content: body, attachments: attachments, actions: actions }), (0, jsx_runtime_1.jsx)(footer_1.default, { showCopyright: false, showBlocklet: true })] })) })));
|
|
14
|
+
return ((0, jsx_runtime_1.jsxs)(layout_1.default, Object.assign({ mainStyle: main }, { children: [(0, jsx_runtime_1.jsx)(components_1.Preview, { children: title }), (0, jsx_runtime_1.jsx)(header_1.default, { appInfo: appInfo }), (0, jsx_runtime_1.jsx)(content_1.default, { style: container, title: title, content: body, attachments: attachments, actions: actions, locale: locale }), (0, jsx_runtime_1.jsx)(footer_1.default, { showCopyright: false, showBlocklet: true, appInfo: appInfo })] })));
|
|
19
15
|
};
|
|
20
16
|
exports.NotificationEmail = NotificationEmail;
|
|
21
17
|
exports.default = exports.NotificationEmail;
|
package/api/emails/test.js
CHANGED
|
@@ -7,7 +7,7 @@ const jsx_runtime_1 = require("react/jsx-runtime");
|
|
|
7
7
|
const notification_1 = __importDefault(require("./pages/notification"));
|
|
8
8
|
function Test() {
|
|
9
9
|
const title = 'Blocklet Server is about to expire';
|
|
10
|
-
const body = '
|
|
10
|
+
const body = 'User <DAMINGZHAO(did:abt:z1Y313EXfBK9FePjDh5cZy6sNY97TneEemB)> has a <Transaction(tx:beta:D20C566BB46A7B6B4DDEA0B42EB3996F0213C1C27C54533F3D40D7B5C6DA59FD)> and it will give your a <Badge (nft:beta:zjdivheWGgy6ucvsYYqP34hVeUgx6743GEfx)> on the DApp <OCAP Playground(dapp:beta:zNKeLKixvCM32TkVM1zmRDdAU3bvm3dTtAcM)>';
|
|
11
11
|
const attachments = [
|
|
12
12
|
{
|
|
13
13
|
type: 'token',
|
|
@@ -156,7 +156,7 @@ function Test() {
|
|
|
156
156
|
];
|
|
157
157
|
const appInfo = {
|
|
158
158
|
title: 'Blocklet Email Test',
|
|
159
|
-
logo: 'https://picsum.photos/100
|
|
159
|
+
logo: 'https://picsum.photos/200/100',
|
|
160
160
|
url: 'https://www.arcblock.io',
|
|
161
161
|
description: 'This is a test blocklet for email test only',
|
|
162
162
|
version: '1.0.0',
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"files": {
|
|
3
3
|
"main.css": "/.blocklet/proxy/blocklet-service/static/css/main.632501d5.css",
|
|
4
|
-
"main.js": "/.blocklet/proxy/blocklet-service/static/js/main.
|
|
4
|
+
"main.js": "/.blocklet/proxy/blocklet-service/static/js/main.94c49b7d.js",
|
|
5
5
|
"static/js/716.0d2a2d32.chunk.js": "/.blocklet/proxy/blocklet-service/static/js/716.0d2a2d32.chunk.js",
|
|
6
6
|
"static/js/359.c47779c2.chunk.js": "/.blocklet/proxy/blocklet-service/static/js/359.c47779c2.chunk.js",
|
|
7
7
|
"static/js/255.279b1bca.chunk.js": "/.blocklet/proxy/blocklet-service/static/js/255.279b1bca.chunk.js",
|
|
8
8
|
"static/js/371.f67a06b4.chunk.js": "/.blocklet/proxy/blocklet-service/static/js/371.f67a06b4.chunk.js",
|
|
9
9
|
"static/js/737.15a41e1c.chunk.js": "/.blocklet/proxy/blocklet-service/static/js/737.15a41e1c.chunk.js",
|
|
10
|
-
"static/js/460.
|
|
10
|
+
"static/js/460.df719a3e.chunk.js": "/.blocklet/proxy/blocklet-service/static/js/460.df719a3e.chunk.js",
|
|
11
11
|
"static/js/868.ac8df3a0.chunk.js": "/.blocklet/proxy/blocklet-service/static/js/868.ac8df3a0.chunk.js",
|
|
12
12
|
"static/js/547.03d5d719.chunk.js": "/.blocklet/proxy/blocklet-service/static/js/547.03d5d719.chunk.js",
|
|
13
|
-
"static/js/343.
|
|
13
|
+
"static/js/343.6fc2089d.chunk.js": "/.blocklet/proxy/blocklet-service/static/js/343.6fc2089d.chunk.js",
|
|
14
14
|
"static/js/682.a8bf723a.chunk.js": "/.blocklet/proxy/blocklet-service/static/js/682.a8bf723a.chunk.js",
|
|
15
15
|
"static/js/711.56427a24.chunk.js": "/.blocklet/proxy/blocklet-service/static/js/711.56427a24.chunk.js",
|
|
16
16
|
"static/js/437.075e8453.chunk.js": "/.blocklet/proxy/blocklet-service/static/js/437.075e8453.chunk.js",
|
|
@@ -45,16 +45,16 @@
|
|
|
45
45
|
"router-template-styles/styles.css": "/.blocklet/proxy/blocklet-service/router-template-styles/styles.css",
|
|
46
46
|
"index.html": "/.blocklet/proxy/blocklet-service/index.html",
|
|
47
47
|
"main.632501d5.css.map": "/.blocklet/proxy/blocklet-service/static/css/main.632501d5.css.map",
|
|
48
|
-
"main.
|
|
48
|
+
"main.94c49b7d.js.map": "/.blocklet/proxy/blocklet-service/static/js/main.94c49b7d.js.map",
|
|
49
49
|
"716.0d2a2d32.chunk.js.map": "/.blocklet/proxy/blocklet-service/static/js/716.0d2a2d32.chunk.js.map",
|
|
50
50
|
"359.c47779c2.chunk.js.map": "/.blocklet/proxy/blocklet-service/static/js/359.c47779c2.chunk.js.map",
|
|
51
51
|
"255.279b1bca.chunk.js.map": "/.blocklet/proxy/blocklet-service/static/js/255.279b1bca.chunk.js.map",
|
|
52
52
|
"371.f67a06b4.chunk.js.map": "/.blocklet/proxy/blocklet-service/static/js/371.f67a06b4.chunk.js.map",
|
|
53
53
|
"737.15a41e1c.chunk.js.map": "/.blocklet/proxy/blocklet-service/static/js/737.15a41e1c.chunk.js.map",
|
|
54
|
-
"460.
|
|
54
|
+
"460.df719a3e.chunk.js.map": "/.blocklet/proxy/blocklet-service/static/js/460.df719a3e.chunk.js.map",
|
|
55
55
|
"868.ac8df3a0.chunk.js.map": "/.blocklet/proxy/blocklet-service/static/js/868.ac8df3a0.chunk.js.map",
|
|
56
56
|
"547.03d5d719.chunk.js.map": "/.blocklet/proxy/blocklet-service/static/js/547.03d5d719.chunk.js.map",
|
|
57
|
-
"343.
|
|
57
|
+
"343.6fc2089d.chunk.js.map": "/.blocklet/proxy/blocklet-service/static/js/343.6fc2089d.chunk.js.map",
|
|
58
58
|
"682.a8bf723a.chunk.js.map": "/.blocklet/proxy/blocklet-service/static/js/682.a8bf723a.chunk.js.map",
|
|
59
59
|
"711.56427a24.chunk.js.map": "/.blocklet/proxy/blocklet-service/static/js/711.56427a24.chunk.js.map",
|
|
60
60
|
"437.075e8453.chunk.js.map": "/.blocklet/proxy/blocklet-service/static/js/437.075e8453.chunk.js.map",
|
|
@@ -70,6 +70,6 @@
|
|
|
70
70
|
},
|
|
71
71
|
"entrypoints": [
|
|
72
72
|
"static/css/main.632501d5.css",
|
|
73
|
-
"static/js/main.
|
|
73
|
+
"static/js/main.94c49b7d.js"
|
|
74
74
|
]
|
|
75
75
|
}
|
package/build/index.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0"/><meta name="theme-color" content="#000000"/><title>Blocklet Service</title><script src=".well-known/service/api/env"></script><script src="/__blocklet__.js"></script><script defer="defer" src="/.blocklet/proxy/blocklet-service/static/js/main.
|
|
1
|
+
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0"/><meta name="theme-color" content="#000000"/><title>Blocklet Service</title><script src=".well-known/service/api/env"></script><script src="/__blocklet__.js"></script><script defer="defer" src="/.blocklet/proxy/blocklet-service/static/js/main.94c49b7d.js"></script><link href="/.blocklet/proxy/blocklet-service/static/css/main.632501d5.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
|