@rolder/kit 3.0.0-alpha.4 → 3.0.0-alpha.40

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.
Files changed (134) hide show
  1. package/dist/ai/index.d.ts +2 -0
  2. package/dist/ai/index.js +2 -0
  3. package/dist/ai/ui/{conversation → chat}/Empty.js +5 -4
  4. package/dist/ai/ui/chat/File.d.ts +3 -0
  5. package/dist/ai/ui/{conversation → chat}/File.js +10 -8
  6. package/dist/ai/ui/chat/FileIcon.js +43 -0
  7. package/dist/ai/ui/{conversation → chat}/Loader.js +4 -3
  8. package/dist/ai/ui/chat/Message.d.ts +3 -0
  9. package/dist/ai/ui/chat/Message.js +28 -0
  10. package/dist/ai/ui/chat/Messages.d.ts +2 -0
  11. package/dist/ai/ui/chat/Messages.js +9 -0
  12. package/dist/ai/ui/chat/Root.d.ts +8 -0
  13. package/dist/ai/ui/chat/Root.js +22 -0
  14. package/dist/ai/ui/chat/chatInput/File.js +72 -0
  15. package/dist/ai/ui/chat/chatInput/FileIcon.js +43 -0
  16. package/dist/ai/ui/{promptInput → chat/chatInput}/Footer.js +4 -1
  17. package/dist/ai/ui/chat/chatInput/Root.d.ts +9 -0
  18. package/dist/ai/ui/chat/chatInput/Root.js +25 -0
  19. package/dist/ai/ui/chat/chatInput/Submit.js +24 -0
  20. package/dist/ai/ui/{promptInput → chat/chatInput}/Textarea.js +9 -7
  21. package/dist/ai/ui/{promptInput → chat/chatInput}/index.d.ts +2 -3
  22. package/dist/ai/ui/{promptInput → chat/chatInput}/index.js +2 -2
  23. package/dist/ai/ui/chat/chatInput/store/file.d.ts +8 -0
  24. package/dist/ai/ui/chat/chatInput/store/file.js +32 -0
  25. package/dist/ai/ui/chat/chatInput/store/fileErrorNotificaton.d.ts +2 -0
  26. package/dist/ai/ui/chat/chatInput/store/fileErrorNotificaton.js +21 -0
  27. package/dist/ai/ui/chat/chatInput/store/index.d.ts +2 -0
  28. package/dist/ai/ui/chat/chatInput/store/index.js +2 -0
  29. package/dist/ai/ui/chat/chatInput/store/input.d.ts +13 -0
  30. package/dist/ai/ui/chat/chatInput/store/input.js +80 -0
  31. package/dist/ai/ui/chat/chatInput/store/parseFile.d.ts +2 -0
  32. package/dist/ai/ui/chat/chatInput/store/parseFile.js +23 -0
  33. package/dist/ai/ui/chat/index.d.ts +14 -0
  34. package/dist/ai/ui/{conversation → chat}/index.js +6 -3
  35. package/dist/ai/ui/chat/store/index.d.ts +2 -0
  36. package/dist/ai/ui/chat/store/index.js +2 -0
  37. package/dist/ai/ui/chat/store/messages.d.ts +18 -0
  38. package/dist/ai/ui/chat/store/messages.js +89 -0
  39. package/dist/ai/ui/chat/store/states.d.ts +11 -0
  40. package/dist/ai/ui/chat/store/states.js +17 -0
  41. package/dist/ai/ui/index.d.ts +1 -0
  42. package/dist/ai/ui/index.js +1 -0
  43. package/dist/ai/utils/index.d.ts +2 -0
  44. package/dist/ai/utils/index.js +2 -0
  45. package/dist/app/AppDefaults.js +1 -1
  46. package/dist/app/DefaultApp.js +1 -1
  47. package/dist/app/cookieColorSchemeManager.js +1 -1
  48. package/dist/app/defaultTheme.d.ts +1 -1
  49. package/dist/app/index.d.ts +4 -0
  50. package/dist/app/index.js +4 -0
  51. package/dist/hooks/index.d.ts +2 -0
  52. package/dist/hooks/index.js +2 -0
  53. package/dist/index.d.ts +4 -16
  54. package/dist/index.js +4 -17
  55. package/dist/styles.css +3 -3
  56. package/dist/tanstackFunctions/cookie/index.d.ts +3 -0
  57. package/dist/tanstackFunctions/cookie/index.js +4 -0
  58. package/dist/tanstackFunctions/index.d.ts +2 -0
  59. package/dist/tanstackFunctions/index.js +2 -0
  60. package/dist/tanstackFunctions/s3/getS3Client.d.ts +2 -0
  61. package/dist/tanstackFunctions/s3/getS3Client.js +18 -0
  62. package/dist/tanstackFunctions/s3/getSignedFileUrlFn.d.ts +4 -0
  63. package/dist/tanstackFunctions/s3/getSignedFileUrlFn.js +21 -0
  64. package/dist/tanstackFunctions/s3/index.d.ts +2 -0
  65. package/dist/tanstackFunctions/s3/index.js +2 -0
  66. package/dist/tanstackFunctions/s3/uploadRequest.d.ts +3 -0
  67. package/dist/tanstackFunctions/s3/uploadRequest.js +21 -0
  68. package/dist/ui/AnimatedChevron.d.ts +2 -2
  69. package/dist/ui/AnimatedChevron.js +7 -25
  70. package/dist/ui/JsonInput.js +1 -1
  71. package/dist/ui/editor/Toolbar.js +4 -22
  72. package/dist/ui/error/index.d.ts +4 -4
  73. package/dist/ui/error/index.js +5 -4
  74. package/dist/ui/form/buttons/CancelButton.js +4 -26
  75. package/dist/ui/form/buttons/SubmitButton.js +4 -29
  76. package/dist/ui/form/fields/TextPassowrdField.js +4 -26
  77. package/dist/ui/form/index.d.ts +2 -2
  78. package/dist/ui/form/index.js +3 -3
  79. package/dist/ui/hoverPaper/index.d.ts +2 -2
  80. package/dist/ui/hoverPaper/index.js +3 -2
  81. package/dist/ui/scrollArea/ScrollArea.d.ts +1 -1
  82. package/dist/ui/scrollArea/ScrollAreaButton.d.ts +1 -1
  83. package/dist/ui/scrollArea/ScrollAreaButton.js +7 -28
  84. package/package.json +40 -28
  85. package/dist/ai/ui/conversation/ConversationContext.d.ts +0 -7
  86. package/dist/ai/ui/conversation/ConversationContext.js +0 -8
  87. package/dist/ai/ui/conversation/ConversationProvider.d.ts +0 -2
  88. package/dist/ai/ui/conversation/ConversationProvider.js +0 -14
  89. package/dist/ai/ui/conversation/File.d.ts +0 -4
  90. package/dist/ai/ui/conversation/FileIcon.js +0 -225
  91. package/dist/ai/ui/conversation/Message.d.ts +0 -4
  92. package/dist/ai/ui/conversation/Message.js +0 -25
  93. package/dist/ai/ui/conversation/Root.d.ts +0 -2
  94. package/dist/ai/ui/conversation/Root.js +0 -26
  95. package/dist/ai/ui/conversation/index.d.ts +0 -13
  96. package/dist/ai/ui/conversation/types.d.ts +0 -7
  97. package/dist/ai/ui/conversation/types.js +0 -0
  98. package/dist/ai/ui/conversation/useChatMessage.d.ts +0 -2
  99. package/dist/ai/ui/conversation/useChatMessage.js +0 -12
  100. package/dist/ai/ui/promptInput/File.js +0 -117
  101. package/dist/ai/ui/promptInput/FileIcon.js +0 -225
  102. package/dist/ai/ui/promptInput/PromptInputContext.d.ts +0 -12
  103. package/dist/ai/ui/promptInput/PromptInputContext.js +0 -8
  104. package/dist/ai/ui/promptInput/PromptInputProvider.d.ts +0 -2
  105. package/dist/ai/ui/promptInput/PromptInputProvider.js +0 -50
  106. package/dist/ai/ui/promptInput/Root.d.ts +0 -3
  107. package/dist/ai/ui/promptInput/Root.js +0 -17
  108. package/dist/ai/ui/promptInput/Submit.js +0 -40
  109. package/dist/ai/ui/promptInput/types.d.ts +0 -11
  110. package/dist/ai/ui/promptInput/types.js +0 -0
  111. package/dist/surreal/connection.d.ts +0 -9
  112. package/dist/surreal/connection.js +0 -49
  113. package/dist/surreal/deafaultCrud.d.ts +0 -2
  114. package/dist/surreal/deafaultCrud.js +0 -18
  115. package/dist/surreal/deserialize.d.ts +0 -17
  116. package/dist/surreal/deserialize.js +0 -46
  117. package/dist/surreal/encryption.d.ts +0 -6
  118. package/dist/surreal/encryption.js +0 -30
  119. package/dist/ui/editor/styles.module.js +0 -7
  120. package/dist/ui/editor/styles_module.css +0 -16
  121. /package/dist/ai/ui/{conversation → chat}/Empty.d.ts +0 -0
  122. /package/dist/ai/ui/{conversation → chat}/FileIcon.d.ts +0 -0
  123. /package/dist/ai/ui/{conversation → chat}/Loader.d.ts +0 -0
  124. /package/dist/ai/ui/{promptInput → chat/chatInput}/File.d.ts +0 -0
  125. /package/dist/ai/ui/{promptInput → chat/chatInput}/FileIcon.d.ts +0 -0
  126. /package/dist/ai/ui/{promptInput → chat/chatInput}/Footer.d.ts +0 -0
  127. /package/dist/ai/ui/{promptInput → chat/chatInput}/Submit.d.ts +0 -0
  128. /package/dist/ai/ui/{promptInput → chat/chatInput}/Textarea.d.ts +0 -0
  129. /package/dist/{functions → tanstackFunctions/cookie}/getCookie.d.ts +0 -0
  130. /package/dist/{functions → tanstackFunctions/cookie}/getCookie.js +0 -0
  131. /package/dist/{functions → tanstackFunctions/cookie}/setCookie.d.ts +0 -0
  132. /package/dist/{functions → tanstackFunctions/cookie}/setCookie.js +0 -0
  133. /package/dist/{functions → tanstackFunctions/cookie}/setCookies.d.ts +0 -0
  134. /package/dist/{functions → tanstackFunctions/cookie}/setCookies.js +0 -0
