mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-18 22:21:23 +02:00
feat(community): Phase 3.C — Identität (Avatar + Klarname-Toggle + Karma + Eulen-Profil)
Macht aus den Pseudonymen echte Charaktere ohne Klarnamen-Zwang.
Pixel-Identicon-Avatar (3.C.2):
- generateAvatarSvg(displayHash) — pure-function, deterministisch.
5×5 left-mirrored Identicon mit HSL-Foreground/Background aus dem
Hash. Inline-SVG, kein Storage, kein img-load-Flicker.
- <EulenAvatar> Component im Package, in ItemCard neben dem Pseudonym.
Klarname-Toggle (3.C.1):
- auth.users + community_show_real_name boolean (default off, opt-in).
- PATCH /api/v1/me/profile akzeptiert communityShowRealName.
- mana-analytics LEFT JOINs auth.users → bei opt-in liefert auth-
required /public + /me/reacted Endpoints zusätzlich realName.
- Anonymous /api/v1/public/feedback/* zeigt realName NIE — auch nicht
wenn opted-in. Public-Mirror bleibt für SEO + Privacy safe.
- Migration 008_community_identity.sql lokal + prod eingespielt.
Karma-System (3.C.3):
- auth.users + community_karma int. toggleReaction increment/decrement
am Author-User (Self-Reactions zählen nicht — kein Self-Farming).
- KARMA_THRESHOLDS + tierFromKarma() im Package: Bronze (0-9) /
Silver (10-49) / Gold (50-199) / Platin (200+).
- ItemCard zeigt Tier-Dot neben dem Pseudonym, Title-Tooltip mit
Karma-Zahl. Floor-clamped at 0.
Eulen-Profil (3.C.4):
- GET /api/v1/public/feedback/eule/{hash} — alle public-Posts dieser
Eule + aggregiertes Karma. SHA256-Format-Validation.
- /community/eule/[hash] Public-SSR-Route mit Avatar-Hero, Tier-Badge,
Karma-Counter, Post-Liste. Author-Klick im ItemCard navigiert hin.
- publicFeedbackService.getEulenProfile() im Package.
PublicFeedbackItem erweitert um displayHash (public Pseudonym-ID,
SHA256 ist one-way → safe to expose) + karma + optional realName.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
42e4d58c8c
commit
ee5bb2871c
16 changed files with 760 additions and 23 deletions
|
|
@ -6,7 +6,12 @@
|
|||
* `createFeedbackService()` instead and pass a getAuthToken callback.
|
||||
*/
|
||||
|
||||
import type { PublicFeedListResponse, PublicItemResponse, FeedbackQueryParams } from './api';
|
||||
import type {
|
||||
PublicFeedListResponse,
|
||||
PublicItemResponse,
|
||||
EulenProfileResponse,
|
||||
FeedbackQueryParams,
|
||||
} from './api';
|
||||
import type { PublicFeedbackItem } from './feedback';
|
||||
import type { PublicFeedbackServiceConfig } from './types';
|
||||
|
||||
|
|
@ -42,7 +47,11 @@ export function createPublicFeedbackService(config: PublicFeedbackServiceConfig)
|
|||
return fetchPublic<PublicItemResponse>(`${publicEndpoint}/${id}`);
|
||||
}
|
||||
|
||||
return { getFeed, getItem };
|
||||
async function getEulenProfile(displayHash: string): Promise<EulenProfileResponse> {
|
||||
return fetchPublic<EulenProfileResponse>(`${publicEndpoint}/eule/${displayHash}`);
|
||||
}
|
||||
|
||||
return { getFeed, getItem, getEulenProfile };
|
||||
}
|
||||
|
||||
export type PublicFeedbackService = ReturnType<typeof createPublicFeedbackService>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue