Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 | import React, { useState, useEffect } from 'react'; import apiClient from '../services/api'; interface ApiKey { id: string; name: string; keyPrefix: string; permissions: { read: boolean; write: boolean; bets: boolean; stats: boolean; }; lastUsedAt: string | null; expiresAt: string | null; revoked: boolean; createdAt: string; updatedAt: string; } export default function ApiKeysSettings() { const [apiKeys, setApiKeys] = useState<ApiKey[]>([]); const [loading, setLoading] = useState(true); const [error, setError] = useState<string | null>(null); const [showCreateModal, setShowCreateModal] = useState(false); const [newKeyValue, setNewKeyValue] = useState<string | null>(null); const [newKeyName, setNewKeyName] = useState(''); const [creating, setCreating] = useState(false); const [copied, setCopied] = useState(false); useEffect(() => { fetchApiKeys(); }, []); const fetchApiKeys = async () => { try { setLoading(true); const response = await apiClient.get('/keys'); setApiKeys(response.data.data.keys); setError(null); } catch (err: any) { setError(err.response?.data?.error || 'Failed to fetch API keys'); } finally { setLoading(false); } }; const handleCreateKey = async () => { if (!newKeyName.trim()) { setError('Key name is required'); return; } try { setCreating(true); setError(null); const response = await apiClient.post('/keys', { name: newKeyName.trim() }); setNewKeyValue(response.data.data.key); setNewKeyName(''); fetchApiKeys(); // Refresh list } catch (err: any) { setError(err.response?.data?.error || 'Failed to create API key'); } finally { setCreating(false); } }; const handleRevokeKey = async (id: string) => { if (!confirm('Are you sure you want to revoke this API key? This action cannot be undone.')) { return; } try { await apiClient.delete(`/keys/${id}`); fetchApiKeys(); // Refresh list } catch (err: any) { setError(err.response?.data?.error || 'Failed to revoke API key'); } }; const copyToClipboard = (text: string) => { navigator.clipboard.writeText(text); setCopied(true); setTimeout(() => setCopied(false), 2000); }; const closeCreateModal = () => { setShowCreateModal(false); setNewKeyValue(null); setNewKeyName(''); setError(null); }; const formatDate = (dateString: string | null) => { if (!dateString) return 'Never'; return new Date(dateString).toLocaleDateString('en-US', { month: 'short', day: 'numeric', year: 'numeric', hour: '2-digit', minute: '2-digit' }); }; return ( <div className="min-h-screen bg-gray-50 dark:bg-gray-900"> <div className="max-w-6xl mx-auto px-4 py-8"> {/* Header */} <div className="mb-8"> <h1 className="text-3xl font-bold text-gray-900 dark:text-white mb-2"> API Keys </h1> <p className="text-gray-600 dark:text-gray-400"> Generate API keys to allow Claude and other integrations to access your dashboard. </p> </div> {/* Error Alert */} {error && ( <div className="mb-6 p-4 bg-red-50 dark:bg-red-900/20 border border-red-200 dark:border-red-800 rounded-lg"> <div className="flex items-start"> <svg className="w-5 h-5 text-red-600 dark:text-red-400 mt-0.5 mr-3" fill="currentColor" viewBox="0 0 20 20"> <path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clipRule="evenodd" /> </svg> <p className="text-sm text-red-800 dark:text-red-300">{error}</p> </div> </div> )} {/* Create Button */} <div className="mb-6"> <button onClick={() => setShowCreateModal(true)} className="px-4 py-2 bg-blue-600 hover:bg-blue-700 text-white font-medium rounded-lg transition-colors" > + Create New API Key </button> </div> {/* API Keys Table */} <div className="bg-white dark:bg-gray-800 rounded-lg shadow overflow-hidden"> {loading ? ( <div className="p-8 text-center"> <div className="animate-spin rounded-full h-12 w-12 border-b-2 border-blue-600 mx-auto mb-4"></div> <p className="text-gray-600 dark:text-gray-400">Loading API keys...</p> </div> ) : apiKeys.length === 0 ? ( <div className="p-8 text-center"> <p className="text-gray-600 dark:text-gray-400">No API keys yet. Create one to get started.</p> </div> ) : ( <table className="min-w-full divide-y divide-gray-200 dark:divide-gray-700"> <thead className="bg-gray-50 dark:bg-gray-900"> <tr> <th className="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider"> Name </th> <th className="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider"> Key </th> <th className="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider"> Last Used </th> <th className="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider"> Created </th> <th className="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider"> Status </th> <th className="px-6 py-3 text-right text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider"> Actions </th> </tr> </thead> <tbody className="bg-white dark:bg-gray-800 divide-y divide-gray-200 dark:divide-gray-700"> {apiKeys.map((key) => ( <tr key={key.id}> <td className="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900 dark:text-white"> {key.name} </td> <td className="px-6 py-4 whitespace-nowrap text-sm font-mono text-gray-600 dark:text-gray-400"> {key.keyPrefix} </td> <td className="px-6 py-4 whitespace-nowrap text-sm text-gray-600 dark:text-gray-400"> {formatDate(key.lastUsedAt)} </td> <td className="px-6 py-4 whitespace-nowrap text-sm text-gray-600 dark:text-gray-400"> {formatDate(key.createdAt)} </td> <td className="px-6 py-4 whitespace-nowrap text-sm"> {key.revoked ? ( <span className="px-2 py-1 bg-red-100 dark:bg-red-900/30 text-red-800 dark:text-red-300 rounded-full text-xs font-medium"> Revoked </span> ) : ( <span className="px-2 py-1 bg-green-100 dark:bg-green-900/30 text-green-800 dark:text-green-300 rounded-full text-xs font-medium"> Active </span> )} </td> <td className="px-6 py-4 whitespace-nowrap text-right text-sm"> {!key.revoked && ( <button onClick={() => handleRevokeKey(key.id)} className="text-red-600 hover:text-red-900 dark:text-red-400 dark:hover:text-red-300 font-medium" > Revoke </button> )} </td> </tr> ))} </tbody> </table> )} </div> {/* Create Modal */} {showCreateModal && ( <div className="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center p-4 z-50"> <div className="bg-white dark:bg-gray-800 rounded-lg shadow-xl max-w-md w-full p-6"> <h2 className="text-xl font-bold text-gray-900 dark:text-white mb-4"> Create New API Key </h2> {!newKeyValue ? ( <> <div className="mb-4"> <label className="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2"> Key Name </label> <input type="text" value={newKeyName} onChange={(e) => setNewKeyName(e.target.value)} placeholder="My Claude Bot" className="w-full px-3 py-2 border border-gray-300 dark:border-gray-600 rounded-lg bg-white dark:bg-gray-700 text-gray-900 dark:text-white focus:ring-2 focus:ring-blue-500 focus:border-transparent" /> </div> <div className="flex justify-end space-x-3"> <button onClick={closeCreateModal} className="px-4 py-2 text-gray-700 dark:text-gray-300 hover:bg-gray-100 dark:hover:bg-gray-700 rounded-lg transition-colors" > Cancel </button> <button onClick={handleCreateKey} disabled={creating} className="px-4 py-2 bg-blue-600 hover:bg-blue-700 text-white font-medium rounded-lg transition-colors disabled:opacity-50" > {creating ? 'Creating...' : 'Create Key'} </button> </div> </> ) : ( <> <div className="mb-4"> <div className="p-4 bg-yellow-50 dark:bg-yellow-900/20 border border-yellow-200 dark:border-yellow-800 rounded-lg mb-4"> <div className="flex items-start"> <svg className="w-5 h-5 text-yellow-600 dark:text-yellow-400 mt-0.5 mr-3" fill="currentColor" viewBox="0 0 20 20"> <path fillRule="evenodd" d="M8.257 3.099c.765-1.36 2.722-1.36 3.486 0l5.58 9.92c.75 1.334-.213 2.98-1.742 2.98H4.42c-1.53 0-2.493-1.646-1.743-2.98l5.58-9.92zM11 13a1 1 0 11-2 0 1 1 0 012 0zm-1-8a1 1 0 00-1 1v3a1 1 0 002 0V6a1 1 0 00-1-1z" clipRule="evenodd" /> </svg> <p className="text-sm text-yellow-800 dark:text-yellow-300 font-medium"> Save this key now! It will only be shown once. </p> </div> </div> <label htmlFor="api-key-value" className="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2"> Your API Key </label> <div className="flex space-x-2"> <input id="api-key-value" type="text" value={newKeyValue} readOnly className="flex-1 px-3 py-2 font-mono text-sm border border-gray-300 dark:border-gray-600 rounded-lg bg-gray-50 dark:bg-gray-900 text-gray-900 dark:text-white" /> <button onClick={() => copyToClipboard(newKeyValue)} className="px-4 py-2 bg-blue-600 hover:bg-blue-700 text-white font-medium rounded-lg transition-colors" > {copied ? '✓ Copied' : 'Copy'} </button> </div> </div> <div className="flex justify-end"> <button onClick={closeCreateModal} className="px-4 py-2 bg-gray-600 hover:bg-gray-700 text-white font-medium rounded-lg transition-colors" > Done </button> </div> </> )} </div> </div> )} </div> </div> ); } |