93 Commits

Author SHA1 Message Date
790b8f6e25 lint fix wip 2026-01-07 02:24:24 +01:00
3c888e375a lint fix wip 2026-01-07 02:20:33 +01:00
64c94b6679 lint fix wip 2026-01-07 02:17:26 +01:00
d068b67deb lint fix wip 2026-01-07 02:11:40 +01:00
9f7a0e1527 lint fix wip 2026-01-07 02:06:09 +01:00
964f4aeb60 lint fix wip 2026-01-07 01:59:05 +01:00
b2e6250ff5 lint fix wip 2026-01-07 01:51:26 +01:00
7fdd71278e lint fix wip 2026-01-07 00:05:01 +01:00
a061cee73a lint fix wip 2026-01-06 23:40:47 +01:00
5677ca245d lint fix wip 2026-01-06 23:20:55 +01:00
dec7359dcd lint fix wip 2026-01-06 23:07:30 +01:00
fa1db1faa6 lint fix wip 2026-01-06 22:48:58 +01:00
ec50e564b2 lint fix wip 2026-01-06 22:43:48 +01:00
64e2f7f826 lint fix wip 2026-01-06 22:28:46 +01:00
d01ecb7402 lint fix wip 2026-01-06 22:13:46 +01:00
91fe30a860 lint fix wip 2026-01-06 21:52:38 +01:00
e97d2b32cc lint fix wip 2026-01-06 21:44:43 +01:00
b7d65a55c7 lint fix wip 2026-01-06 21:16:28 +01:00
cdd923e981 lint fix wip 2026-01-06 20:59:59 +01:00
9e364d0313 lint fix wip 2026-01-06 18:47:12 +01:00
07b9d9d7bb lint fix wip 2026-01-06 18:09:23 +01:00
e07a2cae53 lint fix wip 2026-01-06 18:03:18 +01:00
c1442886cf lint fix wip 2026-01-06 17:45:45 +01:00
5b7b77aa9a lint fix wip 2026-01-06 17:10:07 +01:00
cc84d85193 lint fix wip 2026-01-06 16:44:12 +01:00
0e856d958e lint fix wip 2026-01-06 16:37:26 +01:00
cc0f3816fa lint fix wip 2026-01-06 16:35:15 +01:00
ccf2fdf759 lint fix wip 2026-01-06 16:10:08 +01:00
303c0bf7df lint fix wip 2026-01-06 15:57:34 +01:00
390f895920 lint fix wip 2026-01-06 15:41:58 +01:00
29cb20c614 Fix authors not loading from cache on startup
**Motivations:**
- Authors were not being loaded from cache, causing 'Aucun contenu trouvé' message even when authors exist
- useArticles only loaded articles from Nostr subscription, not authors from cache
- Authors should be loaded from cache first (cache-first architecture)

**Root causes:**
- useArticles hook only subscribed to articles from Nostr, not loading authors from cache
- No method to get all authors from cache
- Authors were only extracted from articles returned by subscription, which may not include author presentations

**Correctifs:**
- Added getAll method to objectCache to retrieve all objects of a type from cache
- Modified useArticles to load authors from cache on startup before subscribing to Nostr
- Authors are now loaded from cache and merged with articles from subscription
- totalSponsoring is calculated for each author when loading from cache

**Evolutions:**
- Authors are now available immediately from cache on page load
- Better user experience: no 'Aucun contenu trouvé' when authors exist in cache
- Cache-first architecture: authors loaded from cache before Nostr subscription

**Pages affectées:**
- lib/objectCache.ts
- hooks/useArticles.ts
2026-01-06 15:33:02 +01:00
52bd9492b7 lint fix wip 2026-01-06 15:11:52 +01:00
f5d9033183 Refactor to use cache-first architecture with background sync
**Motivations:**
- total_sponsoring should be calculated from cache, not stored in tags
- Author searches should use cache first, not query Nostr directly
- All elements should be read/written from/to database
- Background sync should scan all notes with service='zapwall.fr' tag and update cache
- Sync should run at startup and resume on each page navigation

