Social
Bazaar comes with built-in social features. It allows you to find user and add users to your contacts for easy lookup. You can also request a connection to another user. An accepted connection will then give you access to non-public information such as their email address.
Get a User
// Get logged in userbzr.social.getUser();
// Get user by IDbzr.social.getUser({ userId: "example-user-id" });
// Get user by handlebzr.social.getUser({ handle: "example-handle" });
You generally get public user information when querying a user except for your own (logged in) user and connected users.
type User = { id: string; name: string; handle: string; email: string | undefined; // private};
List Contacts
List the contacts of the logged in user:
bzr.social.contacts.list();
A contact looks as follows:
type Contact = { id: string; /** * Flag to signal if contact is connected (you are trusted by this contact) */ connected: boolean; user: User;};
Subscribe to Contacts
Subscribe to change events for contacts of the logged in user:
bzr.social.contacts.subscribe(listener);
See more details about the listener
object.
Find Users and Manage Contacts
Finding a user or managing contacts can be done via a modal:
bzr.social.openModal();
You can also open a modal and pass a callback to do something with the user ID selected in the modal:
bzr.social.openModal((userId) => { // do something with userId, e.g., create a permission});