Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Network, peers, and sync status UI #51

Open
bertob opened this issue Mar 1, 2025 · 2 comments
Open

Network, peers, and sync status UI #51

bertob opened this issue Mar 1, 2025 · 2 comments
Labels
frontend GTK, User Interface, UX, etc.

Comments

@bertob
Copy link
Collaborator

bertob commented Mar 1, 2025

Goals

Information we need to expose

  • am I currently connected to other peers?
    • if so, who?
  • am i discovering peers via network, Bluetooth?
  • am i syncing via USB?
  • do I have the latest version of the document?
    • if not, how many changes need to be synced?
  • if i'm offline, how many changes are going to be synced later?

Features

  • User list
    • pseudonymous name/identity
    • sync status (?)
    • last seen (?)
    • show peers who have access but aren't online?
  • Up/download status
    • how much do i still need to up/download
    • who am i up/downloading from/to (?)
  • discovery mode
    • network/bluetooth/offline

Questions

  • do we expose all of these network status-related things in the same place?
    • e.g. a single menu with discovery mode, user list, upload status
  • which of these things need to be visible at a glance?

Relevant Art

Hedgedoc

  • Only two states: offline and online (since it's not local-first)
  • In online state, the button opens a list of users, can be logged in or not
  • Color of people's edits is shown in the list

Offline:

Image

Online:

Image

Muse

  • Really tries to avoid spinners (except initial setup)
  • Circle is gray when nothing is happening, pulsates when network traffic is happening

Image

Clicking the circle opens this popover, with three states

  • Live (online, but not syncing)
  • Syncing
  • Offline with local edits
    • size of local changes to be synced when you're online next time is visualized

Image

Image

Image

Receiving side while syncing:

Image

Offline state with closed menu:

Image

Right-clicking the dot opens this debug menu:

Image


@adz's notes on p2panda events:

💥 User: Enter document id -> join document t
➡️ Subscribe to data stream concerning document t
➡️ Find peers who are interested in the same document t
🔔 Discovered peer p being interested in document t
➡️ Connect to available peers, exchange latest document state with each of them. We sync with each discovered peer max. once (except when failed, then we re-attempt x times before giving up).
🔔 Sync started with peer p on document t
🔔 Received data (in our case it's state-based CRDTs / "snapshots") via sync from peer p on document t
➡️ Join gossip overlay via peer p (bootstrap)
🔔 Joined gossip overlay on topic t
🔔 Gossip neighbor up / down
🔔 Received data (in our case it's delta-based CRDTs / "patches") via gossip from peer p on document t

💥 = user action
➡️ = p2panda action (internal)
🔔 = p2panda event (can be subscribed)

@bertob bertob changed the title Sync status UI Network, peers, and sync status UI Mar 2, 2025
@bertob bertob marked this as a duplicate of #48 Mar 2, 2025
@bertob bertob added the frontend GTK, User Interface, UX, etc. label Mar 3, 2025
@bertob
Copy link
Collaborator Author

bertob commented Mar 4, 2025

Initial concept:

Image

Network Indicator

Image

The indicator in the headerbar is dynamic, and shows:

  • Icon for the connection mode (gray when it can't connect, black when connections are possible)
    • Blue pulsing overlay dot when data is being up/downloaded
  • This device's avatar + up to three other devices' avatars
  • If more than 4 peers are online, a +N counter at the end to signify there's more
  • When no avatars are visible, there's a caret so it's not just a lone icon

Connection Mode

Image

The idea (stolen from @jonas2515) is to simplify possible network configurations into one of only 3:

  • Offline (USB only)
  • Bluetooth (nearby devices only)
  • Network (potentially world-wide)

This has the advantage that it's easy to reason about from a use case and threat model perspective, and we don't have to navigate/explain the complexities of different networks (e.g. public WiFi, VPNs, Firewalls, antivirus, and more).

One open question to me is how Bluetooth discovery would work in the first place. I assume this would need a different "join" flow than the invite code? Do we need a list of nearby peers to connect to?

Sync State

Image

This is pretty much just a straight copy of what Muse does, it'd be good to think about it a bit more and see how exactly our case is different. Some questions off the top of my head:

  • Do we need an explicit label with the current state like Muse has, e.g. "Live with local changes"?
  • Is up/download size in MB the right way to think about this in our case? Maybe it should be lines of text instead?
    • What if we add embedded images in the future though?
  • Does this way of displaying the delta make sense in our case?
    • If my device is behind, it makes sense to show how far I am behind the person with the most new changes that I'm aware of. But what about if I'm ahead? Would the delta be reset every time a new device connects and gets my new changes?

Device List

Image

My idea here was to use color + emoji pseudonymous identities, at least to start with.

Some questions:

  • Are identities per-document? Are you a different animal in every new document you open?
  • Settings to choose animal/color?
    • Do we eventually want fully custom user identities?
  • Does this actually make sense for USB/Bluetooth? Should we represent devices differently in those cases?

@jsparber
Copy link
Collaborator

Are identities per-document? Are you a different animal in every new document you open?

I think the animals should be derived from the public key, we use the same key for all documents, so also the animal will be the same.

Settings to choose animal/color?

If we derive the animal from the public key, we don't need to store any user profile. So I would say no.

Do we eventually want fully custom user identities?

Definitely not for now.

jsparber added a commit that referenced this issue Mar 23, 2025
This is the start of the ConnectionPopover discussed in
#51
jsparber added a commit that referenced this issue Apr 2, 2025
This is the start of the ConnectionPopover discussed in
#51
jsparber added a commit that referenced this issue Apr 2, 2025
This is the start of the ConnectionPopover discussed in
#51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
frontend GTK, User Interface, UX, etc.
Projects
None yet
Development

No branches or pull requests

2 participants