forked from wrenn/wrenn
- Add name column to users (migration + sqlc regen); propagate through JWT claims, auth context, all auth/OAuth handlers, service layer, and frontend - Sidebar and team page show name instead of email; team page splits Name/Email into separate columns - Block sandbox creation in UI and API when user has no active team context - loginTeam helper falls back to first active team when no default is set, fixing login for invited users with no is_default membership - Exclude soft-deleted teams from GetDefaultTeamForUser, GetBYOCTeams queries - Guard host creation against soft-deleted teams in service/host.go - SwitchTeam re-fetches name from DB instead of trusting stale JWT claim - Reset teams store on login so stale data from a previous session never persists - Update openapi.yaml: add name to SignupRequest and AuthResponse schemas
36 lines
719 B
TypeScript
36 lines
719 B
TypeScript
import { listTeams, type TeamWithRole } from '$lib/api/team';
|
|
|
|
function createTeamsStore() {
|
|
let teams = $state<TeamWithRole[]>([]);
|
|
let loaded = $state(false);
|
|
|
|
return {
|
|
get list() {
|
|
return teams;
|
|
},
|
|
get loaded() {
|
|
return loaded;
|
|
},
|
|
async fetch() {
|
|
if (loaded) return;
|
|
const result = await listTeams();
|
|
if (result.ok) {
|
|
teams = result.data;
|
|
loaded = true;
|
|
}
|
|
},
|
|
// Call after mutating teams (create/switch triggers a full reload, but
|
|
// adding a team locally avoids a flicker in the popover list).
|
|
set(newTeams: TeamWithRole[]) {
|
|
teams = newTeams;
|
|
loaded = true;
|
|
},
|
|
reset() {
|
|
teams = [];
|
|
loaded = false;
|
|
}
|
|
};
|
|
}
|
|
|
|
export const teams = createTeamsStore();
|