**Root causes:**
- total_sponsoring was stored in tags which required updates on every sponsoring payment
- Author queries were querying Nostr directly instead of using cache
- No background sync service to keep cache up to date with new notes

**Correctifs:**
- Removed totalSponsoring from AuthorTags interface and buildAuthorTags
- Modified getAuthorSponsoring to calculate from cache (sponsoring queries) instead of tags
- Modified parsePresentationEvent to set totalSponsoring to 0 (calculated on demand from cache)
- Modified fetchAuthorByHashId and fetchAuthorPresentationFromPool to use cache first and calculate totalSponsoring from cache
- Created platformSyncService that scans all notes with service='zapwall.fr' tag and caches them
- Modified _app.tsx to start continuous sync on mount and resume on page navigation
- All author presentations now calculate totalSponsoring from cache when loaded

**Evolutions:**
- Cache-first architecture: all queries check cache before querying Nostr
- Background sync service keeps cache up to date automatically
- totalSponsoring is always calculated from actual sponsoring data in cache
- Better performance: cache queries are faster than Nostr queries
- Non-blocking sync: background sync doesn't block UI

**Pages affectées:**
- lib/nostrTagSystemTypes.ts
- lib/nostrTagSystemBuild.ts
- lib/articlePublisherHelpersPresentation.ts
- lib/sponsoring.ts
- lib/authorQueries.ts
- lib/platformSync.ts (new)
- pages/_app.tsx
2026-01-06 15:04:14 +01:00
cc49c9d7c1 Add language preference selector in settings
**Motivations:**
- Allow users to set their preferred language (fr/en) in the settings page
- Load language preference from localStorage at startup to configure the application locale

**Root causes:**
- Language preference was only available in the header via LanguageSelector component
- Language preference was stored in IndexedDB instead of localStorage
- No centralized language settings management in the settings page

**Correctifs:**
- Created LanguageSettingsManager component for settings page
- Migrated language storage from IndexedDB to localStorage for consistency
- Updated _app.tsx to load locale from localStorage synchronously at startup
- Updated useI18n hook to use localStorage instead of IndexedDB
- Updated LanguageSelector component to use localStorage instead of IndexedDB

**Evolutions:**
- Added language preference section in settings page (displayed first)
- Language preference is now loaded at application startup from localStorage
- Added translations for language settings (settings.language.*)

**Pages affectées:**
- components/LanguageSettingsManager.tsx (new)
- pages/settings.tsx
- pages/_app.tsx
- hooks/useI18n.ts
- components/LanguageSelector.tsx
- locales/fr.txt
- locales/en.txt
2026-01-06 14:57:38 +01:00
8e7d234e68 lint fix wip3 2026-01-06 14:48:13 +01:00
1c9f3a2afa lint fix wip3 2026-01-06 14:41:02 +01:00
ba5f4a6cc4 lint fix wip3 2026-01-06 14:38:38 +01:00
f6cd63a34d lint fix wip3 2026-01-06 14:33:32 +01:00
20032c00ae lint fix wip2 2026-01-06 14:28:19 +01:00
a219d1ad42 lint fix wip2 2026-01-06 14:24:35 +01:00
13e0e0d801 lint fix wip 2026-01-06 14:17:55 +01:00
412989e6af lint fix wip 2026-01-06 11:30:23 +01:00
5ac5aab089 series wip & code quality checks 2026-01-06 09:26:07 +01:00
572ee2dde5 fix key import 2026-01-06 08:10:43 +01:00
a4a39fd0ba fix 'Chargement..' for profil 2026-01-06 01:11:20 +01:00
05382f34ab series building 2026-01-06 00:54:49 +01:00
ba0fcbfc96 series building 2026-01-06 00:37:49 +01:00
758ab5c966 series building 2026-01-06 00:26:31 +01:00
4a619c9576 series building 2026-01-05 23:37:29 +01:00
4787bd5410 Fix: profil image2 2026-01-05 23:24:10 +01:00