@@ -0,0 +1,2 @@
1
+ export * from './ui';
2
+ export * from './utils';
@@ -0,0 +1,2 @@
1
+ export * from "./ui/index.js";
2
+ export * from "./utils/index.js";
@@ -1,9 +1,10 @@
1
1
  import { jsx, jsxs } from "react/jsx-runtime";
2
2
  import { Stack, Text } from "@mantine/core";
3
- import { useConversation } from "./ConversationContext.js";
3
+ import { useIsEmpty } from "./store/index.js";
4
4
  const Empty = ()=>{
5
- const { empty } = useConversation();
6
- return empty ? null : /*#__PURE__*/ jsxs(Stack, {
5
+ const isEmpty = useIsEmpty();
6
+ console.log('Empty render', isEmpty);
7
+ return isEmpty ? /*#__PURE__*/ jsxs(Stack, {
7
8
  align: "center",
8
9
  gap: 0,
9
10
  children: [
@@ -16,6 +17,6 @@ const Empty = ()=>{
16
17
  children: "Начните общение, чтобы увидеть сообщения здесь"
17
18
  })
18
19
  ]
19
- });
20
+ }) : null;
20
21
  };
21
22
  export { Empty };
@@ -0,0 +1,3 @@
1
+ export declare const File: ({ messageId }: {
2
+ messageId: string;
3
+ }) => import("react/jsx-runtime").JSX.Element | null;
@@ -1,10 +1,11 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
2
  import { Image, Paper } from "@mantine/core";
