@kitnai/chat 0.1.0 → 0.3.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.
@@ -2,6 +2,15 @@ import { For, Show } from 'solid-js';
2
2
  import { PromptInput, PromptInputTextarea, PromptInputActions } from '../components/prompt-input';
3
3
  import { PromptSuggestion } from '../components/prompt-suggestion';
4
4
  import { Button } from '../ui/button';
5
+ import { Paperclip, Globe, Mic } from 'lucide-solid';
6
+ import {
7
+ Attachments,
8
+ Attachment,
9
+ AttachmentPreview,
10
+ AttachmentInfo,
11
+ AttachmentRemove,
12
+ type AttachmentData,
13
+ } from '../components/attachments';
5
14
 
6
15
  export interface DefaultPromptInputProps {
7
16
  value: string;
@@ -9,12 +18,50 @@ export interface DefaultPromptInputProps {
9
18
  disabled?: boolean;
10
19
  loading?: boolean;
11
20
  suggestions?: string[];
21
+ /** Attachments staged in the input. Provide `onAttachmentsChange` to enable
22
+ * the attach button + removable previews. */
23
+ attachments?: AttachmentData[];
24
+ /** Show a Search (Globe) button in the left toolbar; calls `onSearch`. */
25
+ search?: boolean;
26
+ /** Show a Voice (Mic) button in the left toolbar; calls `onVoice`. */
27
+ voice?: boolean;
12
28
  onValueChange: (v: string) => void;
13
29
  onSubmit: () => void;
14
30
  onSuggestionClick: (v: string) => void;
31
+ onAttachmentsChange?: (attachments: AttachmentData[]) => void;
32
+ onSearch?: () => void;
33
+ onVoice?: () => void;
34
+ }
35
+
36
+ function fileToAttachment(file: File): AttachmentData {
37
+ const id =
38
+ typeof crypto !== 'undefined' && crypto.randomUUID
39
+ ? crypto.randomUUID()
40
+ : `${file.name}-${file.size}-${file.lastModified}`;
41
+ return {
42
+ id,
43
+ type: 'file',
44
+ filename: file.name,
45
+ mediaType: file.type || undefined,
46
+ url: file.type.startsWith('image/') ? URL.createObjectURL(file) : undefined,
47
+ };
15
48
  }
16
49
 
17
50
  export function DefaultPromptInput(props: DefaultPromptInputProps) {
51
+ let fileInput: HTMLInputElement | undefined;
52
+ const attachments = () => props.attachments ?? [];
53
+ const canAttach = () => !!props.onAttachmentsChange;
54
+
55
+ const addFiles = (files: FileList | null) => {
56
+ if (!files?.length || !props.onAttachmentsChange) return;
57
+ props.onAttachmentsChange([...attachments(), ...Array.from(files).map(fileToAttachment)]);
58
+ };
59
+ const removeAttachment = (id: string) =>
60
+ props.onAttachmentsChange?.(attachments().filter((a) => a.id !== id));
61
+
62
+ const sendDisabled = () =>
63
+ props.disabled || props.loading || (!props.value.trim() && attachments().length === 0);
64
+
18
65
  return (
19
66
  <>
20
67
  <Show when={props.suggestions?.length}>
@@ -33,13 +80,80 @@ export function DefaultPromptInput(props: DefaultPromptInputProps) {
33
80
  isLoading={props.loading}
34
81
  disabled={props.disabled}
35
82
  >
83
+ <Show when={canAttach() && attachments().length}>
84
+ <div class="px-3 pt-3">
85
+ <Attachments variant="inline">
86
+ <For each={attachments()}>
87
+ {(att) => (
88
+ <Attachment data={att} onRemove={() => removeAttachment(att.id)}>
89
+ <AttachmentPreview />
90
+ <AttachmentInfo />
91
+ <AttachmentRemove />
92
+ </Attachment>
93
+ )}
94
+ </For>
95
+ </Attachments>
96
+ </div>
97
+ </Show>
36
98
  <PromptInputTextarea placeholder={props.placeholder} class="min-h-[44px] pt-3 pl-4" />
37
- <PromptInputActions class="mt-2 flex w-full items-center justify-end gap-2 px-3 pb-3">
99
+ <PromptInputActions class="mt-2 flex w-full items-center justify-between gap-2 px-3 pb-3">
100
+ <div class="flex items-center gap-2">
101
+ <Show when={canAttach()}>
102
+ <input
103
+ ref={fileInput}
104
+ type="file"
105
+ multiple
106
+ class="hidden"
107
+ onChange={(e) => {
108
+ addFiles(e.currentTarget.files);
109
+ e.currentTarget.value = ''; // allow re-picking the same file
110
+ }}
111
+ />
112
+ <Button
113
+ type="button"
114
+ variant="outline"
115
+ size="icon-sm"
116
+ class="rounded-full"
117
+ aria-label="Attach files"
118
+ disabled={props.disabled}
119
+ onClick={() => fileInput?.click()}
120
+ >
121
+ <Paperclip class="size-4" />
122
+ </Button>
123
+ </Show>
124
+ <Show when={props.search}>
125
+ <Button
126
+ type="button"
127
+ variant="outline"
128
+ size="sm"
129
+ class="rounded-full gap-1"
130
+ aria-label="Search the web"
131
+ disabled={props.disabled}
132
+ onClick={() => props.onSearch?.()}
133
+ >
134
+ <Globe class="size-4" />
135
+ Search
136
+ </Button>
137
+ </Show>
138
+ <Show when={props.voice}>
139
+ <Button
140
+ type="button"
141
+ variant="outline"
142
+ size="icon-sm"
143
+ class="rounded-full"
144
+ aria-label="Voice input"
145
+ disabled={props.disabled}
146
+ onClick={() => props.onVoice?.()}
147
+ >
148
+ <Mic class="size-4" />
149
+ </Button>
150
+ </Show>
151
+ </div>
38
152
  <Button
39
153
  size="icon-sm"
40
154
  class="rounded-full"
41
155
  data-testid="send"
42
- disabled={props.disabled || props.loading || !props.value.trim()}
156
+ disabled={sendDisabled()}
43
157
  onClick={props.onSubmit}
44
158
  >
45
159
  <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
@@ -1,7 +1,24 @@
1
1
  import { customElement } from 'solid-element';
2
2
  import { ChatConfig } from '../primitives/chat-config';
3
3
  import { KITN_CSS } from './css';
4
- import type { JSX } from 'solid-js';
4
+ import { createSignal, onCleanup, type JSX } from 'solid-js';
5
+
6
+ /** Resolve whether the element should render dark, given its `theme` and the
7
+ * system preference. `auto` (the default) follows `prefers-color-scheme`. */
8
+ function createDarkMode(getTheme: () => string | undefined) {
9
+ const [systemDark, setSystemDark] = createSignal(false);
10
+ if (typeof window !== 'undefined' && typeof window.matchMedia === 'function') {
11
+ const mq = window.matchMedia('(prefers-color-scheme: dark)');
12
+ setSystemDark(mq.matches);
13
+ const onChange = (e: MediaQueryListEvent) => setSystemDark(e.matches);
14
+ mq.addEventListener('change', onChange);
15
+ onCleanup(() => mq.removeEventListener('change', onChange));
16
+ }
17
+ return () => {
18
+ const theme = getTheme() ?? 'auto';
19
+ return theme === 'dark' || (theme === 'auto' && systemDark());
20
+ };
21
+ }
5
22
 
6
23
  export interface KitnElementContext {
7
24
  /** The custom-element host node. */
@@ -32,7 +49,13 @@ export function defineKitnElement<P extends Record<string, unknown>>(
32
49
  ): void {
33
50
  if (typeof customElements !== 'undefined' && customElements.get(tag)) return;
34
51
 
35
- customElement(tag, propDefaults, (props: P, options: { element: object }) => {
52
+ // Every element gets a `theme` property/attribute: 'light' | 'dark' | 'auto'
53
+ // (default 'auto' = follow the OS `prefers-color-scheme`). It drives a `.dark`
54
+ // class on an inner wrapper, which the injected kit CSS already styles — so dark
55
+ // mode works in standalone Shadow-DOM usage with no token duplication.
56
+ const defaults = { theme: 'auto', ...propDefaults };
57
+
58
+ customElement(tag, defaults, (props: typeof defaults, options: { element: object }) => {
36
59
  const element = options.element as HTMLElement;
37
60
  let portalNode!: HTMLDivElement;
38
61
 
@@ -41,13 +64,18 @@ export function defineKitnElement<P extends Record<string, unknown>>(
41
64
  new CustomEvent(type, { detail, bubbles: false, composed: false }),
42
65
  );
43
66
 
67
+ const isDark = createDarkMode(() => props.theme as string | undefined);
68
+
44
69
  return (
45
70
  <>
46
71
  <style>{KITN_CSS}</style>
47
- <div ref={portalNode} />
48
- <ChatConfig portalMount={portalNode}>
49
- {Facade(props, { element, dispatch })}
50
- </ChatConfig>
72
+ {/* display:contents — no layout box; just carries the .dark token scope. */}
73
+ <div classList={{ dark: isDark() }} style={{ display: 'contents' }}>
74
+ <div ref={portalNode} />
75
+ <ChatConfig portalMount={portalNode}>
76
+ {Facade(props as unknown as P, { element, dispatch })}
77
+ </ChatConfig>
78
+ </div>
51
79
  </>
52
80
  );
53
81
  });
@@ -1,6 +1,7 @@
1
1
  import { createSignal } from 'solid-js';
2
2
  import { defineKitnElement } from './define';
3
3
  import { DefaultPromptInput } from './default-input';
4
+ import type { AttachmentData } from '../components/attachments';
4
5
 
5
6
  interface Props extends Record<string, unknown> {
6
7
  value?: string;
@@ -18,10 +19,14 @@ defineKitnElement<Props>('kitn-prompt-input', {
18
19
  suggestions: undefined,
19
20
  }, (props, { dispatch }) => {
20
21
  const [internal, setInternal] = createSignal(props.value ?? '');
22
+ const [attachments, setAttachments] = createSignal<AttachmentData[]>([]);
21
23
  const current = () => props.value ?? internal();
22
24
 
23
25
  const handleChange = (v: string) => { setInternal(v); dispatch('valuechange', { value: v }); };
24
- const handleSubmit = () => dispatch('submit', { value: current() });
26
+ const handleSubmit = () => {
27
+ dispatch('submit', { value: current(), attachments: attachments() });
28
+ setAttachments([]);
29
+ };
25
30
  const handleSuggestionClick = (v: string) => { handleChange(v); dispatch('suggestionclick', { value: v }); };
26
31
 
27
32
  return (
@@ -31,9 +36,11 @@ defineKitnElement<Props>('kitn-prompt-input', {
31
36
  disabled={props.disabled}
32
37
  loading={props.loading}
33
38
  suggestions={props.suggestions}
39
+ attachments={attachments()}
34
40
  onValueChange={handleChange}
35
41
  onSubmit={handleSubmit}
36
42
  onSuggestionClick={handleSuggestionClick}
43
+ onAttachmentsChange={setAttachments}
37
44
  />
38
45
  );
39
46
  });
@@ -14,14 +14,15 @@ type Loader = () => Promise<unknown>;
14
14
 
15
15
  /**
16
16
  * Minimal default language set — each a separate lazy chunk, loaded only on use.
17
- * Kept deliberately small; hosts add more via `configureCodeHighlighting({ languages })`.
17
+ * Kept deliberately small to keep the bundle lean; hosts add more at runtime via
18
+ * `configureCodeHighlighting({ languages })` (no rebuild needed — see that fn).
18
19
  */
19
20
  const DEFAULT_LANGUAGES: Record<string, Loader> = {
21
+ bash: () => import('@shikijs/langs/bash'),
20
22
  javascript: () => import('@shikijs/langs/javascript'),
21
- typescript: () => import('@shikijs/langs/typescript'),
22
- tsx: () => import('@shikijs/langs/tsx'),
23
+ html: () => import('@shikijs/langs/html'),
24
+ css: () => import('@shikijs/langs/css'),
23
25
  json: () => import('@shikijs/langs/json'),
24
- bash: () => import('@shikijs/langs/bash'),
25
26
  };
26
27
 
27
28
  const DEFAULT_THEMES: Record<string, Loader> = {
@@ -31,8 +32,8 @@ const DEFAULT_THEMES: Record<string, Loader> = {
31
32
 
32
33
  const DEFAULT_ALIASES: Record<string, string> = {
33
34
  js: 'javascript',
34
- ts: 'typescript',
35
35
  sh: 'bash',
36
+ shell: 'bash',
36
37
  };
37
38
 
38
39
  const FALLBACK_THEME = 'github-dark-dimmed';
@@ -31,21 +31,19 @@ Edit every token for **light and dark** modes and watch a real chat UI re-skin l
31
31
  <a
32
32
  href="?path=/story/theming-editor--editor"
33
33
  style={{
34
- display: 'inline-flex',
35
- alignItems: 'center',
36
- gap: '0.45rem',
34
+ display: 'inline-block',
37
35
  background: 'var(--color-primary, #18181b)',
38
- color: 'var(--color-primary-foreground, #fafafa)',
39
- padding: '0.55rem 1rem',
40
36
  borderRadius: 'var(--radius-md, 0.5rem)',
41
- fontWeight: 600,
42
- fontSize: '0.875rem',
43
- lineHeight: 1,
37
+ padding: '0.4rem 0.85rem',
44
38
  textDecoration: 'none',
45
- boxShadow: '0 1px 2px rgba(0,0,0,0.08)',
46
39
  }}
47
40
  >
48
- Open the theme editor <span aria-hidden="true">→</span>
41
+ <span style={{
42
+ color: 'var(--color-primary-foreground, #fafafa)',
43
+ fontWeight: 600,
44
+ fontSize: '0.8125rem',
45
+ lineHeight: 1.3,
46
+ }}>Open the theme editor</span>
49
47
  </a>
50
48
 
51
49
  _(Opens full-screen — it needs more room than this docs column.)_