Conversation
This commit adds a new "Portals" tab to the Host Details view. It displays all portals associated with the host. - Adds `PortalTab` and `PortalsTable` components. - Uses `VirtualizedTableWrapper` and `VirtualizedTable` for displaying portals. - The table columns include Portal ID, Proxy Command (e.g. `./socks5 -portal=<PortalID> -upstream=<server_url>`), Owner, Status (Active/Closed), and Active Users. - Adds an OS-aware download link banner at the top of the tab for SOCKS5 binaries. - Updates `HostContext` and `HostTabs` to include the total number of portals in the tab header. - Modifies `VirtualizedTableWrapperProps` to allow passing a custom `headerComponent` so that the SOCKS5 download banner can be shown within the wrapper frame. Co-authored-by: KCarretto <16250309+KCarretto@users.noreply.github.com>
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with New to Jules? Learn more at jules.google/docs. For security, I will only act on instructions from the user who triggered this task. |
This commit adds a new "Portals" tab to the Host Details view. It displays all portals associated with the host. - Adds `PortalTab` and `PortalsTable` components. - Uses `VirtualizedTableWrapper` and `VirtualizedTable` for displaying portals. - The table columns include Portal ID, Proxy Command (e.g. `./socks5 -portal=<PortalID> -upstream=<server_url>`), Owner, Status (Active/Closed), and Active Users. - Adds an OS-aware download link banner at the top of the tab for SOCKS5 binaries. - Updates `HostContext` and `HostTabs` to include the total number of portals in the tab header. Co-authored-by: KCarretto <16250309+KCarretto@users.noreply.github.com>
This PR introduces a new "Portals" tab in the
HostDetailsview to provide users with an interface to manage and view SOCKS5 portals for a selected host.Key Changes
PortalTabandPortalsTablecomponents using theVirtualizedTableecosystem to present a list of portals../socks5 -portal=<PortalID> -upstream=<server_url>), the Owner, the Status (Active/Closed), and Active Users.socks5client binary for the user's OS.HostContexthas been updated to query the count of total and active portals and expose this data to theHostTabscomponent to show counts on the tab label.headerComponenttoVirtualizedTableWrapperPropsandVirtualizedTableWrapperto allow injecting custom elements (like the SOCKS5 banner) before the table/empty states.PR created automatically by Jules for task 15693748027964136263 started by @KCarretto