-
Notifications
You must be signed in to change notification settings - Fork 1
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
Comments
Initial concept: Network IndicatorThe indicator in the headerbar is dynamic, and shows:
Connection ModeThe idea (stolen from @jonas2515) is to simplify possible network configurations into one of only 3:
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 StateThis 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:
Device ListMy idea here was to use color + emoji pseudonymous identities, at least to start with. Some questions:
|
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.
If we derive the animal from the public key, we don't need to store any user profile. So I would say no.
Definitely not for now. |
This is the start of the ConnectionPopover discussed in #51
This is the start of the ConnectionPopover discussed in #51
This is the start of the ConnectionPopover discussed in #51
Goals
Information we need to expose
Features
Questions
Relevant Art
Hedgedoc
Offline:
Online:
Muse
Clicking the circle opens this popover, with three states
Receiving side while syncing:
Offline state with closed menu:
Right-clicking the dot opens this debug menu:
@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)
The text was updated successfully, but these errors were encountered: