fluxy-bot 0.3.19 → 0.3.20

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.
@@ -1 +1 @@
1
- import{b as o,j as e,R as n,O as r}from"./globals-A5sTL-kb.js";function a(){const t=()=>{window.parent?.postMessage({type:"fluxy:onboard-complete"},"*")};return e.jsx(r,{onComplete:t,isInitialSetup:!0})}o.createRoot(document.getElementById("root")).render(e.jsx(n.StrictMode,{children:e.jsx(a,{})}));
1
+ import{b as o,j as e,R as n,O as r}from"./globals-BmcQJ_1f.js";function a(){const t=()=>{window.parent?.postMessage({type:"fluxy:onboard-complete"},"*")};return e.jsx(r,{onComplete:t,isInitialSetup:!0})}o.createRoot(document.getElementById("root")).render(e.jsx(n.StrictMode,{children:e.jsx(a,{})}));
@@ -4,8 +4,8 @@
4
4
  <meta charset="UTF-8" />
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0, interactive-widget=resizes-content" />
6
6
  <title>Fluxy Chat</title>
7
- <script type="module" crossorigin src="/fluxy/assets/fluxy-DmbQycIj.js"></script>
8
- <link rel="modulepreload" crossorigin href="/fluxy/assets/globals-A5sTL-kb.js">
7
+ <script type="module" crossorigin src="/fluxy/assets/fluxy-sbmFOV3Z.js"></script>
8
+ <link rel="modulepreload" crossorigin href="/fluxy/assets/globals-BmcQJ_1f.js">
9
9
  <link rel="stylesheet" crossorigin href="/fluxy/assets/globals-BdY9BJIP.css">
10
10
  </head>
11
11
  <body class="bg-background text-foreground">
@@ -4,8 +4,8 @@
4
4
  <meta charset="UTF-8" />
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0, interactive-widget=resizes-content" />
6
6
  <title>Fluxy Setup</title>
7
- <script type="module" crossorigin src="/fluxy/assets/onboard-DnbGE0aK.js"></script>
8
- <link rel="modulepreload" crossorigin href="/fluxy/assets/globals-A5sTL-kb.js">
7
+ <script type="module" crossorigin src="/fluxy/assets/onboard-Cp7fEIFC.js"></script>
8
+ <link rel="modulepreload" crossorigin href="/fluxy/assets/globals-BmcQJ_1f.js">
9
9
  <link rel="stylesheet" crossorigin href="/fluxy/assets/globals-BdY9BJIP.css">
10
10
  </head>
11
11
  <body class="bg-background text-foreground">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fluxy-bot",
