status-im/status-app

Return `seq[ContactsDetails]` from `getContactsByGroup`

Aperta

#10.807 aperta il 25 mag 2023

 (1 commento) (0 reazioni) (0 assegnatari)QML (96 fork)auto 404
core-teamgood first issuerefactor

Metriche repository

Star
 (363 stelle)
Metriche merge PR
 (Metriche PR in attesa)

Descrizione

TLDR: the getContactsByGroup function in src/app_service/service/contacts/service.nim currently returns seq[ContactsDto], but that return value is most of the time used to get ContactsDetails and the original property is already ContactsDetails, so we're doing type transfers uselessly. So change the signature to return seq[ContactsDetails] directly

          Maybe return `seq[ContactsDetails]` from this function?

Originally posted by @igor-sirotin in https://github.com/status-im/status-desktop/pull/10805#discussion_r1205503613

          This function is called with `getContacts` in `initContactRequestsModel`.
          And then for each contact we call `createItemFromPublicKey` which calls `getContactDetails`.

          So we do have `ContactDetails` in the beginning, then switch it to `ContactDto` and eventually back to `ContactDetails`.

Originally posted by @igor-sirotin in https://github.com/status-im/status-desktop/pull/10805#discussion_r1205535598

Guida contributor