Feature - Widget for people Searching input box#725
Open
SharonStrats wants to merge 17 commits intomainfrom
Open
Feature - Widget for people Searching input box#725SharonStrats wants to merge 17 commits intomainfrom
SharonStrats wants to merge 17 commits intomainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new People Search widget to the widgets library, enabling panes to discover and search for people using the user’s FOAF graph (foaf:knows) plus linked address books (vCard contacts), with client-side filtering UX.
Changes:
- Introduces
createPeopleSearchwidget that discovers people (FOAF traversal + address books) and renders a searchable dropdown. - Re-exports the new widget from
src/widgets/index.js. - Adds
@solid-data-modules/contacts-rdflibdependency (and lockfile entries) to read/list address books.
Reviewed changes
Copilot reviewed 3 out of 4 changed files in this pull request and generated 9 comments.
| File | Description |
|---|---|
| src/widgets/peopleSearch.ts | New people search widget: discovery, caching, rendering, and filtering logic. |
| src/widgets/index.js | Re-export the new peopleSearch widget from the widgets entrypoint. |
| package.json | Adds @solid-data-modules/contacts-rdflib dependency required for address book discovery. |
| package-lock.json | Lockfile updates for the new dependency and its transitive deps. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…dOS/solid-ui into feature/widget-peoplesearch
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…dOS/solid-ui into feature/widget-peoplesearch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This widget allows panes to search through people UX similar to Facebook. It uses who the person knows and their contacts to find people. First found are a users contacts with WebIds and those they have listed as foaf: knows. It then traverses through 3 levels of the people they know. This can be easily decreased or increased.
This could be used in mashlib at the top to find people and go to their profile, just like Facebook. It can also be used in panes to select people and take action like adding them to a meeting, scheduledMeeting, perhaps in chat. I'm also thinking we may also be able to use this as a way to select people for sharing as well.