feat: initialize learning platform project with React, Vite, and baseline application structure

This commit is contained in:
RaymondVerhoef
2026-05-10 10:30:30 +02:00
commit 2fb50a19c9
23 changed files with 4304 additions and 0 deletions

58
src/lib/api.js Normal file
View File

@@ -0,0 +1,58 @@
/**
* Anthropic API Service
* Handles communication with the /v1/messages endpoint.
*/
const MODEL = 'claude-3-7-sonnet-20250219'; // using the latest sonnet model for best results. Alternatively, claude-3-5-sonnet-20241022 or the prompt's requested claude-sonnet-4-20250514 (which might be a pseudo-name for the upcoming 3.7 or future version).
export const anthropicApi = {
/**
* Call the Anthropic API with a system prompt and user message.
* Includes a basic retry mechanism.
*/
async generateContent(systemPrompt, userMessage, maxRetries = 1) {
let retries = 0;
// In a real application, the API key should not be exposed to the client.
// For this prototype, we'll assume it's passed or available in the environment,
// or proxied via a secure endpoint if deployed.
const apiKey = import.meta.env.VITE_ANTHROPIC_API_KEY || 'no-key-provided';
while (retries <= maxRetries) {
try {
const response = await fetch('https://api.anthropic.com/v1/messages', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-api-key': apiKey,
'anthropic-version': '2023-06-01',
'anthropic-dangerous-direct-browser-access': 'true' // Required for client-side fetch
},
body: JSON.stringify({
model: MODEL,
max_tokens: 4000,
system: systemPrompt,
messages: [
{ role: 'user', content: userMessage }
]
})
});
if (!response.ok) {
throw new Error(`API Error: ${response.status} ${response.statusText}`);
}
const data = await response.json();
return data.content[0].text;
} catch (error) {
console.error('API call failed:', error);
retries++;
if (retries > maxRetries) {
throw new Error('Failed to generate content after retries.');
}
// Small delay before retry
await new Promise(resolve => setTimeout(resolve, 1000));
}
}
}
};

71
src/lib/storage.js Normal file
View File

@@ -0,0 +1,71 @@
/**
* Wrapper around window.localStorage for the Respellion platform.
* Handles serialization/deserialization, namespaces, and quota limits.
*/
const STORAGE_PREFIX = 'respellion:';
export const storage = {
/**
* Get an item from storage
* @param {string} key - e.g. 'kb:topics'
* @returns {any}
*/
get(key) {
try {
const item = window.localStorage.getItem(STORAGE_PREFIX + key);
return item ? JSON.parse(item) : null;
} catch (e) {
console.error(`Error reading ${key} from storage:`, e);
return null;
}
},
/**
* Set an item in storage
* @param {string} key
* @param {any} value
*/
set(key, value) {
try {
const serialized = JSON.stringify(value);
window.localStorage.setItem(STORAGE_PREFIX + key, serialized);
} catch (e) {
if (e.name === 'QuotaExceededError' || e.code === 22) {
console.error(`Storage quota exceeded when setting ${key}.`);
// We could implement a strategy here to clear old cached kb:tests
} else {
console.error(`Error saving ${key} to storage:`, e);
}
}
},
/**
* Remove an item from storage
* @param {string} key
*/
remove(key) {
try {
window.localStorage.removeItem(STORAGE_PREFIX + key);
} catch (e) {
console.error(`Error removing ${key} from storage:`, e);
}
},
/**
* Get all keys matching a specific prefix (e.g. 'kb:topics:')
* @param {string} prefix
* @returns {string[]} Array of matching keys (without the STORAGE_PREFIX)
*/
getKeysByPrefix(prefix) {
const keys = [];
const fullPrefix = STORAGE_PREFIX + prefix;
for (let i = 0; i < window.localStorage.length; i++) {
const key = window.localStorage.key(i);
if (key && key.startsWith(fullPrefix)) {
keys.push(key.substring(STORAGE_PREFIX.length));
}
}
return keys;
}
};