Spaces:
Running
Running
File size: 7,118 Bytes
ffcad5d | 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 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | import React, { useCallback, useEffect, useState } from 'react';
import ReactDOM from 'react-dom';
import { Activity, RefreshCw, X } from 'lucide-react';
const overlay = {
position: 'fixed',
inset: 0,
background: 'rgba(0,0,0,0.5)',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
zIndex: 1100,
};
const modal = {
background: 'var(--bg-primary, #fff)',
borderRadius: 16,
width: 560,
maxWidth: '95vw',
maxHeight: '85vh',
overflow: 'hidden',
boxShadow: 'var(--shadow-xl, 0 20px 40px rgba(0,0,0,0.2))',
display: 'flex',
flexDirection: 'column',
};
const statusColor = {
online: '#059669',
unavailable: '#b45309',
error: '#dc2626',
};
/**
* Settings → Model Status modal. Calls backend /models/status (probes).
* Secrets never leave the server.
*/
const ModelStatusModal = ({ onClose, onStatusLoaded }) => {
const [payload, setPayload] = useState(null);
const [loading, setLoading] = useState(true);
const [error, setError] = useState(null);
const load = useCallback(async (refresh = false) => {
setLoading(true);
setError(null);
try {
const url = `${process.env.REACT_APP_API_URL || ''}/models/status${refresh ? '?refresh=true' : ''}`;
const resp = await fetch(url);
if (!resp.ok) throw new Error(`Status request failed (${resp.status})`);
const data = await resp.json();
setPayload(data);
if (typeof onStatusLoaded === 'function') onStatusLoaded(data);
} catch (e) {
setError(e.message || 'Failed to load model status');
// Fail open for the picker: parent keeps unfiltered list
if (typeof onStatusLoaded === 'function') {
onStatusLoaded({ check_failed: true, online_providers: null, models: [] });
}
} finally {
setLoading(false);
}
}, [onStatusLoaded]);
useEffect(() => {
load(false);
}, [load]);
const models = payload?.models || [];
return ReactDOM.createPortal(
<div
style={overlay}
onMouseDown={(e) => {
if (e.target === e.currentTarget) onClose();
}}
role="dialog"
aria-modal="true"
aria-label="Model Status"
>
<div style={modal}>
<div
style={{
display: 'flex',
justifyContent: 'space-between',
alignItems: 'center',
padding: '16px 20px',
borderBottom: '1px solid var(--border-primary, #e2e8f0)',
}}
>
<div style={{ display: 'flex', alignItems: 'center', gap: 10 }}>
<Activity size={18} />
<strong>Model Status</strong>
</div>
<div style={{ display: 'flex', gap: 8 }}>
<button
type="button"
onClick={() => load(true)}
disabled={loading}
title="Refresh probes"
style={{
display: 'inline-flex',
alignItems: 'center',
gap: 6,
padding: '8px 12px',
borderRadius: 8,
border: '1px solid var(--border-primary, #e2e8f0)',
background: 'var(--bg-secondary, #f8fafc)',
cursor: loading ? 'wait' : 'pointer',
minHeight: 44,
}}
>
<RefreshCw size={16} className={loading ? 'spinning' : undefined} />
Refresh
</button>
<button
type="button"
onClick={onClose}
aria-label="Close"
style={{
border: 'none',
background: 'transparent',
cursor: 'pointer',
padding: 8,
minHeight: 44,
minWidth: 44,
}}
>
<X size={18} />
</button>
</div>
</div>
<div style={{ padding: 20, overflowY: 'auto', flex: 1 }}>
{error && (
<p style={{ color: '#dc2626', marginTop: 0 }}>
{error}. Provider list left unfiltered (fail open).
</p>
)}
{payload?.check_failed && (
<p style={{ color: '#b45309' }}>
Full status check failed. Showing last known results if any; selection list was not
restricted.
</p>
)}
{payload?.checked_at && (
<p style={{ color: 'var(--text-secondary, #64748b)', fontSize: 13 }}>
Checked {new Date(payload.checked_at).toLocaleString()}
{payload.cached ? ' (cached)' : ''}
</p>
)}
{loading && !payload ? (
<p>Probing models…</p>
) : (
<ul style={{ listStyle: 'none', padding: 0, margin: 0 }}>
{models.map((m) => (
<li
key={m.id}
style={{
border: '1px solid var(--border-primary, #e2e8f0)',
borderRadius: 12,
padding: '12px 14px',
marginBottom: 10,
}}
>
<div style={{ display: 'flex', justifyContent: 'space-between', gap: 12 }}>
<div>
<strong>{m.name}</strong>
<div style={{ fontSize: 13, color: 'var(--text-secondary, #64748b)' }}>
{m.model || m.provider}
{!m.selectable ? ' · fallback only' : ''}
</div>
</div>
<span
style={{
color: statusColor[m.status] || '#64748b',
fontWeight: 600,
textTransform: 'capitalize',
whiteSpace: 'nowrap',
}}
>
{m.status}
</span>
</div>
{m.status === 'error' && m.error && (
<pre
style={{
margin: '8px 0 0',
whiteSpace: 'pre-wrap',
wordBreak: 'break-word',
fontSize: 12,
color: '#991b1b',
background: '#fef2f2',
padding: 8,
borderRadius: 8,
}}
>
{m.error}
</pre>
)}
{typeof m.latency_ms === 'number' && (
<div style={{ fontSize: 12, color: '#94a3b8', marginTop: 6 }}>
{m.latency_ms} ms
</div>
)}
</li>
))}
</ul>
)}
</div>
</div>
</div>,
document.body
);
};
export default ModelStatusModal;
|