@abtnode/blocklet-services 1.16.8-beta-81db8efa → 1.16.8-beta-186fd5aa
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 +2 -3
- package/api/emails/components/header.js +2 -4
- package/api/emails/components/layout.js +2 -2
- package/api/emails/components/token.js +1 -3
- package/api/emails/components/transaction.js +1 -3
- package/api/emails/libs/highlight.js +3 -3
- package/api/emails/pages/notification.js +4 -8
- package/api/emails/test.js +8 -8
- package/api/libs/email.js +19 -6
- package/api/services/studio/index.js +12 -2
- package/api/socket/channel/did.js +8 -4
- 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;
|
|
@@ -17,6 +15,7 @@ const footer = {
|
|
|
17
15
|
fontFamily: "-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif",
|
|
18
16
|
fontSize: '12px',
|
|
19
17
|
lineHeight: '22px',
|
|
18
|
+
margin: 0,
|
|
20
19
|
};
|
|
21
20
|
const link = {
|
|
22
21
|
color: '#2754C5',
|
|
@@ -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
|
-
|
|
20
|
-
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 }) })));
|
|
17
|
+
var { appInfo } = _a, props = __rest(_a, ["appInfo"]);
|
|
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: "50", alt: appInfo.title }) })));
|
|
21
19
|
}
|
|
22
20
|
exports.default = Header;
|
|
@@ -2,8 +2,8 @@
|
|
|
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
|
-
function Layout({ children, mainStyle = {}, containerStyle = {}, }) {
|
|
6
|
-
return ((0, jsx_runtime_1.jsxs)(components_1.Html, { children: [(0, jsx_runtime_1.jsx)(components_1.Head, { children: (0, jsx_runtime_1.jsx)("title", { children:
|
|
5
|
+
function Layout({ children, mainStyle = {}, containerStyle = {}, subject, }) {
|
|
6
|
+
return ((0, jsx_runtime_1.jsxs)(components_1.Html, { children: [(0, jsx_runtime_1.jsx)(components_1.Head, { children: subject && (0, jsx_runtime_1.jsx)("title", { children: subject }) }), (0, jsx_runtime_1.jsx)(components_1.Body, Object.assign({ style: Object.assign(Object.assign({}, main), mainStyle) }, { children: (0, jsx_runtime_1.jsx)("div", Object.assign({ style: Object.assign(Object.assign({}, main), mainStyle) }, { children: (0, jsx_runtime_1.jsx)("div", Object.assign({ style: { padding: '30px 20px' } }, { children: (0, jsx_runtime_1.jsx)(components_1.Container, Object.assign({ style: Object.assign(Object.assign({}, container), containerStyle) }, { children: (0, jsx_runtime_1.jsx)("div", { children: children }) })) })) })) }))] }));
|
|
7
7
|
}
|
|
8
8
|
exports.default = Layout;
|
|
9
9
|
const main = {
|
|
@@ -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] })] })));
|
|
@@ -42,13 +42,13 @@ const toClickableSpan = (str, isHighLight = true) => {
|
|
|
42
42
|
}
|
|
43
43
|
// HACK: 邮件中无法支持 dapp 的展示,缺少 dapp 链接,只能作为加粗展示
|
|
44
44
|
if ((0, func_1.isSameAddr)(type, 'dapp')) {
|
|
45
|
-
return `<em data-type="${type}" data-chain-id="${chainId}" data-did="${did}">${item.text}</em>`;
|
|
45
|
+
return `<em style="font-weight:bold;" data-type="${type}" data-chain-id="${chainId}" data-did="${did}">${item.text}</em>`;
|
|
46
46
|
}
|
|
47
47
|
if (url) {
|
|
48
|
-
return `<a target="_blank" href="${url}">${item.text}</a>`;
|
|
48
|
+
return `<a target="_blank" style="color:#4598fa;font-weight:bold;" href="${url}">${item.text}</a>`;
|
|
49
49
|
}
|
|
50
50
|
// 默认展示为加粗
|
|
51
|
-
return `<em data-type="${type}" data-chain-id="${chainId}" data-did="${did}">${item.text}</em>`;
|
|
51
|
+
return `<em style="font-weight:bold;" data-type="${type}" data-chain-id="${chainId}" data-did="${did}">${item.text}</em>`;
|
|
52
52
|
}
|
|
53
53
|
return item.text;
|
|
54
54
|
}
|
|
@@ -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
|
|
14
|
-
|
|
15
|
-
return ((0, jsx_runtime_1.jsx)(context_1.GlobalProvider, Object.assign({ value: {
|
|
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 })] })) })));
|
|
13
|
+
const NotificationEmail = ({ title, body = '', subject, attachments = [], actions = [], appInfo, locale = 'en', }) => {
|
|
14
|
+
return ((0, jsx_runtime_1.jsxs)(layout_1.default, Object.assign({ mainStyle: main, subject: subject }, { children: [(0, jsx_runtime_1.jsx)(components_1.Preview, { children: subject }), (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;
|
|
@@ -24,7 +20,7 @@ const main = {
|
|
|
24
20
|
fontFamily,
|
|
25
21
|
};
|
|
26
22
|
const container = {
|
|
27
|
-
margin: '
|
|
23
|
+
margin: '20px auto',
|
|
28
24
|
backgroundColor: '#ffffff',
|
|
29
|
-
padding: '5px 50px
|
|
25
|
+
padding: '5px 50px 30px 60px',
|
|
30
26
|
};
|
package/api/emails/test.js
CHANGED
|
@@ -6,13 +6,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
7
7
|
const notification_1 = __importDefault(require("./pages/notification"));
|
|
8
8
|
function Test() {
|
|
9
|
-
const title = '
|
|
10
|
-
const body = '
|
|
9
|
+
const title = 'Head for blocklet email demo';
|
|
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',
|
|
14
14
|
data: {
|
|
15
|
-
address: '
|
|
15
|
+
address: 'zjdivheWGgy6ucvsYYqP34hVeUgx6743GEfx',
|
|
16
16
|
decimal: 18,
|
|
17
17
|
amount: 10000,
|
|
18
18
|
chianHost: 'beta',
|
|
@@ -23,7 +23,7 @@ function Test() {
|
|
|
23
23
|
type: 'nft',
|
|
24
24
|
data: {
|
|
25
25
|
chianHost: 'beta',
|
|
26
|
-
did: '
|
|
26
|
+
did: 'zjdivheWGgy6ucvsYYqP34hVeUgx6743GEfx',
|
|
27
27
|
},
|
|
28
28
|
},
|
|
29
29
|
// {
|
|
@@ -155,12 +155,12 @@ function Test() {
|
|
|
155
155
|
},
|
|
156
156
|
];
|
|
157
157
|
const appInfo = {
|
|
158
|
-
title: 'Blocklet Email
|
|
159
|
-
logo: 'https://picsum.photos/100
|
|
158
|
+
title: 'Blocklet Email Demo',
|
|
159
|
+
logo: 'https://picsum.photos/200/100',
|
|
160
160
|
url: 'https://www.arcblock.io',
|
|
161
|
-
description: 'This is a
|
|
161
|
+
description: 'This is a demo blocklet for email test only',
|
|
162
162
|
version: '1.0.0',
|
|
163
163
|
};
|
|
164
|
-
return (0, jsx_runtime_1.jsx)(notification_1.default, { title: title, body: body, attachments: attachments, actions: actions, appInfo: appInfo });
|
|
164
|
+
return ((0, jsx_runtime_1.jsx)(notification_1.default, { title: title, body: body, attachments: attachments, actions: actions, appInfo: appInfo, subject: `[${appInfo.title}] ${title}` }));
|
|
165
165
|
}
|
|
166
166
|
exports.default = Test;
|
package/api/libs/email.js
CHANGED
|
@@ -3,6 +3,8 @@ const { render } = require('@react-email/components');
|
|
|
3
3
|
const { getSafeEnv } = require('@abtnode/core/lib/util');
|
|
4
4
|
const { getRuntimeEnvironments } = require('@abtnode/core/lib/util/blocklet');
|
|
5
5
|
const { emailConfigSchema } = require('@blocklet/sdk/lib/validators/email');
|
|
6
|
+
const logger = require('@abtnode/logger')('blocklet-services:notification');
|
|
7
|
+
const omit = require('lodash/omit');
|
|
6
8
|
|
|
7
9
|
const { NotificationEmail } = require('../emails/pages/notification');
|
|
8
10
|
const cache = require('../cache');
|
|
@@ -20,16 +22,18 @@ async function sendEmail(receiver, notification, { teamDid, node }) {
|
|
|
20
22
|
throw new Error('notification is required');
|
|
21
23
|
}
|
|
22
24
|
|
|
23
|
-
const blocklet = await node.getBlocklet({ did: teamDid,
|
|
24
|
-
|
|
25
|
+
const blocklet = await node.getBlocklet({ did: teamDid, useCache: true });
|
|
26
|
+
if (!blocklet) {
|
|
27
|
+
logger.warn(`Failed to get blocklet: ${teamDid}`);
|
|
28
|
+
}
|
|
29
|
+
const config = blocklet?.settings?.notification?.email || {};
|
|
25
30
|
|
|
26
31
|
if (!config.enabled) {
|
|
27
32
|
// skip send email
|
|
28
33
|
return;
|
|
29
34
|
}
|
|
30
|
-
delete config.enabled;
|
|
31
35
|
|
|
32
|
-
const { error, value: emailConfig } = emailConfigSchema.validate(config);
|
|
36
|
+
const { error, value: emailConfig } = emailConfigSchema.validate(omit(config, 'enabled'));
|
|
33
37
|
if (error) {
|
|
34
38
|
throw new Error(error.message);
|
|
35
39
|
}
|
|
@@ -50,12 +54,21 @@ async function sendEmail(receiver, notification, { teamDid, node }) {
|
|
|
50
54
|
url,
|
|
51
55
|
};
|
|
52
56
|
|
|
53
|
-
|
|
57
|
+
// TODO: @zhanghan notification 目前并没有 locale 信息,无法实现多 locale 提示
|
|
58
|
+
const subject = `[${appInfo.title}] ${notification.title || 'You have received a notification'}`;
|
|
59
|
+
|
|
60
|
+
const html = render(
|
|
61
|
+
NotificationEmail({
|
|
62
|
+
subject,
|
|
63
|
+
...notification,
|
|
64
|
+
appInfo,
|
|
65
|
+
})
|
|
66
|
+
);
|
|
54
67
|
const emailData = {
|
|
55
68
|
from: emailConfig.from,
|
|
56
69
|
to: receiver,
|
|
57
70
|
title: notification.title,
|
|
58
|
-
subject
|
|
71
|
+
subject,
|
|
59
72
|
html,
|
|
60
73
|
};
|
|
61
74
|
const transporter = cache.getTransport({ did: teamDid, config: emailConfig });
|
|
@@ -22,7 +22,12 @@ module.exports = {
|
|
|
22
22
|
return res.status(400).json({ error: 'Blocklet Studio can only be used for blocklets in development mode' });
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
-
const
|
|
25
|
+
const component = blocklet.children.find((c) => c.meta.name === blocklet.meta.name);
|
|
26
|
+
if (!component || !component.deployedFrom) {
|
|
27
|
+
return res.status(400).json({ error: 'Can not find current component' });
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
const schemaFile = path.join(component.deployedFrom, BLOCKLET_PREFERENCE_FILE);
|
|
26
31
|
if (fs.existsSync(schemaFile)) {
|
|
27
32
|
try {
|
|
28
33
|
const schema = JSON.parse(fs.readFileSync(schemaFile, 'utf8'));
|
|
@@ -41,7 +46,12 @@ module.exports = {
|
|
|
41
46
|
return res.status(400).json({ error: 'Blocklet Studio can only be used for blocklets in development mode' });
|
|
42
47
|
}
|
|
43
48
|
|
|
44
|
-
const
|
|
49
|
+
const component = blocklet.children.find((c) => c.meta.name === blocklet.meta.name);
|
|
50
|
+
if (!component || !component.deployedFrom) {
|
|
51
|
+
return res.status(400).json({ error: 'Can not find current component' });
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
const schemaFile = path.join(component.deployedFrom, BLOCKLET_PREFERENCE_FILE);
|
|
45
55
|
fs.writeFileSync(schemaFile, JSON.stringify(req.body, null, 2));
|
|
46
56
|
return res.json(req.body);
|
|
47
57
|
});
|
|
@@ -2,6 +2,7 @@ const {
|
|
|
2
2
|
validateReceiver,
|
|
3
3
|
validateNotification,
|
|
4
4
|
validateMessage,
|
|
5
|
+
NOTIFICATION_TYPES,
|
|
5
6
|
} = require('@blocklet/sdk/lib/validators/notification');
|
|
6
7
|
const { NODE_MODES } = require('@abtnode/constant');
|
|
7
8
|
const { getWalletDid } = require('@blocklet/sdk/lib/did');
|
|
@@ -90,10 +91,13 @@ const sendToDid = async ({ sender, receiver: rawDid, notification, options, node
|
|
|
90
91
|
}
|
|
91
92
|
});
|
|
92
93
|
}
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
94
|
+
// NOTICE: 目前只有 notification 的通知能够发送邮件,并且 type 可能为 undefined
|
|
95
|
+
if ([undefined, NOTIFICATION_TYPES.NOTIFICATION].includes(data.type)) {
|
|
96
|
+
for (const receiverEmail of receiverEmailList) {
|
|
97
|
+
sendEmail(receiverEmail, data, { teamDid: sender.appDid, node }).catch((error) => {
|
|
98
|
+
logger.error('Failed to send email', { error });
|
|
99
|
+
});
|
|
100
|
+
}
|
|
97
101
|
}
|
|
98
102
|
});
|
|
99
103
|
};
|
|
@@ -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>
|