@tangle-network/sandbox-ui 0.20.1 → 0.20.2
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/dist/globals.css +4 -0
- package/dist/integrations.js +81 -0
- package/dist/styles.css +4 -0
- package/package.json +1 -1
package/dist/globals.css
CHANGED
package/dist/integrations.js
CHANGED
|
@@ -20,6 +20,86 @@ function statusVariant(status) {
|
|
|
20
20
|
function defaultConnectorOf(provider) {
|
|
21
21
|
return provider.connectors?.[0]?.connectorId ?? provider.providerId;
|
|
22
22
|
}
|
|
23
|
+
var PROVIDER_LOGO_SLUGS = {
|
|
24
|
+
gmail: "gmail",
|
|
25
|
+
googlemail: "gmail",
|
|
26
|
+
google: "google",
|
|
27
|
+
"google-drive": "googledrive",
|
|
28
|
+
googledrive: "googledrive",
|
|
29
|
+
drive: "googledrive",
|
|
30
|
+
"google-calendar": "googlecalendar",
|
|
31
|
+
googlecalendar: "googlecalendar",
|
|
32
|
+
calendar: "googlecalendar",
|
|
33
|
+
"google-sheets": "googlesheets",
|
|
34
|
+
instagram: "instagram",
|
|
35
|
+
facebook: "facebook",
|
|
36
|
+
meta: "meta",
|
|
37
|
+
linkedin: "linkedin",
|
|
38
|
+
twitter: "x",
|
|
39
|
+
x: "x",
|
|
40
|
+
tiktok: "tiktok",
|
|
41
|
+
youtube: "youtube",
|
|
42
|
+
slack: "slack",
|
|
43
|
+
discord: "discord",
|
|
44
|
+
notion: "notion",
|
|
45
|
+
hubspot: "hubspot",
|
|
46
|
+
salesforce: "salesforce",
|
|
47
|
+
stripe: "stripe",
|
|
48
|
+
github: "github",
|
|
49
|
+
gitlab: "gitlab",
|
|
50
|
+
linear: "linear",
|
|
51
|
+
jira: "jira",
|
|
52
|
+
asana: "asana",
|
|
53
|
+
trello: "trello",
|
|
54
|
+
dropbox: "dropbox",
|
|
55
|
+
box: "box",
|
|
56
|
+
outlook: "microsoftoutlook",
|
|
57
|
+
"microsoft-outlook": "microsoftoutlook",
|
|
58
|
+
"microsoft-teams": "microsoftteams",
|
|
59
|
+
zoom: "zoom",
|
|
60
|
+
shopify: "shopify",
|
|
61
|
+
mailchimp: "mailchimp",
|
|
62
|
+
airtable: "airtable",
|
|
63
|
+
zendesk: "zendesk",
|
|
64
|
+
intercom: "intercom"
|
|
65
|
+
};
|
|
66
|
+
function normalizeProviderId(id) {
|
|
67
|
+
return id.toLowerCase().replace(/[_\s]+/g, "-").replace(/-(business|oauth|api|app|v\d+)$/g, "");
|
|
68
|
+
}
|
|
69
|
+
function providerLogoUrl(provider) {
|
|
70
|
+
if (provider.iconUrl) return provider.iconUrl;
|
|
71
|
+
const id = provider.providerId.toLowerCase();
|
|
72
|
+
const slug = PROVIDER_LOGO_SLUGS[id] ?? PROVIDER_LOGO_SLUGS[normalizeProviderId(id)];
|
|
73
|
+
return slug ? `https://cdn.simpleicons.org/${slug}` : void 0;
|
|
74
|
+
}
|
|
75
|
+
function ProviderLogo({ provider }) {
|
|
76
|
+
const [failed, setFailed] = React.useState(false);
|
|
77
|
+
const url = providerLogoUrl(provider);
|
|
78
|
+
const label = (provider.displayName ?? provider.providerId).trim();
|
|
79
|
+
const initial = label.charAt(0).toUpperCase() || "?";
|
|
80
|
+
if (!url || failed) {
|
|
81
|
+
return /* @__PURE__ */ jsx(
|
|
82
|
+
"span",
|
|
83
|
+
{
|
|
84
|
+
className: "flex size-6 shrink-0 items-center justify-center rounded bg-muted text-[11px] font-semibold text-muted-foreground",
|
|
85
|
+
"aria-hidden": true,
|
|
86
|
+
children: initial
|
|
87
|
+
}
|
|
88
|
+
);
|
|
89
|
+
}
|
|
90
|
+
return /* @__PURE__ */ jsx(
|
|
91
|
+
"img",
|
|
92
|
+
{
|
|
93
|
+
src: url,
|
|
94
|
+
alt: "",
|
|
95
|
+
width: 24,
|
|
96
|
+
height: 24,
|
|
97
|
+
loading: "lazy",
|
|
98
|
+
className: "size-6 shrink-0 rounded object-contain",
|
|
99
|
+
onError: () => setFailed(true)
|
|
100
|
+
}
|
|
101
|
+
);
|
|
102
|
+
}
|
|
23
103
|
function buildConnectionIndex(connections) {
|
|
24
104
|
const index = /* @__PURE__ */ new Map();
|
|
25
105
|
for (const conn of connections) {
|
|
@@ -78,6 +158,7 @@ function IntegrationsPanel({
|
|
|
78
158
|
/* @__PURE__ */ jsxs(CardHeader, { className: "flex flex-row items-start justify-between gap-2 space-y-0", children: [
|
|
79
159
|
/* @__PURE__ */ jsxs("div", { className: "space-y-1", children: [
|
|
80
160
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
|
|
161
|
+
/* @__PURE__ */ jsx(ProviderLogo, { provider }),
|
|
81
162
|
/* @__PURE__ */ jsx("h3", { className: "text-sm font-semibold capitalize text-foreground", children: headline }),
|
|
82
163
|
live ? /* @__PURE__ */ jsx(Badge, { variant: statusVariant(live.status), className: "text-xs", children: live.status }) : null
|
|
83
164
|
] }),
|
package/dist/styles.css
CHANGED
package/package.json
CHANGED