Spaces:
Sleeping
Sleeping
File size: 5,858 Bytes
de852c2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 | import React, { useState, useEffect, useRef } from 'react';
import { X, Send, MessageCircle } from 'lucide-react';
const OnboardingChat = ({ authToken, onClose, userName }) => {
const [messages, setMessages] = useState([]);
const [input, setInput] = useState('');
const [loading, setLoading] = useState(false);
const [progress, setProgress] = useState(0);
const [complete, setComplete] = useState(false);
const endRef = useRef(null);
useEffect(() => {
startOnboarding();
}, []);
useEffect(() => {
endRef.current?.scrollIntoView({ behavior: 'smooth' });
}, [messages]);
const startOnboarding = async () => {
try {
const resp = await fetch(`${process.env.REACT_APP_API_URL}/api/onboarding/start`, {
headers: { 'Authorization': `Bearer ${authToken}` },
});
if (resp.ok) {
const data = await resp.json();
setMessages(data.messages || [{ role: 'agent', text: data.reply }]);
setProgress(data.progress);
setComplete(data.complete || false);
}
} catch (e) {
setMessages([{ role: 'agent', text: "Hi! What is your security role and what are you trying to accomplish right now?" }]);
}
};
const sendMessage = async () => {
if (!input.trim() || loading) return;
const userText = input;
setInput('');
setMessages(prev => [...prev, { role: 'user', text: userText }]);
setLoading(true);
try {
const resp = await fetch(`${process.env.REACT_APP_API_URL}/api/onboarding/chat`, {
method: 'POST',
headers: { 'Authorization': `Bearer ${authToken}`, 'Content-Type': 'application/json' },
body: JSON.stringify({ user_input: userText }),
});
if (resp.ok) {
const data = await resp.json();
setMessages(prev => [...prev, { role: 'agent', text: data.reply }]);
setProgress(data.progress);
setComplete(data.complete);
}
} catch (e) {
setMessages(prev => [...prev, { role: 'agent', text: "Sorry, I had trouble processing that. Try again?" }]);
} finally {
setLoading(false);
}
};
return (
<div style={{
position: 'fixed', inset: 0, zIndex: 9999,
background: 'rgba(0,0,0,0.5)', display: 'flex',
alignItems: 'center', justifyContent: 'center',
}}>
<div style={{
background: 'var(--bg-primary)', borderRadius: 16,
width: '90%', maxWidth: 500, height: '70vh', maxHeight: 600,
display: 'flex', flexDirection: 'column', overflow: 'hidden',
boxShadow: '0 20px 60px rgba(0,0,0,0.3)',
}}>
{/* Header */}
<div style={{
padding: '14px 18px', borderBottom: '1px solid var(--border-primary)',
display: 'flex', justifyContent: 'space-between', alignItems: 'center',
}}>
<div style={{ display: 'flex', alignItems: 'center', gap: 8 }}>
<MessageCircle size={18} style={{ color: 'var(--accent-primary)' }} />
<span style={{ fontWeight: 600, color: 'var(--text-primary)', fontSize: 14 }}>
Tell us about yourself
</span>
</div>
<div style={{ display: 'flex', alignItems: 'center', gap: 12 }}>
<div style={{
background: 'var(--bg-secondary)', borderRadius: 8, padding: '4px 10px',
fontSize: 11, fontWeight: 600, color: 'var(--accent-primary)',
}}>{progress}% complete</div>
<button onClick={onClose} style={{ background: 'none', border: 'none', cursor: 'pointer', color: 'var(--text-secondary)' }}>
<X size={18} />
</button>
</div>
</div>
{/* Messages */}
<div style={{ flex: 1, overflowY: 'auto', padding: 16, display: 'flex', flexDirection: 'column', gap: 10 }}>
{messages.map((m, i) => (
<div key={i} style={{
alignSelf: m.role === 'user' ? 'flex-end' : 'flex-start',
maxWidth: '80%',
background: m.role === 'user' ? 'var(--accent-primary)' : 'var(--bg-secondary)',
color: m.role === 'user' ? '#fff' : 'var(--text-primary)',
padding: '10px 14px', borderRadius: 12, fontSize: 13, lineHeight: 1.5,
}}>
{m.text}
</div>
))}
{loading && (
<div style={{ alignSelf: 'flex-start', color: 'var(--text-secondary)', fontSize: 12 }}>
Thinking...
</div>
)}
<div ref={endRef} />
</div>
{/* Input */}
{!complete && (
<div style={{
padding: '10px 14px', borderTop: '1px solid var(--border-primary)',
display: 'flex', gap: 8,
}}>
<input
value={input}
onChange={e => setInput(e.target.value)}
onKeyDown={e => e.key === 'Enter' && sendMessage()}
placeholder="Type your answer..."
disabled={loading}
style={{
flex: 1, padding: '8px 12px', borderRadius: 8,
border: '1px solid var(--border-primary)', background: 'var(--bg-secondary)',
color: 'var(--text-primary)', fontSize: 13, outline: 'none',
}}
/>
<button
onClick={sendMessage}
disabled={!input.trim() || loading}
style={{
padding: '8px 12px', borderRadius: 8, border: 'none',
background: input.trim() ? 'var(--accent-primary)' : 'var(--bg-secondary)',
color: input.trim() ? '#fff' : 'var(--text-secondary)',
cursor: input.trim() ? 'pointer' : 'default',
}}
>
<Send size={16} />
</button>
</div>
)}
</div>
</div>
);
};
export default OnboardingChat;
|