3
3
  import { FileIcon } from "./FileIcon.js";
4
- const File = ({ message })=>{
5
- const textFileType = message.id.split('-')[1];
6
- const fileParts = message.parts?.filter((i)=>'file' === i.type);
7
- const lastFilePart = fileParts[fileParts.length - 1];
4
+ import { useChatMessagePart } from "./store/index.js";
5
+ const File = ({ messageId })=>{
6
+ const part = useChatMessagePart(messageId, 'file');
7
+ const textFileType = messageId.split('-')[1];
8
+ console.log('File render', part);
8
9
  const FileComponent = ()=>{
9
10
  switch(textFileType){
10
11
  case 'excel':
@@ -20,17 +21,18 @@ const File = ({ message })=>{
20
21
  mimeType: "powerpoint"
21
22
  });
22
23
  }
23
- if (lastFilePart.mediaType.includes('image/')) return /*#__PURE__*/ jsx(Image, {
24
+ if (!part) return null;
25
+ if (part.mediaType.includes('image/')) return /*#__PURE__*/ jsx(Image, {
24
26
  radius: "md",
25
27
  h: 128,
26
- src: lastFilePart.url,
28
+ src: part.url,
27
29
  alt: "Image Preview"
28
30
  });
29
31
  return /*#__PURE__*/ jsx(FileIcon, {
30
- mimeType: lastFilePart.mediaType
32
+ mimeType: part.mediaType
31
33
  });
32
34
  };
33
- return textFileType || lastFilePart ? /*#__PURE__*/ jsx(Paper, {
35
+ return textFileType || part ? /*#__PURE__*/ jsx(Paper, {
34
36
  radius: "md",
35
37
  px: "md",
36
38
  py: "sm",
@@ -0,0 +1,43 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { IconFile, IconFileTypeDoc, IconFileTypePdf, IconFileTypePpt, IconFileTypeXls, IconPhoto } from "@tabler/icons-react";
3
+ const FileIcon = ({ mimeType })=>{
4
+ switch(true){
5
+ case mimeType.includes('image/'):
6
+ return /*#__PURE__*/ jsx(IconPhoto, {
7
+ size: 36,
8
+ stroke: 1.5,
9
+ color: "var(--mantine-color-text)"
10
+ });
11
+ case mimeType.includes('application/pdf'):
12
+ return /*#__PURE__*/ jsx(IconFileTypePdf, {
13
+ size: 36,
14
+ stroke: 1.5,
15
+ color: "var(--mantine-color-text)"
16
+ });
17
+ case 'word' === mimeType:
18
+ return /*#__PURE__*/ jsx(IconFileTypeDoc, {
19
+ size: 36,
20
+ stroke: 1.5,
21
+ color: "var(--mantine-color-text)"
22
+ });
23
+ case 'excel' === mimeType:
24
+ return /*#__PURE__*/ jsx(IconFileTypeXls, {
25
+ size: 36,
26
+ stroke: 1.5,
27
+ color: "var(--mantine-color-text)"
28
+ });
29
+ case 'powerpoint' === mimeType:
30
+ return /*#__PURE__*/ jsx(IconFileTypePpt, {
31
+ size: 36,
32
+ stroke: 1.5,
33
+ color: "var(--mantine-color-text)"
34
+ });
35
+ default:
36
+ return /*#__PURE__*/ jsx(IconFile, {
37
+ size: 36,
38
+ stroke: 1.5,
39
+ color: "var(--mantine-color-text)"
40
+ });
41
+ }
42
+ };
43
+ export { FileIcon };
@@ -1,9 +1,10 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
2
  import { Loader } from "@mantine/core";
3
- import { useConversation } from "./ConversationContext.js";
3
+ import { useIsLoading } from "./store/index.js";
4
4
  const Loader_Loader = (props)=>{
5
- const { loading } = useConversation();
6
- return loading ? /*#__PURE__*/ jsx(Loader, {
5
+ const isLoading = useIsLoading();
6
+ console.log('Loader render', isLoading);
7
+ return isLoading ? /*#__PURE__*/ jsx(Loader, {
7
8
  size: 28,
8
9
  type: "dots",
9
10
  ...props
@@ -0,0 +1,3 @@
1
+ export declare const Message: import("react").MemoExoticComponent<({ messageId }: {
2
+ messageId: string;
3
+ }) => import("react/jsx-runtime").JSX.Element | null>;
@@ -0,0 +1,28 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { Paper } from "@mantine/core";
3
+ import { memo } from "react";
4
+ import { Streamdown } from "streamdown";
5
+ import { useChatMessage, useChatMessagePart, useIsStreaming } from "./store/index.js";
6
+ const Message = /*#__PURE__*/ memo(({ messageId })=>{
7
+ const message = useChatMessage(messageId);
8
+ const part = useChatMessagePart(messageId, 'text');
9
+ const isStreaming = useIsStreaming();
10
+ console.log('Message render', {
11
+ message,
12
+ part
13
+ });
14
+ return part ? /*#__PURE__*/ jsx(Paper, {
15
+ radius: "md",
16
+ px: "md",
17
+ py: "sm",
18
+ maw: "80%",
19
+ ml: 'user' === message.role ? 'auto' : void 0,
20
+ bg: 'user' === message.role ? 'var(--mantine-color-default-hover)' : 'var(--mantine-primary-color-light)',
21
+ fz: "sm",
22
+ children: /*#__PURE__*/ jsx(Streamdown, {
23
+ isAnimating: isStreaming && 'assistant' === message.role,
24
+ children: part?.text
25
+ })
26
+ }) : null;
27
+ });
28
+ export { Message };
@@ -0,0 +1,2 @@
1
+ import { type StackProps } from '@mantine/core';
2
+ export declare const Messages: ({ children, ...props }: StackProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,9 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { Stack } from "@mantine/core";
3
+ const Messages = ({ children, ...props })=>{
4
+ console.log('Messages render');
5
+ return /*#__PURE__*/ jsx(Stack, {
6
+ ...props
7
+ });
8
+ };
9
+ export { Messages };
@@ -0,0 +1,8 @@
1
+ import { type PaperProps } from '@mantine/core';
2
+ import { type ScrollAreaProps } from '../../../ui';
3
+ export interface ConversationRootProps extends PaperProps {
4
+ children?: React.ReactNode;
5
+ scrollAreaProps?: ScrollAreaProps;
6
+ withScrollButton?: boolean;
7
+ }
8
+ export declare const Root: ({ children, scrollAreaProps, withScrollButton, ...props }: ConversationRootProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,22 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { Paper } from "@mantine/core";
3
+ import { ScrollArea } from "../../../ui/index.js";
4
+ const Root = ({ children, scrollAreaProps, withScrollButton = true, ...props })=>{
5
+ console.log('Root render');
6
+ return /*#__PURE__*/ jsx(Paper, {
7
+ withBorder: true,
8
+ radius: "md",
9
+ ...props,
10
+ children: /*#__PURE__*/ jsxs(ScrollArea, {
11
+ autoScroll: true,
12
+ scrollToBottomOnInit: true,
13
+ p: "md",
14
+ ...scrollAreaProps,
15
+ children: [
16
+ children,
17
+ withScrollButton && /*#__PURE__*/ jsx(ScrollArea.ScrollButton, {})
18
+ ]
19
+ })
20
+ });
21
+ };
22
+ export { Root };
@@ -0,0 +1,72 @@
1
+ import { Fragment, jsx, jsxs } from "react/jsx-runtime";
2
+ import { ActionIcon, FileButton, Tooltip } from "@mantine/core";
3
+ import { IconPaperclip, IconTrash } from "@tabler/icons-react";
4
+ import { useRef } from "react";
5
+ import { useIsLoading } from "../store/index.js";
6
+ import { FileIcon } from "./FileIcon.js";
7
+ import { getAccept, setFile, useFile, useIsUploading } from "./store/index.js";
8
+ const File = (props)=>{
9
+ const resetRef = useRef(null);
10
+ const isLoading = useIsLoading();
11
+ const isUploading = useIsUploading();
12
+ const file = useFile();
13
+ console.log('Input File render', file);
14
+ return /*#__PURE__*/ jsx(FileButton, {
15
+ resetRef: resetRef,
16
+ onChange: async (file)=>{
17
+ if (file) setFile(file);
18
+ },
19
+ accept: getAccept(),
20
+ disabled: isLoading || isUploading,
21
+ ...props,
22
+ children: (props)=>/*#__PURE__*/ jsxs(ActionIcon.Group, {
23
+ children: [
24
+ /*#__PURE__*/ jsx(ActionIcon, {
25
+ size: "lg",
26
+ variant: "default",
27
+ disabled: isLoading,
28
+ loading: isUploading,
29
+ classNames: {
30
+ root: 'rolder-chat-input-file-action-action'
31
+ },
32
+ ...props,
33
+ children: /*#__PURE__*/ jsx(IconPaperclip, {
34
+ size: 24,
35
+ stroke: 1.5
36
+ })
37
+ }),
38
+ file && /*#__PURE__*/ jsxs(Fragment, {
39
+ children: [
40
+ /*#__PURE__*/ jsx(Tooltip, {
41
+ label: file.name,
42
+ openDelay: 500,
43
+ children: /*#__PURE__*/ jsx(ActionIcon.GroupSection, {
44
+ variant: "default",
45
+ size: "lg",
46
+ children: /*#__PURE__*/ jsx(FileIcon, {
47
+ mimeType: file.type
48
+ })
49
+ })
50
+ }),
51
+ /*#__PURE__*/ jsx(ActionIcon, {
52
+ size: "lg",
53
+ variant: "default",
54
+ classNames: {
55
+ root: 'rolder-chat-input-file-action-action'
56
+ },
57
+ onClick: ()=>{
58
+ resetRef.current?.();
59
+ setFile(void 0);
60
+ },
61
+ children: /*#__PURE__*/ jsx(IconTrash, {
62
+ size: 24,
63
+ stroke: 1.5
64
+ })
65
+ })
66
+ ]
67
+ })
68
+ ]
69
+ })
70
+ });
71
+ };
72
+ export { File };
@@ -0,0 +1,43 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { IconFile, IconFileTypeDoc, IconFileTypePdf, IconFileTypePpt, IconFileTypeXls, IconPhoto } from "@tabler/icons-react";
3
+ const FileIcon = ({ mimeType })=>{
4
+ switch(true){
5
+ case mimeType.includes('image/'):
6
+ return /*#__PURE__*/ jsx(IconPhoto, {
7
+ size: 24,
8
+ stroke: 1.5,
9
+ color: "var(--mantine-color-dimmed)"
10
+ });
11
+ case mimeType.includes('application/pdf'):
12
+ return /*#__PURE__*/ jsx(IconFileTypePdf, {
13
+ size: 24,
14
+ stroke: 1.5,
15
+ color: "var(--mantine-color-dimmed)"
16
+ });
17
+ case mimeType.includes('application/vnd.openxmlformats-officedocument.wordprocessingml.document'):
18
+ return /*#__PURE__*/ jsx(IconFileTypeDoc, {
19
+ size: 24,
20
+ stroke: 1.5,
21
+ color: "var(--mantine-color-dimmed)"
22
+ });
23
+ case mimeType.includes('application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'):
24
+ return /*#__PURE__*/ jsx(IconFileTypeXls, {
25
+ size: 24,
26
+ stroke: 1.5,
27
+ color: "var(--mantine-color-dimmed)"
28
+ });
29
+ case mimeType.includes('application/vnd.openxmlformats-officedocument.presentationml.presentation'):
30
+ return /*#__PURE__*/ jsx(IconFileTypePpt, {
31
+ size: 24,
32
+ stroke: 1.5,
33
+ color: "var(--mantine-color-dimmed)"
34
+ });
35
+ default:
36
+ return /*#__PURE__*/ jsx(IconFile, {
37
+ size: 24,
38
+ stroke: 1.5,
39
+ color: "var(--mantine-color-dimmed)"
40
+ });
41
+ }
42
+ };
43
+ export { FileIcon };
@@ -1,8 +1,11 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
2
  import { Group } from "@mantine/core";
3
- const Footer = (props)=>/*#__PURE__*/ jsx(Group, {
3
+ const Footer = (props)=>{
4
+ console.log('Input Footer render');
5
+ return /*#__PURE__*/ jsx(Group, {
4
6
  justify: "space-between",
5
7
  p: "xs",
6
8
  ...props
7
9
  });
10
+ };
8
11
  export { Footer };
@@ -0,0 +1,9 @@
1
+ import { type PaperProps } from '@mantine/core';
2
+ import { type Accept, type OnSubmitProps } from './store';
3
+ export interface ChatInputRootProps extends PaperProps {
4
+ children?: React.ReactNode;
5
+ onSubmit?: (props: OnSubmitProps) => void;
6
+ isUploading?: boolean;
7
+ accept?: Accept;
8
+ }
9
+ export declare const Root: ({ children, className, onSubmit, isUploading, accept, ...props }: ChatInputRootProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,25 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { Paper } from "@mantine/core";
3
+ import clsx from "clsx";
4
+ import { useEffect } from "react";
5
+ import { setAccept, setIsUploading, setOnSubmit } from "./store/index.js";
6
+ const Root = ({ children, className, onSubmit, isUploading, accept, ...props })=>{
7
+ useEffect(()=>{
8
+ if (onSubmit) setOnSubmit(onSubmit);
9
+ setIsUploading(isUploading || false);
10
+ if (accept) setAccept(accept);
11
+ }, [
12
+ onSubmit,
13
+ isUploading,
14
+ accept
15
+ ]);
16
+ console.log('Input root render');
17
+ return /*#__PURE__*/ jsx(Paper, {
18
+ radius: "md",
19
+ withBorder: true,
20
+ className: clsx('rolder-chat-input-root', className),
21
+ ...props,
22
+ children: children
23
+ });
24
+ };
25
+ export { Root };
@@ -0,0 +1,24 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { ActionIcon } from "@mantine/core";
3
+ import { IconArrowBigUp } from "@tabler/icons-react";
4
+ import { useIsLoading } from "../store/index.js";
5
+ import { onSubmit, useIsUploading } from "./store/index.js";
6
+ const Submit = ({ children, ...props })=>{
7
+ const Icon = /*#__PURE__*/ jsx(IconArrowBigUp, {
8
+ strokeWidth: 1.5
9
+ });
10
+ const isLoading = useIsLoading();
11
+ const isUploading = useIsUploading();
12
+ console.log('Input submit render');
13
+ return /*#__PURE__*/ jsx(ActionIcon, {
14
+ "aria-label": "Submit",
15
+ variant: "light",
16
+ size: "lg",
17
+ onClick: onSubmit,
18
+ disabled: isUploading,
19
+ loading: isLoading,
20
+ ...props,
21
+ children: children ?? Icon
22
+ });
23
+ };
24
+ export { Submit };
@@ -1,13 +1,15 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
2
  import { Textarea } from "@mantine/core";
3
- import { useState } from "react";
4
- import { usePromptInput } from "./PromptInputContext.js";
3
+ import { useIsLoading } from "../store/index.js";
4
+ import { getIsComposing, onSubmit, setIsComposing, setText, useIsUploading, useText } from "./store/index.js";
5
5
  const Textarea_Textarea = (props)=>{
6
- const { text, setText, onSubmit, submiting, uploading } = usePromptInput();
7
- const [isComposing, setIsComposing] = useState(false);
6
+ const text = useText();
7
+ const isLoading = useIsLoading();
8
+ const isUploading = useIsUploading();
9
+ console.log('Input textarea render', text);
8
10
  const handleKeyDown = (e)=>{
9
11
  if ('Enter' === e.key) {
10
- if (isComposing || e.nativeEvent.isComposing) return;
12
+ if (getIsComposing() || e.nativeEvent.isComposing) return;
11
13
  if (e.shiftKey) return;
12
14
  e.preventDefault();
13
15
  onSubmit();
@@ -18,7 +20,7 @@ const Textarea_Textarea = (props)=>{
18
20
  size: "md",
19
21
  rows: 3,
20
22
  classNames: {
21
- input: 'rolder-prompt-input-textarea'
23
+ input: 'rolder-chat-input-textarea'
22
24
  },
23
25
  placeholder: "Напишите сообщение",
24
26
  onCompositionEnd: ()=>setIsComposing(false),
@@ -26,7 +28,7 @@ const Textarea_Textarea = (props)=>{
26
28
  onKeyDown: handleKeyDown,
27
29
  value: text,
28
30
  onChange: (e)=>setText(e.target.value),
29
- disabled: submiting || uploading,
31
+ disabled: isLoading || isUploading,
30
32
  ...props
31
33
  });
32
34
  };
@@ -1,6 +1,5 @@
1
- export type { Accept, PromptInputProps } from './types';
2
- export declare const PromptInput: {
3
- Root: ({ className, onSubmit, submiting, uploading, accept, ...props }: import("@mantine/core").PaperProps & import("./types").PromptInputProps) => import("react/jsx-runtime").JSX.Element;
1
+ export declare const ChatInput: {
2
+ Root: ({ children, className, onSubmit, isUploading, accept, ...props }: import("./Root").ChatInputRootProps) => import("react/jsx-runtime").JSX.Element;
4
3
  Textarea: (props: import("@mantine/core").TextareaProps) => import("react/jsx-runtime").JSX.Element;
5
4
  Footer: (props: import("@mantine/core").GroupProps) => import("react/jsx-runtime").JSX.Element;
6
5
  Submit: ({ children, ...props }: import("@mantine/core").ActionIconProps) => import("react/jsx-runtime").JSX.Element;
@@ -3,11 +3,11 @@ import { Footer } from "./Footer.js";
3
3
  import { Root } from "./Root.js";
4
4
  import { Submit } from "./Submit.js";
5
5
  import { Textarea } from "./Textarea.js";
6
- const PromptInput = {
6
+ const ChatInput = {
7
7
  Root: Root,
8
8
  Textarea: Textarea,
9
9
  Footer: Footer,
10
10
  Submit: Submit,
11
11
  File: File
12
12
  };
13
- export { PromptInput };
13
+ export { ChatInput };
@@ -0,0 +1,8 @@
1
+ export declare const getFile: () => File | undefined;
2
+ export declare const useFile: () => File | undefined;
3
+ export declare const setFile: (file: File | undefined) => void;
4
+ export declare const useIsUploading: () => boolean;
5
+ export declare const setIsUploading: (isUploading: boolean) => void;
6
+ export type Accept = ('text' | 'image' | 'pdf' | 'word' | 'excel')[];
7
+ export declare const getAccept: () => string;
8
+ export declare const setAccept: (accept: Accept) => void;
@@ -0,0 +1,32 @@
1
+ import { useStore } from "@nanostores/react";
2
+ import { atom } from "nanostores";
3
+ const $file = atom();
4
+ const getFile = ()=>$file.get();
5
+ const useFile = ()=>useStore($file);
6
+ const setFile = (file)=>$file.set(file);
7
+ const $isUploading = atom(false);
8
+ const useIsUploading = ()=>useStore($isUploading);
9
+ const setIsUploading = (isUploading)=>$isUploading.set(isUploading);
10
+ const $accept = atom([
11
+ 'text',
12
+ 'image',
13
+ 'pdf'
14
+ ]);
15
+ const getAccept = ()=>$accept.get().map((type)=>{
16
+ switch(type){
17
+ case 'text':
18
+ return 'text/plain';
19
+ case 'image':
20
+ return 'image/*';
21
+ case 'pdf':
22
+ return 'application/pdf';
23
+ case 'excel':
24
+ return 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet';
25
+ case 'word':
26
+ return 'application/vnd.openxmlformats-officedocument.wordprocessingml.document';
27
+ default:
28
+ return type;
29
+ }
30
+ }).join(',');
31
+ const setAccept = (accept)=>$accept.set(accept);
32
+ export { getAccept, getFile, setAccept, setFile, setIsUploading, useFile, useIsUploading };
@@ -0,0 +1,2 @@
1
+ import type { ClientUploadError } from '@better-upload/client';
2
+ export declare const fileErrorNotificaton: (error: ClientUploadError) => void;
@@ -0,0 +1,21 @@
1
+ import { notifications } from "@mantine/notifications";
2
+ const serverErrorCodes = {
3
+ unknown: 'Неизвестная ошибка',
4
+ invalid_request: 'Неверный запрос',
5
+ aborted: 'Загрузка прервана',
6
+ rejected: 'Файл отклонен',
7
+ s3_upload: 'Ошибка при загрузке на S3',
8
+ no_files: 'Нет файлов для загрузки',
9
+ file_too_large: 'Один или несколько файлов слишком большие',
10
+ invalid_file_type: 'Один или несколько файлов неверного типа',
11
+ too_many_files: 'Слишком много файлов'
12
+ };
13
+ const fileErrorNotificaton = (error)=>{
14
+ notifications.show({
15
+ title: serverErrorCodes[error.type],
16
+ message: error.message,
17
+ color: 'red',
18
+ autoClose: 5000
19
+ });
20
+ };
21
+ export { fileErrorNotificaton };
@@ -0,0 +1,2 @@
1
+ export * from './file';
2
+ export * from './input';
@@ -0,0 +1,2 @@
1
+ export * from "./file.js";
2
+ export * from "./input.js";
@@ -0,0 +1,13 @@
1
+ import type { FileUIPart } from 'ai';
2
+ export declare const getText: () => string;
3
+ export declare const useText: () => string;
4
+ export declare const setText: (text: string) => void;
5
+ export declare const getIsComposing: () => boolean;
6
+ export declare const setIsComposing: (isComposing: boolean) => void;
7
+ export interface OnSubmitProps {
8
+ text: string;
9
+ file?: FileUIPart;
10
+ }
11
+ export declare const getOnSubmit: () => (props: OnSubmitProps) => void;
12
+ export declare const setOnSubmit: (onSubmit: (props: OnSubmitProps) => void) => void;
13
+ export declare const onSubmit: () => Promise<void>;
@@ -0,0 +1,80 @@
1
+ import { uploadFile } from "@better-upload/client";
2
+ import { useStore } from "@nanostores/react";
3
+ import { nanoid } from "nanoid";
4
+ import { atom } from "nanostores";
5
+ import { getSignedFileUrlFn } from "../../../../../tanstackFunctions/index.js";
6
+ import { addChatMessage, sendMessage } from "../../store/index.js";
7
+ import { getFile } from "./file.js";
8
+ import { fileErrorNotificaton } from "./fileErrorNotificaton.js";
9
+ import { parseExcel, parseWord } from "./parseFile.js";
10
+ const $text = atom('');
11
+ const getText = ()=>$text.get();
12
+ const useText = ()=>useStore($text);
13
+ const setText = (text)=>$text.set(text);
14
+ const $isComposing = atom(false);
15
+ const getIsComposing = ()=>$isComposing.get();
16
+ const setIsComposing = (isComposing)=>$isComposing.set(isComposing);
17
+ const $onSubmit = atom(()=>()=>{});
18
+ const getOnSubmit = ()=>$onSubmit.get();
19
+ const setOnSubmit = (onSubmit)=>$onSubmit.set(onSubmit);
20
+ const input_onSubmit = async ()=>{
21
+ const onSubmit = getOnSubmit();
22
+ const text = getText();
23
+ const file = getFile();
24
+ let fileUIPart;
25
+ if (file) if ([
26
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
27
+ 'application/vnd.openxmlformats-officedocument.wordprocessingml.document'
28
+ ].includes(file.type)) {
29
+ let fileContent;
30
+ let type;
31
+ if ('application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' === file.type) {
32
+ fileContent = await parseExcel(file);
33
+ type = 'excel';
34
+ } else if ('application/vnd.openxmlformats-officedocument.wordprocessingml.document' === file.type) {
35
+ fileContent = await parseWord(file);
36
+ type = 'word';
37
+ }
38
+ if (fileContent && type) addChatMessage({
39
+ id: `file-${type}-${nanoid()}`,
40
+ role: 'system',
41
+ parts: [
42
+ {
43
+ type: 'text',
44
+ text: `Пользователь загрузил файл типа "${type}" c содержимым:
45
+ \`\`\`
46
+ ${fileContent}
47
+ \`\`\``
48
+ }
49
+ ]
50
+ });
51
+ } else try {
52
+ const result = await uploadFile({
53
+ file,
54
+ route: 'upload'
55
+ });
56
+ const url = await getSignedFileUrlFn({
57
+ data: {
58
+ s3Key: result.file.objectInfo.key
59
+ }
60
+ });
61
+ fileUIPart = {
62
+ id: nanoid(),
63
+ type: 'file',
64
+ url,
65
+ mediaType: file.type,
66
+ filename: file.name
67
+ };
68
+ } catch (error) {
69
+ fileErrorNotificaton(error);
70
+ }
71
+ if (onSubmit) onSubmit({
72
+ text,
73
+ file: fileUIPart
74
+ });
75
+ sendMessage({
76
+ text,
77
+ file: fileUIPart
78
+ });
79
+ };
80
+ export { getIsComposing, getOnSubmit, getText, input_onSubmit as onSubmit, setIsComposing, setOnSubmit, setText, useText };
@@ -0,0 +1,2 @@
1
+ export declare const parseExcel: (file: File) => Promise<string>;
2
+ export declare const parseWord: (file: File) => Promise<string>;