feat(profile): profile photo or seed-illustration avatar
Profiles had only a coloured-initial disc. Now each person can set an avatar — a real photo OR one of our own seed illustrations (so pseudonymity stays the default; no photo required). - ui/avatar.dart: the one-string value scheme carried in the kind:0 'picture' — a 'data:' photo thumbnail, a 'tane:seed:<glyph>' token, or empty. The Nostr ProfileTransport already published 'picture'. - Photos ride inline as a tiny thumbnail (reuses offerThumbnailDataUri, 24 KB cap) — no media server, like offer photos. - avatar_edit.dart: pick/take a photo, choose a seed illustration, or remove; ProfileStore stores it; ProfileScreen shows a big editable avatar and publishes it. - PeerAvatar renders photo / illustration / initial fallback. - ProfileCache gains picture/setPicture; the inbox caches peers' avatars alongside their names. - i18n avatar block (en/es/pt/ast). Tests: value scheme + PeerAvatar render modes, store + cache round-trips. Follow-up: render peers' avatars in chat/market/your-people (thread the cached picture into PeerAvatar at each call site).
This commit is contained in:
parent
74c7edaecd
commit
ec56819fbf
19 changed files with 375 additions and 12 deletions
|
|
@ -39,6 +39,7 @@ class TranslationsAst extends Translations with BaseTranslations<AppLocale, Tran
|
|||
TranslationsAst $copyWith({TranslationMetadata<AppLocale, Translations>? meta}) => TranslationsAst(meta: meta ?? this.$meta);
|
||||
|
||||
// Translations
|
||||
@override late final _Translations$avatar$ast avatar = _Translations$avatar$ast._(_root);
|
||||
@override late final _Translations$seedSaving$ast seedSaving = _Translations$seedSaving$ast._(_root);
|
||||
@override late final _Translations$calendar$ast calendar = _Translations$calendar$ast._(_root);
|
||||
@override late final _Translations$app$ast app = _Translations$app$ast._(_root);
|
||||
|
|
@ -85,6 +86,19 @@ class TranslationsAst extends Translations with BaseTranslations<AppLocale, Tran
|
|||
@override late final _Translations$sale$ast sale = _Translations$sale$ast._(_root);
|
||||
}
|
||||
|
||||
// Path: avatar
|
||||
class _Translations$avatar$ast extends Translations$avatar$en {
|
||||
_Translations$avatar$ast._(TranslationsAst root) : this._root = root, super.internal(root);
|
||||
|
||||
final TranslationsAst _root; // ignore: unused_field
|
||||
|
||||
// Translations
|
||||
@override String get title => 'La to semeya o avatar';
|
||||
@override String get fromPhoto => 'Facer o escoyer una semeya';
|
||||
@override String get illustration => 'O escueyi un dibuxu';
|
||||
@override String get remove => 'Quitar';
|
||||
}
|
||||
|
||||
// Path: seedSaving
|
||||
class _Translations$seedSaving$ast extends Translations$seedSaving$en {
|
||||
_Translations$seedSaving$ast._(TranslationsAst root) : this._root = root, super.internal(root);
|
||||
|
|
@ -1294,6 +1308,10 @@ class _Translations$intro$slides$plantare$ast extends Translations$intro$slides$
|
|||
extension on TranslationsAst {
|
||||
dynamic _flatMapFunction(String path) {
|
||||
return switch (path) {
|
||||
'avatar.title' => 'La to semeya o avatar',
|
||||
'avatar.fromPhoto' => 'Facer o escoyer una semeya',
|
||||
'avatar.illustration' => 'O escueyi un dibuxu',
|
||||
'avatar.remove' => 'Quitar',
|
||||
'seedSaving.title' => 'Guardar la so semiente',
|
||||
'seedSaving.subtitle' => 'Lo que fai falta pa caltener la variedá fiel',
|
||||
'seedSaving.lifeCycle' => 'Ciclu',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue