@enjoys/react-chatbot-plugin 1.0.0 → 1.2.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/README.md CHANGED
@@ -1,15 +1,550 @@
1
- # chatbot
1
+ # @enjoys/react-chatbot-plugin
2
2
 
3
- To install dependencies:
3
+ A customizable, plugin-based chatbot widget for React — like tawk.to but fully programmable.
4
+
5
+ [![npm](https://img.shields.io/npm/v/@enjoys/react-chatbot-plugin)](https://www.npmjs.com/package/@enjoys/react-chatbot-plugin)
6
+
7
+ ## Features
8
+
9
+ - **JSON-driven flows** — Build conversational UIs with step-based JSON configuration
10
+ - **Async actions** — Run API calls on step entry with real-time loading/progress/error states
11
+ - **Custom step components** — Render your own React widgets inside flow steps
12
+ - **Dynamic routing** — Route to different steps based on API results, status codes, or custom logic
13
+ - **Plugin architecture** — Extend with analytics, webhooks, persistence, or custom plugins
14
+ - **Slash commands** — `/help`, `/back`, `/cancel`, `/restart` built-in
15
+ - **Custom header/input** — Swap the header or input with your own React components
16
+ - **Forms** — Text, select, radio, checkbox, file upload, with validation
17
+ - **Theming** — Light/dark mode, CSS variables, glassmorphism design
18
+ - **File uploads** — Drag & drop, preview, size/count limits
19
+ - **Emoji picker** — Built-in emoji selector
20
+ - **Welcome & login screens** — Optional onboarding flow
21
+ - **Branding** — Customizable footer and header
22
+
23
+ ## Installation
4
24
 
5
25
  ```bash
6
- bun install
26
+ npm install @enjoys/react-chatbot-plugin
27
+ # or
28
+ bun add @enjoys/react-chatbot-plugin
29
+ ```
30
+
31
+ **Peer dependencies:** `react >= 18.0.0`, `react-dom >= 18.0.0`
32
+
33
+ ## Quick Start
34
+
35
+ ```tsx
36
+ import { ChatBot } from '@enjoys/react-chatbot-plugin';
37
+ import type { FlowConfig } from '@enjoys/react-chatbot-plugin';
38
+
39
+ const flow: FlowConfig = {
40
+ startStep: 'greeting',
41
+ steps: [
42
+ {
43
+ id: 'greeting',
44
+ message: 'Hi! How can I help you?',
45
+ quickReplies: [
46
+ { label: 'Sales', value: 'sales', next: 'sales' },
47
+ { label: 'Support', value: 'support', next: 'support' },
48
+ ],
49
+ },
50
+ { id: 'sales', message: 'Our plans start at $29/month.' },
51
+ { id: 'support', message: 'Please describe your issue and we will get back to you.' },
52
+ ],
53
+ };
54
+
55
+ function App() {
56
+ return (
57
+ <ChatBot
58
+ flow={flow}
59
+ header={{ title: 'Acme Support', subtitle: 'Online', showRestart: true }}
60
+ callbacks={{
61
+ onFlowEnd: (data) => console.log('Flow ended:', data),
62
+ }}
63
+ />
64
+ );
65
+ }
66
+ ```
67
+
68
+ ## Props
69
+
70
+ | Prop | Type | Description |
71
+ |------|------|-------------|
72
+ | `flow` | `FlowConfig` | JSON conversation flow |
73
+ | `theme` | `ChatTheme` | Colors, fonts, border radius, light/dark mode |
74
+ | `style` | `ChatStyle` | CSS overrides for launcher, window, header, etc. |
75
+ | `header` | `HeaderConfig` | Title, subtitle, avatar, showClose, showMinimize, showRestart |
76
+ | `branding` | `BrandingConfig` | "Powered by" footer, logo |
77
+ | `welcomeScreen` | `ReactNode` | Custom welcome screen content |
78
+ | `loginForm` | `FormConfig` | Pre-chat login/identification form |
79
+ | `callbacks` | `ChatCallbacks` | Event handlers (onOpen, onClose, onMessageSend, etc.) |
80
+ | `plugins` | `ChatPlugin[]` | Array of plugins |
81
+ | `initialMessages` | `ChatMessage[]` | Pre-populated messages |
82
+ | `inputPlaceholder` | `string` | Input placeholder text |
83
+ | `position` | `'bottom-right' \| 'bottom-left'` | Widget position |
84
+ | `enableEmoji` | `boolean` | Show emoji picker |
85
+ | `fileUpload` | `FileUploadConfig` | File upload settings |
86
+ | `renderHeader` | `(ctx, defaultHeader) => ReactNode` | Custom header renderer |
87
+ | `renderInput` | `(ctx, defaultInput) => ReactNode` | Custom input renderer |
88
+ | `components` | `Record<string, ComponentType<StepComponentProps>>` | Custom React components for flow steps |
89
+ | `actionHandlers` | `Record<string, (data, ctx) => Promise<FlowActionResult>>` | Async action handlers for flow steps |
90
+ | `defaultOpen` | `boolean` | Start with chat open |
91
+ | `showLauncher` | `boolean` | Show/hide launcher button |
92
+ | `launcherIcon` | `ReactNode` | Custom launcher icon |
93
+ | `closeIcon` | `ReactNode` | Custom close icon |
94
+ | `zIndex` | `number` | CSS z-index |
95
+ | `className` | `string` | Root element class name |
96
+
97
+ ## Conversation Flows
98
+
99
+ Flows are JSON objects with steps. Each step can have messages, quick replies, forms, conditional branching, and delays.
100
+
101
+ ```ts
102
+ const flow: FlowConfig = {
103
+ startStep: 'welcome',
104
+ steps: [
105
+ {
106
+ id: 'welcome',
107
+ message: 'Welcome! What brings you here?',
108
+ quickReplies: [
109
+ { label: 'Buy', value: 'buy', next: 'purchase' },
110
+ { label: 'Help', value: 'help', next: 'support' },
111
+ ],
112
+ },
113
+ {
114
+ id: 'purchase',
115
+ message: 'Great choice!',
116
+ form: {
117
+ id: 'order',
118
+ title: 'Order Details',
119
+ fields: [
120
+ { name: 'email', type: 'email', label: 'Email', required: true },
121
+ { name: 'quantity', type: 'number', label: 'Quantity', required: true },
122
+ ],
123
+ submitLabel: 'Place Order',
124
+ },
125
+ next: 'thanks',
126
+ },
127
+ {
128
+ id: 'support',
129
+ message: 'Please describe your issue.',
130
+ },
131
+ {
132
+ id: 'thanks',
133
+ message: 'Order placed! We will email you shortly.',
134
+ },
135
+ ],
136
+ };
137
+ ```
138
+
139
+ ### Step Properties
140
+
141
+ | Property | Type | Description |
142
+ |----------|------|-------------|
143
+ | `id` | `string` | Unique step identifier |
144
+ | `message` | `string` | Single bot message |
145
+ | `messages` | `string[]` | Multiple bot messages |
146
+ | `quickReplies` | `FlowQuickReply[]` | Clickable option buttons |
147
+ | `form` | `FormConfig` | Inline form |
148
+ | `next` | `string` | Next step ID (auto-advance) |
149
+ | `delay` | `number` | Typing delay in ms (default: 500) |
150
+ | `condition` | `FlowCondition` | Conditional branching |
151
+ | `component` | `string` | Key into `components` map — renders a custom React widget |
152
+ | `asyncAction` | `FlowAsyncAction` | Async action to run when the step is entered |
153
+
154
+ ### Conditional Branching
155
+
156
+ ```ts
157
+ {
158
+ id: 'check_age',
159
+ message: 'Checking your age...',
160
+ condition: {
161
+ field: 'age',
162
+ operator: 'gt', // eq, neq, contains, gt, lt
163
+ value: 18,
164
+ then: 'adult_flow',
165
+ else: 'minor_flow',
166
+ },
167
+ }
168
+ ```
169
+
170
+ ## Async Actions
171
+
172
+ Run API calls, validations, or any async work when a step is entered. The chat shows real-time progress messages and routes based on the result.
173
+
174
+ ```tsx
175
+ import type { FlowConfig, FlowActionResult, ActionContext } from '@enjoys/react-chatbot-plugin';
176
+
177
+ const flow: FlowConfig = {
178
+ startStep: 'collect_email',
179
+ steps: [
180
+ {
181
+ id: 'collect_email',
182
+ message: 'Enter your email to verify:',
183
+ form: {
184
+ id: 'email-form',
185
+ title: 'Email Verification',
186
+ fields: [{ name: 'email', type: 'email', label: 'Email', required: true }],
187
+ submitLabel: 'Verify',
188
+ },
189
+ next: 'verify',
190
+ },
191
+ {
192
+ id: 'verify',
193
+ message: 'Starting verification...',
194
+ asyncAction: {
195
+ handler: 'verify-email', // key into actionHandlers
196
+ loadingMessage: '🔄 Verifying...', // shown while running
197
+ successMessage: '✅ Verified!', // shown on success
198
+ errorMessage: '❌ Failed.', // shown on error/throw
199
+ onSuccess: 'done', // next step on success
200
+ onError: 'retry', // next step on error
201
+ },
202
+ },
203
+ { id: 'done', message: 'Your email is verified! 🎉' },
204
+ {
205
+ id: 'retry',
206
+ message: 'Verification failed. Try again?',
207
+ quickReplies: [
208
+ { label: 'Retry', value: 'retry', next: 'collect_email' },
209
+ ],
210
+ },
211
+ ],
212
+ };
213
+
214
+ <ChatBot
215
+ flow={flow}
216
+ actionHandlers={{
217
+ 'verify-email': async (data, ctx) => {
218
+ ctx.updateMessage('📡 Contacting server...'); // update status message in real-time
219
+ await fetch('/api/verify', { method: 'POST', body: JSON.stringify(data) });
220
+ ctx.updateMessage('🔐 Validating...');
221
+ // return result — status determines routing
222
+ return { status: 'success', data: { verified: true } };
223
+ },
224
+ }}
225
+ />
226
+ ```
227
+
228
+ ### FlowAsyncAction Properties
229
+
230
+ | Property | Type | Description |
231
+ |----------|------|-------------|
232
+ | `handler` | `string` | Key into `actionHandlers` prop |
233
+ | `loadingMessage` | `string` | Message shown while running (default: "Processing...") |
234
+ | `successMessage` | `string` | Message shown on success |
235
+ | `errorMessage` | `string` | Message shown on error or exception |
236
+ | `onSuccess` | `string` | Next step ID on success |
237
+ | `onError` | `string` | Next step ID on error |
238
+ | `routes` | `Record<string, string>` | Map of `result.status` → step ID for custom routing |
239
+
240
+ ### ActionContext
241
+
242
+ | Method | Description |
243
+ |--------|-------------|
244
+ | `updateMessage(text)` | Update the loading/status message text in real-time |
245
+
246
+ ### FlowActionResult
247
+
248
+ Returned by action handlers to control routing and data:
249
+
250
+ | Property | Type | Description |
251
+ |----------|------|-------------|
252
+ | `status` | `string` | `'success'`, `'error'`, or any custom string for route matching |
253
+ | `data` | `Record<string, unknown>` | Data to merge into collected data |
254
+ | `message` | `string` | Override the success/error message |
255
+ | `next` | `string` | Override all routing — go directly to this step |
256
+
257
+ **Routing priority:** `result.next` → `routes[status]` → `onSuccess/onError` → `step.next`
258
+
259
+ ## Custom Step Components
260
+
261
+ Render your own interactive React widgets inside flow steps. Components receive collected data and an `onComplete` callback to continue the flow.
262
+
263
+ ```tsx
264
+ import type { StepComponentProps } from '@enjoys/react-chatbot-plugin';
265
+
266
+ const PlanSelector: React.FC<StepComponentProps> = ({ data, onComplete }) => (
267
+ <div>
268
+ <p>Hi {data.name as string}! Choose a plan:</p>
269
+ <button onClick={() => onComplete({ status: 'success', data: { plan: 'basic' }, next: 'basic_info' })}>
270
+ Basic — $9/mo
271
+ </button>
272
+ <button onClick={() => onComplete({ status: 'success', data: { plan: 'pro' }, next: 'pro_info' })}>
273
+ Pro — $29/mo
274
+ </button>
275
+ </div>
276
+ );
277
+
278
+ const flow: FlowConfig = {
279
+ startStep: 'choose_plan',
280
+ steps: [
281
+ {
282
+ id: 'choose_plan',
283
+ message: 'Select your plan:',
284
+ component: 'PlanSelector', // key into components map
285
+ },
286
+ { id: 'basic_info', message: 'Basic plan selected!' },
287
+ { id: 'pro_info', message: 'Pro plan selected!' },
288
+ ],
289
+ };
290
+
291
+ <ChatBot
292
+ flow={flow}
293
+ components={{ PlanSelector }} // register your components here
294
+ />
295
+ ```
296
+
297
+ ### StepComponentProps
298
+
299
+ | Property | Type | Description |
300
+ |----------|------|-------------|
301
+ | `stepId` | `string` | The step ID that owns this component |
302
+ | `data` | `Record<string, unknown>` | All collected flow/form data |
303
+ | `onComplete` | `(result?: FlowActionResult) => void` | Call to complete the step and route to the next |
304
+
305
+ ## Dynamic Routing
306
+
307
+ Use `asyncAction.routes` to map API result statuses to different steps:
308
+
309
+ ```tsx
310
+ {
311
+ id: 'check_account',
312
+ message: 'Looking up your account...',
313
+ asyncAction: {
314
+ handler: 'check-account',
315
+ loadingMessage: '🔍 Searching...',
316
+ routes: {
317
+ admin: 'admin_panel', // result.status === 'admin'
318
+ vip: 'vip_welcome', // result.status === 'vip'
319
+ active: 'dashboard', // result.status === 'active'
320
+ not_found: 'register', // result.status === 'not_found'
321
+ },
322
+ },
323
+ }
7
324
  ```
8
325
 
9
- To run:
326
+ The action handler returns the status that determines which route to take:
327
+
328
+ ```ts
329
+ 'check-account': async (data, ctx) => {
330
+ const user = await api.lookup(data.username);
331
+ if (!user) return { status: 'not_found' };
332
+ return { status: user.role, data: { userId: user.id } };
333
+ }
334
+ ```
335
+
336
+ ## Slash Commands
337
+
338
+ Users can type these commands in the chat input:
339
+
340
+ | Command | Description |
341
+ |---------|-------------|
342
+ | `/help` | Show available commands |
343
+ | `/back` | Go back to the previous step |
344
+ | `/cancel` | Same as /back — cancel current step |
345
+ | `/restart` | Restart the conversation from the beginning |
346
+
347
+ ## Custom Header & Input
348
+
349
+ Use `renderHeader` and `renderInput` to replace the default header or input with your own components. Both receive a `ChatRenderContext` object and the default element:
350
+
351
+ ```tsx
352
+ <ChatBot
353
+ flow={flow}
354
+ renderHeader={(ctx, defaultHeader) => (
355
+ <div style={{ padding: 16, background: '#333', color: '#fff' }}>
356
+ <h3>My Custom Header</h3>
357
+ <p>Step: {ctx.currentStepId ?? 'none'}</p>
358
+ <button onClick={ctx.restartSession}>Restart</button>
359
+ <button onClick={ctx.toggleChat}>Close</button>
360
+ </div>
361
+ )}
362
+ renderInput={(ctx, defaultInput) => {
363
+ // Use the default input but wrap it
364
+ return (
365
+ <div>
366
+ {defaultInput}
367
+ <small>Step: {ctx.currentStepId}</small>
368
+ </div>
369
+ );
370
+ }}
371
+ />
372
+ ```
373
+
374
+ ### ChatRenderContext
375
+
376
+ | Property | Type | Description |
377
+ |----------|------|-------------|
378
+ | `currentStepId` | `string \| null` | Current flow step ID |
379
+ | `isOpen` | `boolean` | Whether the chat window is open |
380
+ | `messages` | `ChatMessage[]` | All messages |
381
+ | `collectedData` | `Record<string, unknown>` | Collected form/flow data |
382
+ | `toggleChat` | `() => void` | Open/close the chat |
383
+ | `restartSession` | `() => void` | Restart from beginning |
384
+ | `sendMessage` | `(text: string) => void` | Send a message programmatically |
385
+
386
+ ## Theming
387
+
388
+ ```tsx
389
+ <ChatBot
390
+ theme={{
391
+ primaryColor: '#6C5CE7',
392
+ headerBg: 'linear-gradient(135deg, #6C5CE7, #A29BFE)',
393
+ borderRadius: '20px',
394
+ mode: 'dark', // or 'light'
395
+ fontFamily: '"Inter", sans-serif',
396
+ windowWidth: '400px',
397
+ windowHeight: '600px',
398
+ }}
399
+ />
400
+ ```
401
+
402
+ All theme values are also exposed as CSS variables (`--cb-primary`, `--cb-header-bg`, etc.).
403
+
404
+ ## Plugins
405
+
406
+ ### Built-in Plugins
407
+
408
+ ```tsx
409
+ import { analyticsPlugin, webhookPlugin, persistencePlugin } from '@enjoys/react-chatbot-plugin';
410
+
411
+ <ChatBot
412
+ plugins={[
413
+ analyticsPlugin({
414
+ onTrack: (event, data) => console.log(event, data),
415
+ }),
416
+ webhookPlugin({
417
+ url: '/api/chatbot-webhook',
418
+ events: ['message', 'submit'],
419
+ }),
420
+ persistencePlugin({
421
+ storageKey: 'my_chat',
422
+ storage: 'local', // or 'session'
423
+ }),
424
+ ]}
425
+ />
426
+ ```
427
+
428
+ ### Custom Plugin
429
+
430
+ ```ts
431
+ import type { ChatPlugin } from '@enjoys/react-chatbot-plugin';
432
+
433
+ const myPlugin: ChatPlugin = {
434
+ name: 'my-plugin',
435
+ onInit(ctx) {
436
+ console.log('Chat initialized');
437
+ },
438
+ onMessage(message, ctx) {
439
+ console.log('Message:', message);
440
+ },
441
+ onSubmit(data, ctx) {
442
+ console.log('Form submitted:', data);
443
+ },
444
+ onDestroy(ctx) {
445
+ console.log('Chat destroyed');
446
+ },
447
+ };
448
+ ```
449
+
450
+ ### Plugin Context
451
+
452
+ | Method | Description |
453
+ |--------|-------------|
454
+ | `sendMessage(text)` | Send a user message |
455
+ | `addBotMessage(text)` | Add a bot message |
456
+ | `getMessages()` | Get all messages |
457
+ | `getData()` | Get collected data |
458
+ | `setData(key, value)` | Set data |
459
+ | `on(event, handler)` | Subscribe to events |
460
+ | `emit(event, ...args)` | Emit events |
461
+
462
+ ## Forms
463
+
464
+ Forms can be used in flows or as a login screen:
465
+
466
+ ```ts
467
+ const form: FormConfig = {
468
+ id: 'contact',
469
+ title: 'Contact Us',
470
+ description: 'Fill out the form below',
471
+ fields: [
472
+ { name: 'name', type: 'text', label: 'Name', required: true },
473
+ { name: 'email', type: 'email', label: 'Email', required: true,
474
+ validation: { pattern: '^[^@]+@[^@]+\\.[^@]+$', message: 'Invalid email' } },
475
+ { name: 'priority', type: 'select', label: 'Priority', options: [
476
+ { label: 'Low', value: 'low' },
477
+ { label: 'High', value: 'high' },
478
+ ]},
479
+ { name: 'message', type: 'textarea', label: 'Message' },
480
+ { name: 'file', type: 'file', label: 'Attachment', accept: 'image/*,.pdf' },
481
+ ],
482
+ submitLabel: 'Send',
483
+ };
484
+ ```
485
+
486
+ **Supported field types:** `text`, `email`, `password`, `number`, `tel`, `url`, `textarea`, `select`, `multiselect`, `radio`, `checkbox`, `file`, `date`, `time`, `hidden`
487
+
488
+ ## Callbacks
489
+
490
+ ```tsx
491
+ <ChatBot
492
+ callbacks={{
493
+ onOpen: () => {},
494
+ onClose: () => {},
495
+ onMessageSend: (msg) => {},
496
+ onMessageReceive: (msg) => {},
497
+ onSubmit: (data) => {},
498
+ onLogin: (data) => {},
499
+ onFormSubmit: (formId, data) => {},
500
+ onQuickReply: (value, label) => {},
501
+ onFileUpload: (files) => {},
502
+ onFlowEnd: (collectedData) => {},
503
+ onError: (error) => {},
504
+ onEvent: (event, payload) => {},
505
+ }}
506
+ />
507
+ ```
508
+
509
+ ## File Upload
510
+
511
+ ```tsx
512
+ <ChatBot
513
+ fileUpload={{
514
+ enabled: true,
515
+ accept: 'image/*,.pdf,.doc,.docx',
516
+ multiple: true,
517
+ maxSize: 5 * 1024 * 1024, // 5MB
518
+ maxFiles: 3,
519
+ }}
520
+ />
521
+ ```
522
+
523
+ ## Exported Components
524
+
525
+ All internal components are exported for advanced use cases:
526
+
527
+ `ChatBot`, `ChatHeader`, `ChatInput`, `ChatWindow`, `Launcher`, `MessageBubble`, `MessageList`, `QuickReplies`, `TypingIndicator`, `WelcomeScreen`, `LoginScreen`, `Branding`, `EmojiPicker`, `FileUploadButton`, `FilePreviewList`, `DynamicForm`, `TextField`, `SelectField`, `RadioField`, `CheckboxField`, `FileUploadField`
528
+
529
+ **Icons:** `SendIcon`, `ChatBubbleIcon`, `CloseIcon`, `MinimizeIcon`, `EmojiIcon`, `AttachmentIcon`, `FileIcon`, `ImageIcon`, `RemoveIcon`, `RestartIcon`
530
+
531
+ **Engine & Core:** `FlowEngine`, `PluginManager`, `useChat`, `ChatContext`, `useChatContext`
532
+
533
+ **Theme utilities:** `resolveTheme`, `buildStyles`, `buildCSSVariables`
534
+
535
+ ## Development
10
536
 
11
537
  ```bash
12
- bun run index.ts
538
+ # Install dependencies
539
+ bun install
540
+
541
+ # Run demo
542
+ bun run dev
543
+
544
+ # Build library
545
+ bun run build
13
546
  ```
14
547
 
15
- This project was created using `bun init` in bun v1.3.6. [Bun](https://bun.com) is a fast all-in-one JavaScript runtime.
548
+ ## License
549
+
550
+ MIT