@rolder/kit 3.0.0-alpha.7 → 3.0.0-alpha.71

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 +4 -4
  4. package/dist/ai/ui/chat/File.d.ts +3 -0
  5. package/dist/ai/ui/{conversation → chat}/File.js +9 -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 +24 -0
  10. package/dist/ai/ui/chat/Messages.d.ts +7 -0
  11. package/dist/ai/ui/chat/Messages.js +11 -0
  12. package/dist/ai/ui/chat/Root.d.ts +11 -0
  13. package/dist/ai/ui/chat/Root.js +31 -0
  14. package/dist/ai/ui/chat/chatInput/File.js +71 -0
  15. package/dist/ai/ui/chat/chatInput/FileIcon.js +43 -0
  16. package/dist/ai/ui/chat/chatInput/Root.d.ts +9 -0
  17. package/dist/ai/ui/chat/chatInput/Root.js +24 -0
  18. package/dist/ai/ui/chat/chatInput/Submit.js +23 -0
  19. package/dist/ai/ui/{promptInput → chat/chatInput}/Textarea.js +8 -7
  20. package/dist/ai/ui/{promptInput → chat/chatInput}/index.d.ts +2 -3
  21. package/dist/ai/ui/{promptInput → chat/chatInput}/index.js +2 -2
  22. package/dist/ai/ui/chat/chatInput/store/file.d.ts +8 -0
  23. package/dist/ai/ui/chat/chatInput/store/file.js +32 -0
  24. package/dist/ai/ui/chat/chatInput/store/fileErrorNotificaton.d.ts +2 -0
  25. package/dist/ai/ui/chat/chatInput/store/fileErrorNotificaton.js +21 -0
  26. package/dist/ai/ui/chat/chatInput/store/index.d.ts +2 -0
  27. package/dist/ai/ui/chat/chatInput/store/index.js +2 -0
  28. package/dist/ai/ui/chat/chatInput/store/input.d.ts +13 -0
  29. package/dist/ai/ui/chat/chatInput/store/input.js +81 -0
  30. package/dist/ai/ui/chat/chatInput/store/parseFile.d.ts +2 -0
  31. package/dist/ai/ui/chat/chatInput/store/parseFile.js +23 -0
  32. package/dist/ai/ui/chat/index.d.ts +16 -0
  33. package/dist/ai/ui/{conversation → chat}/index.js +8 -5
  34. package/dist/ai/ui/chat/store/index.d.ts +5 -0
  35. package/dist/ai/ui/chat/store/index.js +5 -0
  36. package/dist/ai/ui/chat/store/messageIds.d.ts +8 -0
  37. package/dist/ai/ui/chat/store/messageIds.js +41 -0
  38. package/dist/ai/ui/chat/store/messagesMap.d.ts +5 -0
  39. package/dist/ai/ui/chat/store/messagesMap.js +15 -0
  40. package/dist/ai/ui/chat/store/send.d.ts +14 -0
  41. package/dist/ai/ui/chat/store/send.js +16 -0
  42. package/dist/ai/ui/chat/store/states.d.ts +11 -0
  43. package/dist/ai/ui/chat/store/states.js +17 -0
  44. package/dist/ai/ui/chat/store/useInitChat.d.ts +3 -0
  45. package/dist/ai/ui/chat/store/useInitChat.js +40 -0
  46. package/dist/ai/ui/index.d.ts +1 -0
  47. package/dist/ai/ui/index.js +1 -0
  48. package/dist/ai/utils/index.d.ts +2 -0
  49. package/dist/ai/utils/index.js +2 -0
  50. package/dist/app/AppDefaults.js +1 -1
  51. package/dist/app/DefaultApp.js +1 -1
  52. package/dist/app/cookieColorSchemeManager.js +1 -1
  53. package/dist/app/defaultTheme.d.ts +1 -1
  54. package/dist/app/index.d.ts +4 -0
  55. package/dist/app/index.js +4 -0
  56. package/dist/hooks/index.d.ts +2 -0
  57. package/dist/hooks/index.js +2 -0
  58. package/dist/index.d.ts +5 -26
  59. package/dist/index.js +5 -26
  60. package/dist/styles.css +3 -3
  61. package/dist/tanstackFunctions/cookie/index.d.ts +3 -0
  62. package/dist/tanstackFunctions/cookie/index.js +4 -0
  63. package/dist/tanstackFunctions/index.d.ts +2 -0
  64. package/dist/tanstackFunctions/index.js +2 -0
  65. package/dist/tanstackFunctions/s3/getS3Client.d.ts +2 -0
  66. package/dist/tanstackFunctions/s3/getS3Client.js +18 -0
  67. package/dist/tanstackFunctions/s3/getSignedFileUrlFn.d.ts +4 -0
  68. package/dist/tanstackFunctions/s3/getSignedFileUrlFn.js +21 -0
  69. package/dist/tanstackFunctions/s3/index.d.ts +2 -0
  70. package/dist/tanstackFunctions/s3/index.js +2 -0
  71. package/dist/tanstackFunctions/s3/uploadRequest.d.ts +3 -0
  72. package/dist/tanstackFunctions/s3/uploadRequest.js +21 -0
  73. package/dist/ui/AnimatedChevron.d.ts +2 -2
  74. package/dist/ui/AnimatedChevron.js +7 -25
  75. package/dist/ui/JsonInput.js +1 -1
  76. package/dist/ui/editor/Toolbar.js +4 -22
  77. package/dist/ui/form/buttons/CancelButton.js +4 -26
  78. package/dist/ui/form/buttons/SubmitButton.js +4 -29
  79. package/dist/ui/form/fields/TextPassowrdField.js +4 -26
  80. package/dist/ui/index.d.ts +9 -0
  81. package/dist/ui/index.js +9 -0
  82. package/dist/ui/scrollArea/ScrollArea.d.ts +1 -1
  83. package/dist/ui/scrollArea/ScrollAreaButton.d.ts +1 -1
  84. package/dist/ui/scrollArea/ScrollAreaButton.js +7 -28
  85. package/package.json +38 -29
  86. package/dist/ai/ui/conversation/ConversationContext.d.ts +0 -7
  87. package/dist/ai/ui/conversation/ConversationContext.js +0 -8
  88. package/dist/ai/ui/conversation/ConversationProvider.d.ts +0 -2
  89. package/dist/ai/ui/conversation/ConversationProvider.js +0 -14
  90. package/dist/ai/ui/conversation/File.d.ts +0 -4
  91. package/dist/ai/ui/conversation/FileIcon.js +0 -225
  92. package/dist/ai/ui/conversation/Message.d.ts +0 -4
  93. package/dist/ai/ui/conversation/Message.js +0 -25
  94. package/dist/ai/ui/conversation/Root.d.ts +0 -2
  95. package/dist/ai/ui/conversation/Root.js +0 -26
  96. package/dist/ai/ui/conversation/index.d.ts +0 -13
  97. package/dist/ai/ui/conversation/types.d.ts +0 -7
  98. package/dist/ai/ui/conversation/types.js +0 -0
  99. package/dist/ai/ui/conversation/useChatMessage.d.ts +0 -2
  100. package/dist/ai/ui/conversation/useChatMessage.js +0 -12
  101. package/dist/ai/ui/promptInput/File.js +0 -117
  102. package/dist/ai/ui/promptInput/FileIcon.js +0 -225
  103. package/dist/ai/ui/promptInput/PromptInputContext.d.ts +0 -12
  104. package/dist/ai/ui/promptInput/PromptInputContext.js +0 -8
  105. package/dist/ai/ui/promptInput/PromptInputProvider.d.ts +0 -2
  106. package/dist/ai/ui/promptInput/PromptInputProvider.js +0 -50
  107. package/dist/ai/ui/promptInput/Root.d.ts +0 -3
  108. package/dist/ai/ui/promptInput/Root.js +0 -17
  109. package/dist/ai/ui/promptInput/Submit.js +0 -40
  110. package/dist/ai/ui/promptInput/types.d.ts +0 -11
  111. package/dist/ai/ui/promptInput/types.js +0 -0
  112. package/dist/surreal/connection.d.ts +0 -9
  113. package/dist/surreal/connection.js +0 -49
  114. package/dist/surreal/deafaultCrud.d.ts +0 -2
  115. package/dist/surreal/deafaultCrud.js +0 -18
  116. package/dist/surreal/deserialize.d.ts +0 -17
  117. package/dist/surreal/deserialize.js +0 -46
  118. package/dist/surreal/encryption.d.ts +0 -6
  119. package/dist/surreal/encryption.js +0 -30
  120. /package/dist/ai/ui/{conversation → chat}/Empty.d.ts +0 -0
  121. /package/dist/ai/ui/{conversation → chat}/FileIcon.d.ts +0 -0
  122. /package/dist/ai/ui/{conversation → chat}/Loader.d.ts +0 -0
  123. /package/dist/ai/ui/{promptInput → chat/chatInput}/File.d.ts +0 -0
  124. /package/dist/ai/ui/{promptInput → chat/chatInput}/FileIcon.d.ts +0 -0
  125. /package/dist/ai/ui/{promptInput → chat/chatInput}/Footer.d.ts +0 -0
  126. /package/dist/ai/ui/{promptInput → chat/chatInput}/Footer.js +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,9 @@
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
+ return isEmpty ? /*#__PURE__*/ jsxs(Stack, {
7
7
  align: "center",
8
8
  gap: 0,
9
9
  children: [
@@ -16,6 +16,6 @@ const Empty = ()=>{
16
16
  children: "Начните общение, чтобы увидеть сообщения здесь"
17
17
  })
18
18
  ]
19
- });
19
+ }) : null;
20
20
  };
