Truncate access review roles with badge list

Long role strings in the access review table broke row layout when
drivers joined many roles into one comma-separated value. Expose
roles as a string array in GraphQL by splitting the stored role at
the API layer, and render the first three roles as badges with a
"+X more" popover for the rest.

Closes ENG-459.

Signed-off-by: Ludovic Vielle <ludovic@probo.com>
This commit is contained in:
Ludovic Vielle
2026-06-12 18:23:04 +02:00
parent bf20ca1a90
commit 8094e7cfd0
80 changed files with 768 additions and 378 deletions

View File

@@ -21,6 +21,7 @@ import (
"fmt"
"net/http"
"net/url"
"strings"
"time"
"go.probo.inc/probo/pkg/coredata"
@@ -120,7 +121,8 @@ func (d *SentryDriver) ListAccounts(ctx context.Context) ([]AccountRecord, error
active = active && m.User.IsActive
}
isAdmin := m.OrgRole == "admin" || m.OrgRole == "owner"
role := strings.TrimSpace(m.OrgRole)
isAdmin := role == "admin" || role == "owner"
mfaStatus := coredata.MFAStatusUnknown
@@ -134,10 +136,15 @@ func (d *SentryDriver) ListAccounts(ctx context.Context) ([]AccountRecord, error
authMethod := sentryAuthMethod(m.Flags, m.User)
roles := []string{}
if role != "" {
roles = []string{role}
}
record := AccountRecord{
Email: m.Email,
FullName: fullName,
Role: m.OrgRole,
Roles: roles,
Active: new(active),
IsAdmin: isAdmin,
ExternalID: m.ID,