shared-design-system 1.92.0 → 1.93.0
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/src/components/AuthenticatedIcon.d.ts +14 -0
- package/dist/src/components/AuthenticatedIcon.js +114 -0
- package/dist/src/components/AuthenticatedIcon.js.map +1 -0
- package/dist/src/components/Box.d.ts +1 -0
- package/dist/src/components/Box.js +2 -1
- package/dist/src/components/Box.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface AuthenticatedIconProps {
|
|
3
|
+
iconPath?: string;
|
|
4
|
+
className?: string;
|
|
5
|
+
style?: React.CSSProperties;
|
|
6
|
+
index: number;
|
|
7
|
+
token?: string | null;
|
|
8
|
+
apiBaseUrl?: string;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* A shared component to render icons with authenticated fetch.
|
|
12
|
+
* Supports SVG (inline), PNG, JPG (via Blob URL).
|
|
13
|
+
*/
|
|
14
|
+
export declare const AuthenticatedIcon: React.FC<AuthenticatedIconProps>;
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { useState, useEffect } from 'react';
|
|
3
|
+
/**
|
|
4
|
+
* A shared component to render icons with authenticated fetch.
|
|
5
|
+
* Supports SVG (inline), PNG, JPG (via Blob URL).
|
|
6
|
+
*/
|
|
7
|
+
export const AuthenticatedIcon = ({ iconPath, className, style, index, token, apiBaseUrl = "" }) => {
|
|
8
|
+
const [content, setContent] = useState(null);
|
|
9
|
+
const [error, setError] = useState(false);
|
|
10
|
+
const [loading, setLoading] = useState(false);
|
|
11
|
+
useEffect(() => {
|
|
12
|
+
if (!iconPath || !iconPath.trim()) {
|
|
13
|
+
setContent(null);
|
|
14
|
+
return;
|
|
15
|
+
}
|
|
16
|
+
const trimmedPath = iconPath.trim();
|
|
17
|
+
// 1. Inline SVG Check
|
|
18
|
+
if (trimmedPath.toLowerCase().startsWith("<svg")) {
|
|
19
|
+
setContent(trimmedPath);
|
|
20
|
+
return;
|
|
21
|
+
}
|
|
22
|
+
// 2. Absolute/Data URL Check
|
|
23
|
+
if (trimmedPath.startsWith("http://") || trimmedPath.startsWith("https://") || trimmedPath.startsWith("data:")) {
|
|
24
|
+
setContent(trimmedPath);
|
|
25
|
+
return;
|
|
26
|
+
}
|
|
27
|
+
// 3. Authenticated Download Logic
|
|
28
|
+
const fetchIcon = async () => {
|
|
29
|
+
setLoading(true);
|
|
30
|
+
setError(false);
|
|
31
|
+
try {
|
|
32
|
+
let fullUrl = "";
|
|
33
|
+
// Use apiBaseUrl if available, otherwise assume relative path
|
|
34
|
+
const normalizedBase = apiBaseUrl.replace(/\/+$/, "");
|
|
35
|
+
if (trimmedPath.includes('buckets/download')) {
|
|
36
|
+
// If it's already a full-ish path
|
|
37
|
+
const pathOnly = trimmedPath.startsWith('http')
|
|
38
|
+
? new URL(trimmedPath).pathname + new URL(trimmedPath).search
|
|
39
|
+
: trimmedPath;
|
|
40
|
+
const normalizedPath = pathOnly.startsWith('/') ? pathOnly : `/${pathOnly}`;
|
|
41
|
+
if (trimmedPath.startsWith('http')) {
|
|
42
|
+
fullUrl = trimmedPath;
|
|
43
|
+
}
|
|
44
|
+
else {
|
|
45
|
+
fullUrl = `${normalizedBase}${normalizedPath}`;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
else {
|
|
49
|
+
// Construct using standard pattern
|
|
50
|
+
fullUrl = `${normalizedBase}/api/buckets/download?filePath=${encodeURIComponent(trimmedPath)}`;
|
|
51
|
+
}
|
|
52
|
+
const headers = {
|
|
53
|
+
'Accept': 'text/plain, image/png, image/*, */*',
|
|
54
|
+
};
|
|
55
|
+
if (token) {
|
|
56
|
+
headers['Authorization'] = `Bearer ${token}`;
|
|
57
|
+
}
|
|
58
|
+
const response = await fetch(fullUrl, { headers });
|
|
59
|
+
if (!response.ok)
|
|
60
|
+
throw new Error('Icon fetch failed');
|
|
61
|
+
const blob = await response.blob();
|
|
62
|
+
const contentType = response.headers.get('content-type') || '';
|
|
63
|
+
if (contentType.includes('svg') || trimmedPath.toLowerCase().endsWith('.svg')) {
|
|
64
|
+
const text = await blob.text();
|
|
65
|
+
setContent(text);
|
|
66
|
+
}
|
|
67
|
+
else {
|
|
68
|
+
const objectUrl = URL.createObjectURL(blob);
|
|
69
|
+
setContent(objectUrl);
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
catch (err) {
|
|
73
|
+
console.error('Error fetching icon:', err);
|
|
74
|
+
setError(true);
|
|
75
|
+
}
|
|
76
|
+
finally {
|
|
77
|
+
setLoading(false);
|
|
78
|
+
}
|
|
79
|
+
};
|
|
80
|
+
fetchIcon();
|
|
81
|
+
return () => {
|
|
82
|
+
if (content && content.startsWith('blob:')) {
|
|
83
|
+
URL.revokeObjectURL(content);
|
|
84
|
+
}
|
|
85
|
+
};
|
|
86
|
+
}, [iconPath, token, apiBaseUrl]);
|
|
87
|
+
if (!iconPath || error) {
|
|
88
|
+
return _jsx(DefaultMfeIcon, { index: index, className: className, style: style });
|
|
89
|
+
}
|
|
90
|
+
if (loading) {
|
|
91
|
+
return (_jsx("div", { className: `${className} ds-icon-loading`, style: { ...style, backgroundColor: '#f1f5f9', borderRadius: '4px', animation: 'pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite' } }));
|
|
92
|
+
}
|
|
93
|
+
if (content) {
|
|
94
|
+
const isSvg = content.trim().toLowerCase().startsWith('<svg');
|
|
95
|
+
if (isSvg) {
|
|
96
|
+
return (_jsx("span", { className: className, style: { ...style, display: 'flex', alignItems: 'center', justifyContent: 'center' }, dangerouslySetInnerHTML: { __html: content } }));
|
|
97
|
+
}
|
|
98
|
+
return (_jsx("img", { src: content, alt: "Icon", className: className, style: { ...style, objectFit: 'contain' }, onError: () => setError(true) }));
|
|
99
|
+
}
|
|
100
|
+
return null;
|
|
101
|
+
};
|
|
102
|
+
const DefaultMfeIcon = ({ index, className, style }) => {
|
|
103
|
+
const icons = [
|
|
104
|
+
"M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6",
|
|
105
|
+
"M9 12l2 2 4-4M7.835 4.697a3.42 3.42 0 001.946-.806 3.42 3.42 0 014.438 0 3.42 3.42 0 001.946.806 3.42 3.42 0 013.138 3.138 3.42 3.42 0 00.806 1.946 3.42 3.42 0 010 4.438 3.42 3.42 0 00-.806 1.946 3.42 3.42 0 01-3.138 3.138 3.42 3.42 0 00-1.946.806 3.42 3.42 0 01-4.438 0 3.42 3.42 0 00-1.946-.806 3.42 3.42 0 01-3.138-3.138 3.42 3.42 0 00-.806-1.946 3.42 3.42 0 010-4.438 3.42 3.42 0 00.806-1.946 3.42 3.42 0 013.138-3.138z",
|
|
106
|
+
"M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197M13 7a4 4 0 11-8 0 4 4 0 018 0z",
|
|
107
|
+
"M3 7v10a2 2 0 002 2h14a2 2 0 002-2V9a2 2 0 00-2-2h-6l-2-2H5a2 2 0 00-2 2z",
|
|
108
|
+
"M7 21h10a2 2 0 002-2V9.414a1 1 0 00-.293-.707l-5.414-5.414A1 1 0 0012.586 3H7a2 2 0 00-2 2v14a2 2 0 002 2z",
|
|
109
|
+
"M21 13.255A23.931 23.931 0 0112 15c-3.183 0-6.22-.62-9-1.745M16 6V4a2 2 0 00-2-2h-4a2 2 0 00-2 2v2m4 6h.01M5 20h14a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z",
|
|
110
|
+
];
|
|
111
|
+
const path = icons[index % icons.length];
|
|
112
|
+
return (_jsx("svg", { className: className, fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", style: style, children: _jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", d: path }) }));
|
|
113
|
+
};
|
|
114
|
+
//# sourceMappingURL=AuthenticatedIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AuthenticatedIcon.js","sourceRoot":"","sources":["../../../src/components/AuthenticatedIcon.tsx"],"names":[],"mappings":"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"}
|
|
@@ -34,5 +34,6 @@ export interface BoxProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
34
34
|
zIndex?: React.CSSProperties['zIndex'];
|
|
35
35
|
overflow?: React.CSSProperties['overflow'];
|
|
36
36
|
cursor?: React.CSSProperties['cursor'];
|
|
37
|
+
border?: React.CSSProperties['border'];
|
|
37
38
|
}
|
|
38
39
|
export declare const Box: React.ForwardRefExoticComponent<BoxProps & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -13,7 +13,7 @@ const getColorValue = (val) => {
|
|
|
13
13
|
return tokens.color[val];
|
|
14
14
|
return val;
|
|
15
15
|
};
|
|
16
|
-
export const Box = React.forwardRef(({ p, pt, pb, pl, pr, px, py, m, mt, mb, ml, mr, mx, my, bg, color, borderRadius, boxShadow, display, flexDirection, alignItems, justifyContent, gap, width, height, position, top, bottom, left, right, zIndex, overflow, cursor, style = {}, className = '', children, ...props }, ref) => {
|
|
16
|
+
export const Box = React.forwardRef(({ p, pt, pb, pl, pr, px, py, m, mt, mb, ml, mr, mx, my, bg, color, borderRadius, boxShadow, display, flexDirection, alignItems, justifyContent, gap, width, height, position, top, bottom, left, right, zIndex, overflow, cursor, border, style = {}, className = '', children, ...props }, ref) => {
|
|
17
17
|
const boxStyle = {
|
|
18
18
|
padding: getSpacingValue(p),
|
|
19
19
|
paddingTop: getSpacingValue(pt !== null && pt !== void 0 ? pt : py),
|
|
@@ -44,6 +44,7 @@ export const Box = React.forwardRef(({ p, pt, pb, pl, pr, px, py, m, mt, mb, ml,
|
|
|
44
44
|
zIndex,
|
|
45
45
|
overflow,
|
|
46
46
|
cursor,
|
|
47
|
+
border,
|
|
47
48
|
...style,
|
|
48
49
|
};
|
|
49
50
|
return (_jsx("div", { ref: ref, style: boxStyle, className: `ds-box ${className}`, ...props, children: children }));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Box.js","sourceRoot":"","sources":["../../../src/components/Box.tsx"],"names":[],"mappings":";AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"Box.js","sourceRoot":"","sources":["../../../src/components/Box.tsx"],"names":[],"mappings":"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"}
|