feat(market): fix publish-duplicates, add offer detail page + filters
The vecino/market view had three gaps: - Publishing inventory duplicated the listing. discover() appended every offer the relay streamed, but relays legitimately resend an addressable NIP-99 event (stored copy + live echo on publish). Merge by (authorPubkeyHex, id) so each offer appears once; two authors reusing a lot id stay distinct. - No product detail. Tapping a card jumped straight to chat. Add a read-only "product page" (MarketOfferDetailScreen) with title, mode, category, eco badge, coarse location, price, a "Shared by" seller section (profile fetched by pubkey) and the message button. Reached via a new /market/offer route; cards are now fully tappable. Shows only what the network already carries — no photos/description added to the wire. - No filters. Add a filter bar (type, category, eco) mirroring inventory, each chip group shown only when a discovered offer can match it. To make the eco filter real, publish the organic flag on the wire: Offer.isOrganic -> NIP-99 'organic' tag -> OfferMapper -> ShareableLot. Tests: commons_core organic round-trip; app-side dedup, two-author separation, filter logic, mapper passthrough; detail-screen widget tests. i18n keys added to en/es/pt/ast and slang regenerated.
This commit is contained in:
parent
e852b569ce
commit
54d7c2d3b5
21 changed files with 982 additions and 107 deletions
|
|
@ -645,6 +645,15 @@ class _Translations$market$ast extends Translations$market$en {
|
|||
@override String get useLocation => 'Usar el mio allugamientu averáu';
|
||||
@override String get locationFailed => 'Nun se pudo consiguir el to allugamientu — comprueba que l\'allugamientu ta activáu y el permisu concedíu';
|
||||
@override String get queued => 'Guardáu — compartirémosles cuando tengas conexón';
|
||||
@override String get shareFailed => 'Nun se pudo coneutar colos sirvidores — les tos granes nun se compartieron. Vuelvi a intentalo nun momentu.';
|
||||
@override String get rangeLabel => 'Hasta ónde guetar';
|
||||
@override String get rangeNear => 'Bien cerca';
|
||||
@override String get rangeArea => 'Pela mio zona';
|
||||
@override String get rangeRegion => 'La mio rexón';
|
||||
@override String get sharedBy => 'Compartíu por';
|
||||
@override String get noProfile => 'Esta persona entá nun compartió\'l so perfil';
|
||||
@override String get copyId => 'Copiar códigu';
|
||||
@override String get idCopied => 'Códigu copiáu';
|
||||
}
|
||||
|
||||
// Path: profile
|
||||
|
|
@ -1384,6 +1393,15 @@ extension on TranslationsAst {
|
|||
'market.useLocation' => 'Usar el mio allugamientu averáu',
|
||||
'market.locationFailed' => 'Nun se pudo consiguir el to allugamientu — comprueba que l\'allugamientu ta activáu y el permisu concedíu',
|
||||
'market.queued' => 'Guardáu — compartirémosles cuando tengas conexón',
|
||||
'market.shareFailed' => 'Nun se pudo coneutar colos sirvidores — les tos granes nun se compartieron. Vuelvi a intentalo nun momentu.',
|
||||
'market.rangeLabel' => 'Hasta ónde guetar',
|
||||
'market.rangeNear' => 'Bien cerca',
|
||||
'market.rangeArea' => 'Pela mio zona',
|
||||
'market.rangeRegion' => 'La mio rexón',
|
||||
'market.sharedBy' => 'Compartíu por',
|
||||
'market.noProfile' => 'Esta persona entá nun compartió\'l so perfil',
|
||||
'market.copyId' => 'Copiar códigu',
|
||||
'market.idCopied' => 'Códigu copiáu',
|
||||
'profile.title' => 'El to perfil',
|
||||
'profile.name' => 'Nome',
|
||||
'profile.nameHint' => 'Cómo te ven los demás',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue