mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-08 23:06:03 +00:00
* feat(web): add onboarding wizard for guided bot creation
Implement a full-screen 4-step wizard at /wizard that guides users
through selecting a platform, configuring a bot, choosing an AI engine,
and completing setup. The wizard uses DynamicFormComponent for adapter
and pipeline configuration, embeds BotLogListComponent for real-time
debugging, persists state to localStorage, and integrates with Space
OAuth flow. Also fixes a prompt-editor crash in DynamicFormComponent
when value is undefined.
* feat(wizard): redesign step 0/1 flow, add skip dialog, auto-expand log images
- Step 0: Remove bot name/description fields; auto-derive name from adapter
label; create disabled bot on confirm; advance to Step 1 automatically
- Step 1: Replace 'Create Bot' with 'Save & Enable Bot'; update adapter
config and enable bot; disable form fields after saving
- Add skip confirmation AlertDialog with i18n message
- Add LanguageSelector to wizard header
- Move wizard sidebar entry to last position to prevent fallback redirect loop
- Add defaultExpanded prop to BotLogCard; auto-expand entries with images
in wizard via autoExpandImages prop on BotLogListComponent
- Remove automatic default pipeline creation (write_default_pipeline) from
backend persistence manager since the wizard now handles pipeline creation
- Update all 4 locale files (en-US, zh-Hans, zh-Hant, ja-JP)
* fix(wizard): hide detailed logs link in wizard, allow re-editing bot config after save
- Add hideDetailedLogsLink prop to BotLogListComponent; pass it in wizard
- Remove isEditing on DynamicFormComponent so form stays editable after save
- Always show save button; label changes to 'Re-save' after first save
- Add resaveBot i18n key to all 4 locale files
* style(wizard): move save button into config card header
* fix(wizard): initialize userInfo/systemInfo so model selector works
The wizard runs outside /home layout, so userInfo was null. This caused
the model-fallback-selector to filter out all Space models, showing an
empty dropdown. Fix by calling initializeUserInfo() and
initializeSystemInfo() before fetching wizard data.
Also:
- Hide log toolbar in wizard via hideToolbar prop on BotLogListComponent
- Add empty state message for bot logs (noLogs i18n key, all 4 locales)
* feat(wizard): redesign AI Engine step with left-right split layout
Before selecting a runner: centered grid of runner cards.
After selecting: left panel shows compact runner list for switching,
right panel shows runner config form with slide-in animations.
Also fix prompt field default: add default value to prompt-editor field
in ai.yaml metadata so the prompt is pre-populated with
'You are a helpful assistant.' instead of being empty.
* feat(pipeline): add default values to ai.yaml runner configs and show_if for n8n auth fields
- Sync default values from default-pipeline-config.json to all runner
config fields in ai.yaml so wizard forms are pre-populated
- Add show_if conditions to n8n-service-api auth fields so only the
relevant credentials appear based on selected auth-type
- Fix prompt-editor crash in DynamicFormItemComponent when field.value
is undefined (Array.isArray guard + fallback)
- Improve wizard Step 2 split layout with fixed column widths,
independent scroll, ring clipping fix, and mobile responsiveness
- Use key={selected} on DynamicFormComponent to force remount on
runner switch
- Improve pipeline creation flow: create → fetch defaults → merge AI
section → update (preserves trigger/safety/output defaults)
* feat(dynamic-form): add systemContext prop with __system.* namespace for show_if conditions
- Add systemContext prop to DynamicFormComponent for injecting external
variables accessible via __system.* prefix in show_if conditions
- Extract resolveShowIfValue() helper for cleaner field resolution
- Pass { is_wizard: true } from wizard to hide knowledge-bases field
- Remove bot config save toast in wizard (keep inline indicator)
* feat(sidebar): render wizard as standalone item before Home group with fallback redirect fix
* fix(wizard): remove unused setBotDescription to fix lint error
252 lines
8.0 KiB
TypeScript
252 lines
8.0 KiB
TypeScript
'use client';
|
|
|
|
import { useEffect, useState, useCallback, Suspense } from 'react';
|
|
import { useRouter, useSearchParams } from 'next/navigation';
|
|
import { httpClient } from '@/app/infra/http/HttpClient';
|
|
import { toast } from 'sonner';
|
|
import { useTranslation } from 'react-i18next';
|
|
import {
|
|
Loader2,
|
|
AlertCircle,
|
|
CheckCircle2,
|
|
AlertTriangle,
|
|
} from 'lucide-react';
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardHeader,
|
|
CardTitle,
|
|
CardDescription,
|
|
} from '@/components/ui/card';
|
|
import { Button } from '@/components/ui/button';
|
|
import { LoadingSpinner } from '@/components/ui/loading-spinner';
|
|
import langbotIcon from '@/app/assets/langbot-logo.webp';
|
|
|
|
function SpaceOAuthCallbackContent() {
|
|
const router = useRouter();
|
|
const searchParams = useSearchParams();
|
|
const { t } = useTranslation();
|
|
|
|
const [status, setStatus] = useState<
|
|
'loading' | 'confirm' | 'success' | 'error'
|
|
>('loading');
|
|
const [errorMessage, setErrorMessage] = useState<string>('');
|
|
const [isBindMode, setIsBindMode] = useState(false);
|
|
const [code, setCode] = useState<string | null>(null);
|
|
const [isProcessing, setIsProcessing] = useState(false);
|
|
const [localEmail, setLocalEmail] = useState<string>('');
|
|
|
|
const handleOAuthCallback = useCallback(
|
|
async (authCode: string) => {
|
|
try {
|
|
const response = await httpClient.exchangeSpaceOAuthCode(authCode);
|
|
localStorage.setItem('token', response.token);
|
|
if (response.user) {
|
|
localStorage.setItem('userEmail', response.user);
|
|
}
|
|
setStatus('success');
|
|
toast.success(t('common.spaceLoginSuccess'));
|
|
|
|
// If wizard state exists, redirect back to wizard instead of home
|
|
const wizardState = localStorage.getItem('langbot_wizard_state');
|
|
const redirectTo = wizardState ? '/wizard' : '/home';
|
|
setTimeout(() => {
|
|
router.push(redirectTo);
|
|
}, 1000);
|
|
} catch (err) {
|
|
setStatus('error');
|
|
const errorObj = err as { msg?: string };
|
|
const errMsg = (errorObj?.msg || '').toLowerCase();
|
|
if (errMsg.includes('account email mismatch')) {
|
|
setErrorMessage(t('account.spaceEmailMismatch'));
|
|
} else {
|
|
setErrorMessage(t('common.spaceLoginFailed'));
|
|
}
|
|
}
|
|
},
|
|
[router, t],
|
|
);
|
|
|
|
const [bindState, setBindState] = useState<string | null>(null);
|
|
|
|
const handleBindAccount = useCallback(
|
|
async (authCode: string, state: string) => {
|
|
setIsProcessing(true);
|
|
try {
|
|
const response = await httpClient.bindSpaceAccount(authCode, state);
|
|
localStorage.setItem('token', response.token);
|
|
if (response.user) {
|
|
localStorage.setItem('userEmail', response.user);
|
|
}
|
|
setStatus('success');
|
|
toast.success(t('account.bindSpaceSuccess'));
|
|
setTimeout(() => {
|
|
router.push('/home');
|
|
}, 1000);
|
|
} catch (err) {
|
|
setStatus('error');
|
|
const errorObj = err as { msg?: string };
|
|
const errMsg = (errorObj?.msg || '').toLowerCase();
|
|
if (errMsg.includes('account email mismatch')) {
|
|
setErrorMessage(t('account.spaceEmailMismatch'));
|
|
} else {
|
|
setErrorMessage(t('account.bindSpaceFailed'));
|
|
}
|
|
} finally {
|
|
setIsProcessing(false);
|
|
}
|
|
},
|
|
[router, t],
|
|
);
|
|
|
|
useEffect(() => {
|
|
const authCode = searchParams.get('code');
|
|
const error = searchParams.get('error');
|
|
const errorDescription = searchParams.get('error_description');
|
|
const mode = searchParams.get('mode');
|
|
const state = searchParams.get('state');
|
|
|
|
if (error) {
|
|
setStatus('error');
|
|
setErrorMessage(
|
|
errorDescription || error || t('common.spaceLoginFailed'),
|
|
);
|
|
return;
|
|
}
|
|
|
|
if (!authCode) {
|
|
setStatus('error');
|
|
setErrorMessage(t('common.spaceLoginNoCode'));
|
|
return;
|
|
}
|
|
|
|
setCode(authCode);
|
|
|
|
if (mode === 'bind') {
|
|
// Bind mode - verify state (token) exists
|
|
if (!state) {
|
|
setStatus('error');
|
|
setErrorMessage(t('account.bindSpaceInvalidState'));
|
|
return;
|
|
}
|
|
setBindState(state);
|
|
setIsBindMode(true);
|
|
setLocalEmail(localStorage.getItem('userEmail') || '');
|
|
setStatus('confirm');
|
|
} else {
|
|
// Normal login/register mode
|
|
handleOAuthCallback(authCode);
|
|
}
|
|
}, [searchParams, handleOAuthCallback, t]);
|
|
|
|
const handleConfirmBind = () => {
|
|
if (code && bindState) {
|
|
handleBindAccount(code, bindState);
|
|
}
|
|
};
|
|
|
|
const handleCancelBind = () => {
|
|
router.push('/home');
|
|
};
|
|
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-gray-50 dark:bg-neutral-900">
|
|
<Card className="w-[400px] shadow-lg dark:shadow-white/10">
|
|
<CardHeader className="text-center">
|
|
<img
|
|
src={langbotIcon.src}
|
|
alt="LangBot"
|
|
className="w-16 h-16 mb-4 mx-auto"
|
|
/>
|
|
<CardTitle className="text-xl">
|
|
{status === 'loading' && t('common.spaceLoginProcessing')}
|
|
{status === 'confirm' && t('account.bindSpaceConfirmTitle')}
|
|
{status === 'success' &&
|
|
(isBindMode
|
|
? t('account.bindSpaceSuccess')
|
|
: t('common.spaceLoginSuccess'))}
|
|
{status === 'error' &&
|
|
(isBindMode
|
|
? t('account.bindSpaceFailed')
|
|
: t('common.spaceLoginError'))}
|
|
</CardTitle>
|
|
<CardDescription>
|
|
{status === 'loading' &&
|
|
t('common.spaceLoginProcessingDescription')}
|
|
{status === 'confirm' && t('account.bindSpaceConfirmDescription')}
|
|
{status === 'success' && t('common.spaceLoginSuccessDescription')}
|
|
{status === 'error' && errorMessage}
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="flex flex-col items-center space-y-4">
|
|
{status === 'loading' && <LoadingSpinner size="lg" text="" />}
|
|
{status === 'confirm' && (
|
|
<>
|
|
<AlertTriangle className="h-12 w-12 text-yellow-500" />
|
|
<p className="text-sm text-center text-muted-foreground px-4">
|
|
{t('account.bindSpaceWarning', {
|
|
localEmail: localEmail || '-',
|
|
})}
|
|
</p>
|
|
<div className="flex gap-3 w-full">
|
|
<Button
|
|
variant="outline"
|
|
className="flex-1"
|
|
onClick={handleCancelBind}
|
|
disabled={isProcessing}
|
|
>
|
|
{t('common.cancel')}
|
|
</Button>
|
|
<Button
|
|
className="flex-1"
|
|
onClick={handleConfirmBind}
|
|
disabled={isProcessing}
|
|
>
|
|
{isProcessing ? (
|
|
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
|
|
) : null}
|
|
{t('common.confirm')}
|
|
</Button>
|
|
</div>
|
|
</>
|
|
)}
|
|
{status === 'success' && (
|
|
<CheckCircle2 className="h-12 w-12 text-green-500" />
|
|
)}
|
|
{status === 'error' && (
|
|
<>
|
|
<AlertCircle className="h-12 w-12 text-red-500" />
|
|
<Button
|
|
onClick={() => router.push(isBindMode ? '/home' : '/login')}
|
|
className="w-full mt-4"
|
|
>
|
|
{isBindMode ? t('common.backToHome') : t('common.backToLogin')}
|
|
</Button>
|
|
</>
|
|
)}
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function LoadingFallback() {
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-gray-50 dark:bg-neutral-900">
|
|
<Card className="w-[400px] shadow-lg dark:shadow-white/10">
|
|
<CardContent className="flex flex-col items-center py-12">
|
|
<LoadingSpinner size="lg" text="" />
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default function SpaceOAuthCallback() {
|
|
return (
|
|
<Suspense fallback={<LoadingFallback />}>
|
|
<SpaceOAuthCallbackContent />
|
|
</Suspense>
|
|
);
|
|
}
|