@darajs/components 1.8.4 → 1.8.6
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/common/markdown/markdown.d.ts.map +1 -1
- package/dist/common/markdown/markdown.js +5 -168
- package/dist/common/markdown/markdown.js.map +1 -1
- package/dist/dara_components-1.8.6-py3-none-any.whl +0 -0
- package/dist/smart/chat/chat.d.ts.map +1 -1
- package/dist/smart/chat/chat.js +58 -9
- package/dist/smart/chat/chat.js.map +1 -1
- package/dist/umd/dara.components.umd.js +13561 -12878
- package/package.json +14 -16
- package/dist/dara_components-1.8.4-py3-none-any.whl +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"markdown.d.ts","sourceRoot":"","sources":["../../../js/common/markdown/markdown.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"markdown.d.ts","sourceRoot":"","sources":["../../../js/common/markdown/markdown.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,QAAQ,EAA8C,MAAM,cAAc,CAAC;AAG1G,UAAU,aAAc,SAAQ,oBAAoB;IAChD;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,QAAQ,EAAE,QAAQ,CAAC,MAAM,CAAC,GAAG,MAAM,CAAC;CACvC;AAID;;GAEG;AACH,iBAAS,QAAQ,CAAC,KAAK,EAAE,aAAa,GAAG,GAAG,CAAC,OAAO,CAoBnD;AAED,eAAe,QAAQ,CAAC"}
|
|
@@ -1,173 +1,8 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import ReactMarkdown from 'react-markdown';
|
|
3
2
|
import rehypeRaw from 'rehype-raw';
|
|
4
|
-
import remarkGfm from 'remark-gfm';
|
|
5
3
|
import { injectCss, useComponentStyles, useVariable } from '@darajs/core';
|
|
6
|
-
import
|
|
7
|
-
const
|
|
8
|
-
/*
|
|
9
|
-
* Apply some base styles to the markdown content so it looks good by default
|
|
10
|
-
* Inspired by https://tailwindcss.com/docs/typography-plugin
|
|
11
|
-
*/
|
|
12
|
-
p {
|
|
13
|
-
margin-top: 1.25rem;
|
|
14
|
-
margin-bottom: 1.25rem;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
blockquote {
|
|
18
|
-
/* stylelint-disable declaration-property-value-no-unknown */
|
|
19
|
-
quotes: '"\\201C""\\201D""\\2018""\\2019"';
|
|
20
|
-
/* stylelint-enable declaration-property-value-no-unknown */
|
|
21
|
-
|
|
22
|
-
margin-top: 1.5rem;
|
|
23
|
-
margin-bottom: 1.5rem;
|
|
24
|
-
padding-left: 1rem;
|
|
25
|
-
|
|
26
|
-
font-weight: 500;
|
|
27
|
-
font-style: italic;
|
|
28
|
-
color: ${(props) => props.theme.colors.grey6};
|
|
29
|
-
|
|
30
|
-
border-left: 0.25rem solid ${(props) => props.theme.colors.grey3};
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
h1 {
|
|
34
|
-
margin-top: 2rem;
|
|
35
|
-
margin-bottom: 1rem;
|
|
36
|
-
font-size: 2.5rem;
|
|
37
|
-
line-height: 1.1;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
h2 {
|
|
41
|
-
margin-top: 2rem;
|
|
42
|
-
margin-bottom: 1rem;
|
|
43
|
-
font-size: 1.5rem;
|
|
44
|
-
line-height: 1.3;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
h3 {
|
|
48
|
-
margin-top: 1.6rem;
|
|
49
|
-
margin-bottom: 0.6rem;
|
|
50
|
-
font-size: 1.25rem;
|
|
51
|
-
line-height: 1.25;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
h4 {
|
|
55
|
-
margin-top: 1.5rem;
|
|
56
|
-
margin-bottom: 0.5rem;
|
|
57
|
-
line-height: 1.5;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
img,
|
|
61
|
-
figure,
|
|
62
|
-
video {
|
|
63
|
-
margin-top: 1.5rem;
|
|
64
|
-
margin-bottom: 1.5rem;
|
|
65
|
-
|
|
66
|
-
* {
|
|
67
|
-
margin-top: 0;
|
|
68
|
-
margin-bottom: 0;
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
code {
|
|
73
|
-
font-size: 0.9rem;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
h2 code {
|
|
77
|
-
font-size: 0.875rem;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
h3 code {
|
|
81
|
-
font-size: 0.9rem;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
pre {
|
|
85
|
-
overflow-x: auto;
|
|
86
|
-
|
|
87
|
-
margin-top: 1.7rem;
|
|
88
|
-
margin-bottom: 1.7rem;
|
|
89
|
-
padding: 0.85rem 1.15rem;
|
|
90
|
-
|
|
91
|
-
font-size: 0.9rem;
|
|
92
|
-
line-height: 1.7;
|
|
93
|
-
|
|
94
|
-
border-radius: 0.375rem;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
hr {
|
|
98
|
-
margin-top: 3rem;
|
|
99
|
-
margin-bottom: 3rem;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
hr + *,
|
|
103
|
-
h2 + *,
|
|
104
|
-
h3 + *,
|
|
105
|
-
h4 + * {
|
|
106
|
-
margin-top: 0;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
ol,
|
|
110
|
-
ul {
|
|
111
|
-
margin-top: 1.25rem;
|
|
112
|
-
margin-bottom: 1.25rem;
|
|
113
|
-
padding-left: 1.625rem;
|
|
114
|
-
|
|
115
|
-
li {
|
|
116
|
-
margin-top: 0.5rem;
|
|
117
|
-
margin-bottom: 0.5rem;
|
|
118
|
-
padding-left: 0.375rem;
|
|
119
|
-
|
|
120
|
-
p {
|
|
121
|
-
margin-top: 0.75rem;
|
|
122
|
-
margin-bottom: 0.75rem;
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
*:first-child {
|
|
126
|
-
margin-top: 1.25rem;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
*:last-child {
|
|
130
|
-
margin-bottom: 1.25rem;
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
table {
|
|
136
|
-
font-size: 0.875rem;
|
|
137
|
-
line-height: 1.7;
|
|
138
|
-
|
|
139
|
-
thead {
|
|
140
|
-
th {
|
|
141
|
-
padding-right: 0.5rem;
|
|
142
|
-
padding-bottom: 0.5rem;
|
|
143
|
-
padding-left: 0.5rem;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
th:first-child {
|
|
147
|
-
padding-left: 0;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
th:last-child {
|
|
151
|
-
padding-right: 0;
|
|
152
|
-
}
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
tbody {
|
|
156
|
-
td {
|
|
157
|
-
padding: 0.5rem;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
td:first-child {
|
|
161
|
-
padding-left: 0;
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
td:last-child {
|
|
165
|
-
padding-right: 0;
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
`;
|
|
170
|
-
const CustomMarkdown = injectCss(_CustomMarkdown);
|
|
4
|
+
import { Markdown as UiMarkdown } from '@darajs/ui-components';
|
|
5
|
+
const CustomMarkdown = injectCss(UiMarkdown);
|
|
171
6
|
/**
|
|
172
7
|
* A component for rendering markdown
|
|
173
8
|
*/
|
|
@@ -178,7 +13,9 @@ function Markdown(props) {
|
|
|
178
13
|
if (props.html_raw) {
|
|
179
14
|
rehypePlugins.push(rehypeRaw);
|
|
180
15
|
}
|
|
181
|
-
return (_jsx(CustomMarkdown, { "$rawCss": css, className: props.className, style: style,
|
|
16
|
+
return (_jsx(CustomMarkdown, { "$rawCss": css, className: props.className, style: style, markdown: markdown,
|
|
17
|
+
// @ts-expect-error rehype type
|
|
18
|
+
rehypePlugins: rehypePlugins }));
|
|
182
19
|
}
|
|
183
20
|
export default Markdown;
|
|
184
21
|
//# sourceMappingURL=markdown.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"markdown.js","sourceRoot":"","sources":["../../../js/common/markdown/markdown.tsx"],"names":[],"mappings":";AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"markdown.js","sourceRoot":"","sources":["../../../js/common/markdown/markdown.tsx"],"names":[],"mappings":";AAAA,OAAO,SAAS,MAAM,YAAY,CAAC;AAEnC,OAAO,EAAkC,SAAS,EAAE,kBAAkB,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAC1G,OAAO,EAAE,QAAQ,IAAI,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAa/D,MAAM,cAAc,GAAG,SAAS,CAAC,UAAU,CAAC,CAAC;AAE7C;;GAEG;AACH,SAAS,QAAQ,CAAC,KAAoB;IAClC,MAAM,CAAC,KAAK,EAAE,GAAG,CAAC,GAAG,kBAAkB,CAAC,KAAK,CAAC,CAAC;IAC/C,MAAM,CAAC,QAAQ,CAAC,GAAG,WAAW,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC;IAE/C,MAAM,aAAa,GAAG,EAAE,CAAC;IAEzB,IAAI,KAAK,CAAC,QAAQ,EAAE,CAAC;QACjB,aAAa,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;IAClC,CAAC;IAED,OAAO,CACH,KAAC,cAAc,eACF,GAAG,EACZ,SAAS,EAAE,KAAK,CAAC,SAAS,EAC1B,KAAK,EAAE,KAAK,EACZ,QAAQ,EAAE,QAAQ;QAClB,+BAA+B;QAC/B,aAAa,EAAE,aAAa,GAC9B,CACL,CAAC;AACN,CAAC;AAED,eAAe,QAAQ,CAAC"}
|
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chat.d.ts","sourceRoot":"","sources":["../../../js/smart/chat/chat.tsx"],"names":[],"mappings":"AAEA,OAAO,EAEH,oBAAoB,EAEpB,QAAQ,EAQX,MAAM,cAAc,CAAC;AAEtB,OAAO,EAAE,OAAO,EAA0C,MAAM,uBAAuB,CAAC;AAGxF,UAAU,SAAU,SAAQ,oBAAoB;IAC5C,yCAAyC;IACzC,SAAS,EAAE,MAAM,CAAC;IAClB,+CAA+C;IAC/C,KAAK,CAAC,EAAE,QAAQ,CAAC,OAAO,EAAE,CAAC,CAAC;CAC/B;
|
|
1
|
+
{"version":3,"file":"chat.d.ts","sourceRoot":"","sources":["../../../js/smart/chat/chat.tsx"],"names":[],"mappings":"AAEA,OAAO,EAEH,oBAAoB,EAEpB,QAAQ,EAQX,MAAM,cAAc,CAAC;AAEtB,OAAO,EAAE,OAAO,EAA0C,MAAM,uBAAuB,CAAC;AAGxF,UAAU,SAAU,SAAQ,oBAAoB;IAC5C,yCAAyC;IACzC,SAAS,EAAE,MAAM,CAAC;IAClB,+CAA+C;IAC/C,KAAK,CAAC,EAAE,QAAQ,CAAC,OAAO,EAAE,CAAC,CAAC;CAC/B;AAkID;;;;GAIG;AACH,iBAAS,IAAI,CAAC,KAAK,EAAE,SAAS,GAAG,GAAG,CAAC,OAAO,CAyF3C;AAED,eAAe,IAAI,CAAC"}
|
package/dist/smart/chat/chat.js
CHANGED
|
@@ -7,31 +7,37 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
7
7
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
8
|
});
|
|
9
9
|
};
|
|
10
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
10
|
+
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
11
11
|
import * as React from 'react';
|
|
12
12
|
import { handleAuthErrors, injectCss, request, useComponentStyles, useRequestExtras, useUser, useVariable, } from '@darajs/core';
|
|
13
13
|
import styled, { useTheme } from '@darajs/styled-components';
|
|
14
14
|
import { Chat as UiChat } from '@darajs/ui-components';
|
|
15
15
|
import { HTTP_METHOD, validateResponse } from '@darajs/ui-utils';
|
|
16
|
-
const
|
|
16
|
+
const ThreadWrapper = styled.div `
|
|
17
17
|
pointer-events: auto;
|
|
18
18
|
|
|
19
19
|
position: fixed;
|
|
20
|
-
z-index: 999;
|
|
21
20
|
right: 1rem;
|
|
22
21
|
bottom: -0.1rem;
|
|
22
|
+
|
|
23
|
+
margin: 1rem;
|
|
24
|
+
|
|
25
|
+
border-radius: 0.4rem;
|
|
23
26
|
`;
|
|
24
27
|
const ChatButton = styled.button `
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
28
|
+
position: absolute;
|
|
29
|
+
right: 0.5rem;
|
|
30
|
+
bottom: 0.5rem;
|
|
31
|
+
|
|
32
|
+
width: 32px;
|
|
33
|
+
height: 32px;
|
|
34
|
+
padding: 7px 6px;
|
|
29
35
|
|
|
30
36
|
color: ${(props) => props.theme.colors.background};
|
|
31
37
|
|
|
32
38
|
background-color: ${(props) => props.theme.colors.primary};
|
|
33
39
|
border: none;
|
|
34
|
-
border-radius:
|
|
40
|
+
border-radius: 2rem;
|
|
35
41
|
|
|
36
42
|
:hover {
|
|
37
43
|
background-color: ${(props) => props.theme.colors.primaryHover};
|
|
@@ -92,6 +98,31 @@ function sendNewMessage(payload, extras) {
|
|
|
92
98
|
}
|
|
93
99
|
});
|
|
94
100
|
}
|
|
101
|
+
/**
|
|
102
|
+
* Check if the given selector has been rendered more than once in the document
|
|
103
|
+
*
|
|
104
|
+
* @param selector the selector to check
|
|
105
|
+
*/
|
|
106
|
+
function checkMoreThanOneRenderedElement(selector) {
|
|
107
|
+
const elements = document.querySelectorAll(selector);
|
|
108
|
+
return elements.length > 1;
|
|
109
|
+
}
|
|
110
|
+
/**
|
|
111
|
+
* Get the highest z-index of the elements with the given selector
|
|
112
|
+
*
|
|
113
|
+
* @param selector the selector to get the z-index from
|
|
114
|
+
*/
|
|
115
|
+
function getHighestZIndex(selector) {
|
|
116
|
+
const elements = document.querySelectorAll(selector);
|
|
117
|
+
let highest = 998; // Start with 998
|
|
118
|
+
elements.forEach((element) => {
|
|
119
|
+
const zIndex = parseInt(window.getComputedStyle(element).zIndex);
|
|
120
|
+
if (zIndex > highest) {
|
|
121
|
+
highest = zIndex;
|
|
122
|
+
}
|
|
123
|
+
});
|
|
124
|
+
return highest;
|
|
125
|
+
}
|
|
95
126
|
/**
|
|
96
127
|
* The Chat component switches between a chat button and a chat sidebar, allowing the user to interact with a chat.
|
|
97
128
|
*
|
|
@@ -102,6 +133,8 @@ function Chat(props) {
|
|
|
102
133
|
const [style, css] = useComponentStyles(props);
|
|
103
134
|
const [value, setValue] = useVariable(props.value);
|
|
104
135
|
const [showChat, setShowChat] = React.useState(false);
|
|
136
|
+
const [areThereOtherChats, setAreThereOtherChats] = React.useState(false);
|
|
137
|
+
const [zIndex, setZIndex] = React.useState(998);
|
|
105
138
|
const user = useUser();
|
|
106
139
|
const theme = useTheme();
|
|
107
140
|
const extras = useRequestExtras();
|
|
@@ -121,7 +154,23 @@ function Chat(props) {
|
|
|
121
154
|
}
|
|
122
155
|
setValue(newValue);
|
|
123
156
|
};
|
|
124
|
-
|
|
157
|
+
const onClickChatButton = () => {
|
|
158
|
+
setShowChat(true);
|
|
159
|
+
setZIndex(getHighestZIndex('.chat-thread') + 1);
|
|
160
|
+
// we need to update here so that if the chat button is clicked again when it is already open, the background color is updated
|
|
161
|
+
setAreThereOtherChats(checkMoreThanOneRenderedElement('.chat-thread'));
|
|
162
|
+
};
|
|
163
|
+
React.useLayoutEffect(() => {
|
|
164
|
+
setAreThereOtherChats(checkMoreThanOneRenderedElement('.chat-thread'));
|
|
165
|
+
}, [showChat]);
|
|
166
|
+
return (_jsxs(_Fragment, { children: [showChat && (
|
|
167
|
+
// we set the z-index so that the latest chat thread opened is always on top, and if there is a chat thread open, we set the background color so that the transparency does not show the thread behind
|
|
168
|
+
_jsx(ThreadWrapper, { className: "chat-thread", style: {
|
|
169
|
+
zIndex,
|
|
170
|
+
backgroundColor: areThereOtherChats ? theme.colors.background : 'transparent',
|
|
171
|
+
}, children: _jsx(StyledChat, { "$rawCss": css, className: props.className, onClose: () => setShowChat(false), onUpdate: onUpdate,
|
|
172
|
+
// TODO: remove margin 0 when dara-ui is updated to not set it
|
|
173
|
+
style: Object.assign({ margin: 0 }, style), value: value, activeUser: parseUserData(userData) }) })), _jsx(ChatButton, { onClick: onClickChatButton, children: _jsxs("svg", { fill: "none", height: "20", viewBox: "0 0 32 32", width: "20", xmlns: "http://www.w3.org/2000/svg", children: [_jsx("rect", { fill: "none", height: "24", rx: "3", width: "30", x: "1", y: "1.33594" }), _jsx("rect", { height: "24", rx: "3", stroke: theme.colors.background, strokeWidth: "2", width: "30", x: "1", y: "1.33594" }), _jsx("path", { d: "M8 8.33594H24", stroke: theme.colors.background, strokeLinecap: "round", strokeWidth: "2" }), _jsx("path", { d: "M8 13.3359H24", stroke: theme.colors.background, strokeLinecap: "round", strokeWidth: "2" }), _jsx("path", { d: "M8 18.3359H24", stroke: theme.colors.background, strokeLinecap: "round", strokeWidth: "2" }), _jsx("path", { d: "M18.5981 26.1641L16 30.6641L13.4019 26.1641L18.5981 26.1641Z", fill: theme.colors.background, stroke: theme.colors.background }), _jsx("path", { d: "M16 28.3359L13.4019 23.8359L18.5981 23.8359L16 28.3359Z", fill: "none" })] }) })] }));
|
|
125
174
|
}
|
|
126
175
|
export default Chat;
|
|
127
176
|
//# sourceMappingURL=chat.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chat.js","sourceRoot":"","sources":["../../../js/smart/chat/chat.tsx"],"names":[],"mappings":";;;;;;;;;;AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,EAKH,gBAAgB,EAChB,SAAS,EACT,OAAO,EACP,kBAAkB,EAClB,gBAAgB,EAChB,OAAO,EACP,WAAW,GACd,MAAM,cAAc,CAAC;AACtB,OAAO,MAAM,EAAE,EAAE,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AAC7D,OAAO,EAAW,IAAI,IAAI,MAAM,EAA0B,MAAM,uBAAuB,CAAC;AACxF,OAAO,EAAE,WAAW,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AAejE,MAAM,
|
|
1
|
+
{"version":3,"file":"chat.js","sourceRoot":"","sources":["../../../js/smart/chat/chat.tsx"],"names":[],"mappings":"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"}
|