3
- "version": "0.3.19",
3
+ "version": "0.3.20",
4
4
  "description": "Self-hosted AI bot — run your own AI assistant from anywhere",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -87,9 +87,10 @@ function ModelDropdown({ models, value, onChange }: { models: { id: string; labe
87
87
  interface Props {
88
88
  onComplete: () => void;
89
89
  isInitialSetup?: boolean;
90
+ onSave?: (payload: any) => Promise<any>;
90
91
  }
91
92
 
92
- export default function OnboardWizard({ onComplete, isInitialSetup = false }: Props) {
93
+ export default function OnboardWizard({ onComplete, isInitialSetup = false, onSave }: Props) {
93
94
  const TOTAL_STEPS = isInitialSetup ? 7 : 6; // 0..5 normal, +step 6 "All Set" for initial
94
95
 
95
96
  const [step, setStep] = useState(0);
@@ -472,34 +473,18 @@ export default function OnboardWizard({ onComplete, isInitialSetup = false }: Pr
472
473
  portalUser: portalUser.trim(),
473
474
  portalPass,
474
475
  };
475
- console.log('[OnboardWizard] handleComplete called');
476
- console.log('[OnboardWizard] inIframe:', window.parent !== window, 'origin:', window.location.origin, 'href:', window.location.href);
477
476
  try {
478
- // Try XHR as fallback if in iframe (fetch POST can fail through tunnels)
479
- const inIframe = window.parent !== window;
480
- let res: Response;
481
- if (inIframe) {
482
- console.log('[OnboardWizard] Using XHR for POST (iframe context)');
483
- res = await new Promise<Response>((resolve, reject) => {
484
- const xhr = new XMLHttpRequest();
485
- xhr.open('POST', '/api/onboard');
486
- xhr.setRequestHeader('Content-Type', 'application/json');
487
- xhr.onload = () => resolve(new Response(xhr.responseText, { status: xhr.status, statusText: xhr.statusText }));
488
- xhr.onerror = () => reject(new Error('XHR network error'));
489
- xhr.ontimeout = () => reject(new Error('XHR timeout'));
490
- xhr.timeout = 15000;
491
- xhr.send(JSON.stringify(payload));
492
- });
477
+ if (onSave) {
478
+ // Chat context: save via WebSocket (bypasses relay POST issues)
479
+ await onSave(payload);
493
480
  } else {
494
- res = await fetch('/api/onboard', {
481
+ // Initial onboard: direct POST
482
+ await fetch('/api/onboard', {
495
483
  method: 'POST',
496
484
  headers: { 'Content-Type': 'application/json' },
497
485
  body: JSON.stringify(payload),
498
486
  });
499
487
  }
500
- console.log('[OnboardWizard] POST /api/onboard response:', res.status, res.statusText);
501
- const data = await res.json().catch(() => null);
502
- console.log('[OnboardWizard] response body:', data);
503
488
  if (isInitialSetup) {
504
489
  setSaving(false);
505
490
  setStep(6);
@@ -252,6 +252,27 @@ function FluxyApp() {
252
252
  {/* Setup Wizard overlay */}
253
253
  {showWizard && (
254
254
  <OnboardWizard
255
+ onSave={(payload) => {
256
+ return new Promise((resolve, reject) => {
257
+ const client = clientRef.current;
258
+ if (!client?.connected) {
259
+ reject(new Error('WebSocket not connected'));
260
+ return;
261
+ }
262
+ const unsub = client.on('settings:saved', (data) => {
263
+ unsub();
264
+ clearTimeout(timer);
265
+ resolve(data);
266
+ });
267
+ const unsubErr = client.on('settings:save-error', (data) => {
268
+ unsubErr();
269
+ clearTimeout(timer);
270
+ reject(new Error(data.error || 'Save failed'));
271
+ });
272
+ const timer = setTimeout(() => { unsub(); unsubErr(); reject(new Error('Save timeout')); }, 10000);
273
+ client.send('settings:save', payload);
274
+ });
275
+ }}
255
276
  onComplete={() => {
256
277
  setShowWizard(false);
257
278
  // Reload settings (bot name, whisper, etc.)
@@ -305,6 +305,24 @@ export async function startSupervisor() {
305
305
 
306
306
  const msg = JSON.parse(rawStr);
307
307
 
308
+ // Save settings via WebSocket (bypasses relay POST issues)
309
+ if (msg.type === 'settings:save') {
310
+ (async () => {
311
+ try {
312
+ const result = await workerApi('/api/onboard', 'POST', msg.data);
313
+ if (ws.readyState === WebSocket.OPEN) {
314
+ ws.send(JSON.stringify({ type: 'settings:saved', data: result }));
315
+ }
316
+ } catch (err: any) {
317
+ log.error(`[fluxy] settings:save failed: ${err.message}`);
318
+ if (ws.readyState === WebSocket.OPEN) {
319
+ ws.send(JSON.stringify({ type: 'settings:save-error', data: { error: err.message } }));
320
+ }
321
+ }
322
+ })();
323
+ return;
324
+ }
325
+
308
326
  // New protocol: { type: 'user:message', data: { content, conversationId? } }
309
327
  if (msg.type === 'user:message') {
310
328
  const data = msg.data || {};