21
21
  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,10 @@
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
8
  const FileComponent = ()=>{
9
9
  switch(textFileType){
10
10
  case 'excel':
@@ -20,17 +20,18 @@ const File = ({ message })=>{
20
20
  mimeType: "powerpoint"
21
21
  });
22
22
  }
23
- if (lastFilePart.mediaType.includes('image/')) return /*#__PURE__*/ jsx(Image, {
23
+ if (!part) return null;
24
+ if (part.mediaType.includes('image/')) return /*#__PURE__*/ jsx(Image, {
24
25
  radius: "md",
25
26
  h: 128,
26
- src: lastFilePart.url,
27
+ src: part.url,
27
28
  alt: "Image Preview"
28
29
  });
29
30
  return /*#__PURE__*/ jsx(FileIcon, {
30
- mimeType: lastFilePart.mediaType
31
+ mimeType: part.mediaType
31
32
  });
32
33
  };
33
- return textFileType || lastFilePart ? /*#__PURE__*/ jsx(Paper, {
34
+ return textFileType || part ? /*#__PURE__*/ jsx(Paper, {
34
35
  radius: "md",
35
36
  px: "md",
36
37
  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, useIsStreaming } 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
+ const isStreaming = useIsStreaming();
7
+ return isLoading && !isStreaming ? /*#__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,24 @@
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 { getIsStreaming, useChatMessage, useChatMessagePart } from "./store/index.js";
6
+ const Message = /*#__PURE__*/ memo(({ messageId })=>{
7
+ const message = useChatMessage(messageId);
8
+ const part = useChatMessagePart(messageId, 'text');
9
+ console.log(messageId);
10
+ return part ? /*#__PURE__*/ jsx(Paper, {
11
+ radius: "md",
12
+ px: "md",
13
+ py: "sm",
14
+ maw: "80%",
15
+ ml: 'user' === message.role ? 'auto' : void 0,
16
+ bg: 'user' === message.role ? 'var(--mantine-color-default-hover)' : 'var(--mantine-primary-color-light)',
17
+ fz: "sm",
18
+ children: /*#__PURE__*/ jsx(Streamdown, {
19
+ isAnimating: getIsStreaming() && 'assistant' === message.role,
20
+ children: part?.text
21
+ })
22
+ }) : null;
23
+ });
24
+ export { Message };
@@ -0,0 +1,7 @@
1
+ import { type StackProps } from '@mantine/core';
2
+ import type { ReactNode } from 'react';
3
+ type MessagesProps = Omit<StackProps, 'children'> & {
4
+ children: ((messageIds: string[]) => ReactNode) | ReactNode;
5
+ };
6
+ export declare const Messages: ({ children, ...props }: MessagesProps) => import("react/jsx-runtime").JSX.Element;
7
+ export {};
@@ -0,0 +1,11 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { Stack } from "@mantine/core";
3
+ import { useChatMessageIds } from "./store/index.js";
4
+ const Messages = ({ children, ...props })=>{
5
+ const messageIds = useChatMessageIds();
6
+ return /*#__PURE__*/ jsx(Stack, {
7
+ ...props,
8
+ children: 'function' == typeof children ? children(messageIds) : children
9
+ });
10
+ };
11
+ export { Messages };
@@ -0,0 +1,11 @@
1
+ import type { UseChatOptions } from '@ai-sdk/react';
2
+ import { type PaperProps } from '@mantine/core';
3
+ import type { ChatInit, UIMessage } from 'ai';
4
+ import { type ScrollAreaProps } from '../../../ui';
5
+ export interface ConversationRootProps extends PaperProps {
6
+ children?: React.ReactNode;
7
+ scrollAreaProps?: ScrollAreaProps;
8
+ withScrollButton?: boolean;
9
+ chatOptions?: UseChatOptions<UIMessage> & ChatInit<UIMessage>;
10
+ }
11
+ export declare const Root: ({ children, scrollAreaProps, withScrollButton, chatOptions, ...props }: ConversationRootProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,31 @@
1
+ import { Fragment, jsx, jsxs } from "react/jsx-runtime";
2
+ import { Paper } from "@mantine/core";
3
+ import { ScrollArea } from "../../../ui/index.js";
4
+ import { useInitChat } from "./store/index.js";
5
+ const ChatInitializer = ({ chatOptions })=>{
6
+ useInitChat(chatOptions);
7
+ return null;
8
+ };
9
+ const Root = ({ children, scrollAreaProps, withScrollButton = true, chatOptions, ...props })=>/*#__PURE__*/ jsxs(Fragment, {
10
+ children: [
11
+ /*#__PURE__*/ jsx(ChatInitializer, {
12
+ chatOptions: chatOptions
13
+ }),
14
+ /*#__PURE__*/ jsx(Paper, {
15
+ withBorder: true,
16
+ radius: "md",
17
+ ...props,
18
+ children: /*#__PURE__*/ jsxs(ScrollArea, {
19
+ autoScroll: true,
20
+ scrollToBottomOnInit: true,
21
+ p: "md",
22
+ ...scrollAreaProps,
23
+ children: [
24
+ children,
25
+ withScrollButton && /*#__PURE__*/ jsx(ScrollArea.ScrollButton, {})
26
+ ]
27
+ })
28
+ })
29
+ ]
30
+ });
31
+ export { Root };
@@ -0,0 +1,71 @@
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
+ return /*#__PURE__*/ jsx(FileButton, {
14
+ resetRef: resetRef,
15
+ onChange: async (file)=>{
16
+ if (file) setFile(file);
17
+ },
18
+ accept: getAccept(),
19
+ disabled: isLoading || isUploading,
20
+ ...props,
21
+ children: (props)=>/*#__PURE__*/ jsxs(ActionIcon.Group, {
22
+ children: [
23
+ /*#__PURE__*/ jsx(ActionIcon, {
24
+ size: "lg",
25
+ variant: "default",
26
+ disabled: isLoading,
27
+ loading: isUploading,
28
+ classNames: {
29
+ root: 'rolder-chat-input-file-action-action'
30
+ },
31
+ ...props,
32
+ children: /*#__PURE__*/ jsx(IconPaperclip, {
33
+ size: 24,
34
+ stroke: 1.5
35
+ })
36
+ }),
37
+ file && /*#__PURE__*/ jsxs(Fragment, {
38
+ children: [
39
+ /*#__PURE__*/ jsx(Tooltip, {
40
+ label: file.name,
41
+ openDelay: 500,
42
+ children: /*#__PURE__*/ jsx(ActionIcon.GroupSection, {
43
+ variant: "default",
44
+ size: "lg",
45
+ children: /*#__PURE__*/ jsx(FileIcon, {
46
+ mimeType: file.type
47
+ })
48
+ })
49
+ }),
50
+ /*#__PURE__*/ jsx(ActionIcon, {
51
+ size: "lg",
52
+ variant: "default",
53
+ classNames: {
54
+ root: 'rolder-chat-input-file-action-action'
55
+ },
56
+ onClick: ()=>{
57
+ resetRef.current?.();
58
+ setFile(void 0);
59
+ },
60
+ children: /*#__PURE__*/ jsx(IconTrash, {
61
+ size: 24,
62
+ stroke: 1.5
63
+ })
64
+ })
65
+ ]
66
+ })
67
+ ]
68
+ })
69
+ });
70
+ };
71
+ 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 };
@@ -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,24 @@
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
+ return /*#__PURE__*/ jsx(Paper, {
17
+ radius: "md",
18
+ withBorder: true,
19
+ className: clsx('rolder-chat-input-root', className),
20
+ ...props,
21
+ children: children
22
+ });
23
+ };
24
+ export { Root };
@@ -0,0 +1,23 @@
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
+ return /*#__PURE__*/ jsx(ActionIcon, {
13
+ "aria-label": "Submit",
14
+ variant: "light",
15
+ size: "lg",
16
+ onClick: onSubmit,
17
+ disabled: isUploading,
18
+ loading: isLoading,
19
+ ...props,
20
+ children: children ?? Icon
21
+ });
22
+ };
23
+ export { Submit };
@@ -1,13 +1,14 @@
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();
8
9
  const handleKeyDown = (e)=>{
9
10
  if ('Enter' === e.key) {
10
- if (isComposing || e.nativeEvent.isComposing) return;
11
+ if (getIsComposing() || e.nativeEvent.isComposing) return;
11
12
  if (e.shiftKey) return;
12
13
  e.preventDefault();
13
14
  onSubmit();
@@ -18,7 +19,7 @@ const Textarea_Textarea = (props)=>{
18
19
  size: "md",
19
20
  rows: 3,
20
21
  classNames: {
21
- input: 'rolder-prompt-input-textarea'
22
+ input: 'rolder-chat-input-textarea'
22
23
  },
23
24
  placeholder: "Напишите сообщение",
24
25
  onCompositionEnd: ()=>setIsComposing(false),
@@ -26,7 +27,7 @@ const Textarea_Textarea = (props)=>{
26
27
  onKeyDown: handleKeyDown,
27
28
  value: text,
28
29
  onChange: (e)=>setText(e.target.value),
29
- disabled: submiting || uploading,
30
+ disabled: isLoading || isUploading,
30
31
  ...props
31
32
  });
32
33
  };
@@ -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) | undefined;
12
+ export declare const setOnSubmit: (onSubmit: (props: OnSubmitProps) => void) => void;
13
+ export declare const onSubmit: () => Promise<void>;
@@ -0,0 +1,81 @@
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
+ setText('');
80
+ };
81
+ 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>;