mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
Maintain online status in contacts panel
This commit is contained in:
parent
4e9924c717
commit
52c36d3e3d
@ -20,6 +20,7 @@ pub struct User {
|
||||
#[derive(Debug)]
|
||||
pub struct Contact {
|
||||
pub user: Arc<User>,
|
||||
pub online: bool,
|
||||
pub projects: Vec<ProjectMetadata>,
|
||||
}
|
||||
|
||||
@ -109,6 +110,14 @@ impl UserStore {
|
||||
}
|
||||
Status::SignedOut => {
|
||||
current_user_tx.send(None).await.ok();
|
||||
if let Some(this) = this.upgrade(&cx) {
|
||||
this.update(&mut cx, |this, _| this.clear_contacts()).await;
|
||||
}
|
||||
}
|
||||
Status::ConnectionLost => {
|
||||
if let Some(this) = this.upgrade(&cx) {
|
||||
this.update(&mut cx, |this, _| this.clear_contacts()).await;
|
||||
}
|
||||
}
|
||||
_ => {}
|
||||
}
|
||||
@ -499,7 +508,11 @@ impl Contact {
|
||||
guests,
|
||||
});
|
||||
}
|
||||
Ok(Self { user, projects })
|
||||
Ok(Self {
|
||||
user,
|
||||
online: contact.online,
|
||||
projects,
|
||||
})
|
||||
}
|
||||
|
||||
pub fn non_empty_projects(&self) -> impl Iterator<Item = &ProjectMetadata> {
|
||||
|
@ -5000,13 +5000,22 @@ mod tests {
|
||||
.await;
|
||||
deterministic.run_until_parked();
|
||||
client_a.user_store.read_with(cx_a, |store, _| {
|
||||
assert_eq!(contacts(store), [("user_b", vec![]), ("user_c", vec![])])
|
||||
assert_eq!(
|
||||
contacts(store),
|
||||
[("user_b", true, vec![]), ("user_c", true, vec![])]
|
||||
)
|
||||
});
|
||||
client_b.user_store.read_with(cx_b, |store, _| {
|
||||
assert_eq!(contacts(store), [("user_a", vec![]), ("user_c", vec![])])
|
||||
assert_eq!(
|
||||
contacts(store),
|
||||
[("user_a", true, vec![]), ("user_c", true, vec![])]
|
||||
)
|
||||
});
|
||||
client_c.user_store.read_with(cx_c, |store, _| {
|
||||
assert_eq!(contacts(store), [("user_a", vec![]), ("user_b", vec![])])
|
||||
assert_eq!(
|
||||
contacts(store),
|
||||
[("user_a", true, vec![]), ("user_b", true, vec![])]
|
||||
)
|
||||
});
|
||||
|
||||
// Share a worktree as client A.
|
||||
@ -5033,18 +5042,27 @@ mod tests {
|
||||
|
||||
deterministic.run_until_parked();
|
||||
client_a.user_store.read_with(cx_a, |store, _| {
|
||||
assert_eq!(contacts(store), [("user_b", vec![]), ("user_c", vec![])])
|
||||
assert_eq!(
|
||||
contacts(store),
|
||||
[("user_b", true, vec![]), ("user_c", true, vec![])]
|
||||
)
|
||||
});
|
||||
client_b.user_store.read_with(cx_b, |store, _| {
|
||||
assert_eq!(
|
||||
contacts(store),
|
||||
[("user_a", vec![("a", false, vec![])]), ("user_c", vec![])]
|
||||
[
|
||||
("user_a", true, vec![("a", false, vec![])]),
|
||||
("user_c", true, vec![])
|
||||
]
|
||||
)
|
||||
});
|
||||
client_c.user_store.read_with(cx_c, |store, _| {
|
||||
assert_eq!(
|
||||
contacts(store),
|
||||
[("user_a", vec![("a", false, vec![])]), ("user_b", vec![])]
|
||||
[
|
||||
("user_a", true, vec![("a", false, vec![])]),
|
||||
("user_b", true, vec![])
|
||||
]
|
||||
)
|
||||
});
|
||||
|
||||
@ -5057,18 +5075,27 @@ mod tests {
|
||||
.unwrap();
|
||||
deterministic.run_until_parked();
|
||||
client_a.user_store.read_with(cx_a, |store, _| {
|
||||
assert_eq!(contacts(store), [("user_b", vec![]), ("user_c", vec![])])
|
||||
assert_eq!(
|
||||
contacts(store),
|
||||
[("user_b", true, vec![]), ("user_c", true, vec![])]
|
||||
)
|
||||
});
|
||||
client_b.user_store.read_with(cx_b, |store, _| {
|
||||
assert_eq!(
|
||||
contacts(store),
|
||||
[("user_a", vec![("a", true, vec![])]), ("user_c", vec![])]
|
||||
[
|
||||
("user_a", true, vec![("a", true, vec![])]),
|
||||
("user_c", true, vec![])
|
||||
]
|
||||
)
|
||||
});
|
||||
client_c.user_store.read_with(cx_c, |store, _| {
|
||||
assert_eq!(
|
||||
contacts(store),
|
||||
[("user_a", vec![("a", true, vec![])]), ("user_b", vec![])]
|
||||
[
|
||||
("user_a", true, vec![("a", true, vec![])]),
|
||||
("user_b", true, vec![])
|
||||
]
|
||||
)
|
||||
});
|
||||
|
||||
@ -5084,14 +5111,17 @@ mod tests {
|
||||
.unwrap();
|
||||
deterministic.run_until_parked();
|
||||
client_a.user_store.read_with(cx_a, |store, _| {
|
||||
assert_eq!(contacts(store), [("user_b", vec![]), ("user_c", vec![])])
|
||||
assert_eq!(
|
||||
contacts(store),
|
||||
[("user_b", true, vec![]), ("user_c", true, vec![])]
|
||||
)
|
||||
});
|
||||
client_b.user_store.read_with(cx_b, |store, _| {
|
||||
assert_eq!(
|
||||
contacts(store),
|
||||
[
|
||||
("user_a", vec![("a", true, vec!["user_b"])]),
|
||||
("user_c", vec![])
|
||||
("user_a", true, vec![("a", true, vec!["user_b"])]),
|
||||
("user_c", true, vec![])
|
||||
]
|
||||
)
|
||||
});
|
||||
@ -5099,8 +5129,8 @@ mod tests {
|
||||
assert_eq!(
|
||||
contacts(store),
|
||||
[
|
||||
("user_a", vec![("a", true, vec!["user_b"])]),
|
||||
("user_b", vec![])
|
||||
("user_a", true, vec![("a", true, vec!["user_b"])]),
|
||||
("user_b", true, vec![])
|
||||
]
|
||||
)
|
||||
});
|
||||
@ -5114,16 +5144,70 @@ mod tests {
|
||||
cx_a.update(move |_| drop(project_a));
|
||||
deterministic.run_until_parked();
|
||||
client_a.user_store.read_with(cx_a, |store, _| {
|
||||
assert_eq!(contacts(store), [("user_b", vec![]), ("user_c", vec![])])
|
||||
assert_eq!(
|
||||
contacts(store),
|
||||
[("user_b", true, vec![]), ("user_c", true, vec![])]
|
||||
)
|
||||
});
|
||||
client_b.user_store.read_with(cx_b, |store, _| {
|
||||
assert_eq!(contacts(store), [("user_a", vec![]), ("user_c", vec![])])
|
||||
assert_eq!(
|
||||
contacts(store),
|
||||
[("user_a", true, vec![]), ("user_c", true, vec![])]
|
||||
)
|
||||
});
|
||||
client_c.user_store.read_with(cx_c, |store, _| {
|
||||
assert_eq!(contacts(store), [("user_a", vec![]), ("user_b", vec![])])
|
||||
assert_eq!(
|
||||
contacts(store),
|
||||
[("user_a", true, vec![]), ("user_b", true, vec![])]
|
||||
)
|
||||
});
|
||||
|
||||
fn contacts(user_store: &UserStore) -> Vec<(&str, Vec<(&str, bool, Vec<&str>)>)> {
|
||||
server.disconnect_client(client_c.current_user_id(cx_c));
|
||||
server.forbid_connections();
|
||||
deterministic.advance_clock(rpc::RECEIVE_TIMEOUT);
|
||||
|
||||
client_a.user_store.read_with(cx_a, |store, _| {
|
||||
assert_eq!(
|
||||
contacts(store),
|
||||
[("user_b", true, vec![]), ("user_c", false, vec![])]
|
||||
)
|
||||
});
|
||||
client_b.user_store.read_with(cx_b, |store, _| {
|
||||
assert_eq!(
|
||||
contacts(store),
|
||||
[("user_a", true, vec![]), ("user_c", false, vec![])]
|
||||
)
|
||||
});
|
||||
client_c
|
||||
.user_store
|
||||
.read_with(cx_c, |store, _| assert_eq!(contacts(store), []));
|
||||
|
||||
server.allow_connections();
|
||||
client_c
|
||||
.authenticate_and_connect(false, &cx_c.to_async())
|
||||
.await
|
||||
.unwrap();
|
||||
deterministic.run_until_parked();
|
||||
client_a.user_store.read_with(cx_a, |store, _| {
|
||||
assert_eq!(
|
||||
contacts(store),
|
||||
[("user_b", true, vec![]), ("user_c", true, vec![])]
|
||||
)
|
||||
});
|
||||
client_b.user_store.read_with(cx_b, |store, _| {
|
||||
assert_eq!(
|
||||
contacts(store),
|
||||
[("user_a", true, vec![]), ("user_c", true, vec![])]
|
||||
)
|
||||
});
|
||||
client_c.user_store.read_with(cx_c, |store, _| {
|
||||
assert_eq!(
|
||||
contacts(store),
|
||||
[("user_a", true, vec![]), ("user_b", true, vec![])]
|
||||
)
|
||||
});
|
||||
|
||||
fn contacts(user_store: &UserStore) -> Vec<(&str, bool, Vec<(&str, bool, Vec<&str>)>)> {
|
||||
user_store
|
||||
.contacts()
|
||||
.iter()
|
||||
@ -5139,7 +5223,11 @@ mod tests {
|
||||
)
|
||||
})
|
||||
.collect();
|
||||
(contact.user.github_login.as_str(), worktrees)
|
||||
(
|
||||
contact.user.github_login.as_str(),
|
||||
contact.online,
|
||||
worktrees,
|
||||
)
|
||||
})
|
||||
.collect()
|
||||
}
|
||||
|
@ -638,10 +638,20 @@ impl ContactsPanel {
|
||||
executor.clone(),
|
||||
));
|
||||
if !matches.is_empty() {
|
||||
self.entries.push(ContactEntry::Header("Contacts"));
|
||||
self.entries.extend(
|
||||
matches
|
||||
let (online_contacts, offline_contacts) = matches
|
||||
.iter()
|
||||
.partition::<Vec<_>, _>(|mat| contacts[mat.candidate_id].online);
|
||||
|
||||
self.entries.push(ContactEntry::Header("Online"));
|
||||
self.entries.extend(
|
||||
online_contacts
|
||||
.into_iter()
|
||||
.map(|mat| ContactEntry::Contact(contacts[mat.candidate_id].clone())),
|
||||
);
|
||||
self.entries.push(ContactEntry::Header("Offline"));
|
||||
self.entries.extend(
|
||||
offline_contacts
|
||||
.into_iter()
|
||||
.map(|mat| ContactEntry::Contact(contacts[mat.candidate_id].clone())),
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user