Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .jules/bolt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## 2024-07-07 - Optimize workspace compilation in auth routing
**Learning:** When resolving tenant access, we often have the full `Organization` object pre-fetched from a list or lookup. Calling the React `cache()` wrapped `getWorkspaceExperienceBySlug` discards this pre-fetched object and causes redundant database queries. We shouldn't add the pre-fetched object to the cache signature because it fragments the cache key.
**Action:** Bypass the cached data-fetching method (`getWorkspaceExperienceBySlug`) and directly call the internal synchronous compiler (`compileWorkspaceExperience`) when the full `Organization` object is already available in the application layer. Ensure `settings` property is passed safely by using a generic type map lookup rather than `as any` type assertions.
4 changes: 2 additions & 2 deletions lib/application/auth/tenant-access-selection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ export interface MembershipSelectionOrganization {
slug: string;
}

export function selectMembershipOrganization(input: {
export function selectMembershipOrganization<T extends MembershipSelectionOrganization>(input: {
memberships: MembershipSelectionMember[];
organizationsById: Map<string, MembershipSelectionOrganization>;
organizationsById: Map<string, T>;
requestedSlug?: string | null;
}) {
const requestedSlug = input.requestedSlug?.trim() || null;
Expand Down
22 changes: 19 additions & 3 deletions lib/application/auth/tenant-access.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import {
} from "@/lib/application/auth/tenant-routing";
import { selectMembershipOrganization } from "@/lib/application/auth/tenant-access-selection";
import { getWorkspaceExperienceBySlug } from "@/lib/application/workspace/workspace-service";
import { compileWorkspaceExperience } from "@/lib/platform/workspace/compiler";
import { OrganizationMemberRepository } from "@/lib/infrastructure/supabase/organization-member-repository";
import { OrganizationRepository } from "@/lib/infrastructure/supabase/organization-repository";
import { resolveWorkspaceTemplateForEmailDomain } from "@/lib/platform/workspace/registry";
Expand Down Expand Up @@ -110,7 +111,12 @@ export async function resolveTenantAccess(
});

if (organization) {
const workspace = await getWorkspaceExperienceBySlug(organization.slug);
// ⚑ Bolt: Using synchronous `compileWorkspaceExperience` directly since the full `Organization` object is already available in the map.
// πŸ“Š Impact: Bypasses the `getWorkspaceExperienceBySlug` cache fetch which causes redundant DB lookups since the `Organization` object cannot be safely passed to the React cache key.
const workspace = compileWorkspaceExperience({
slug: organization.slug,
organization,
});
return existingWorkspaceAccess({
slug: organization.slug,
name: organization.name,
Expand All @@ -124,7 +130,12 @@ export async function resolveTenantAccess(
if (emailDomain) {
const workspaceOrganization = await organizations.findFirstByWorkspaceEmailDomain(emailDomain);
if (workspaceOrganization && (!requestedSlug || workspaceOrganization.slug === requestedSlug)) {
const workspace = await getWorkspaceExperienceBySlug(workspaceOrganization.slug);
// ⚑ Bolt: Using synchronous `compileWorkspaceExperience` directly since the full `Organization` object was fetched above.
// πŸ“Š Impact: Saves a redundant DB query on login.
const workspace = compileWorkspaceExperience({
slug: workspaceOrganization.slug,
organization: workspaceOrganization,
});
return existingWorkspaceAccess({
slug: workspaceOrganization.slug,
name: workspaceOrganization.name,
Expand All @@ -143,7 +154,12 @@ export async function resolveTenantAccess(
if (guessed.slug) {
const existingOrganization = await organizations.findBySlug(guessed.slug).catch(() => null);
if (existingOrganization) {
const workspace = await getWorkspaceExperienceBySlug(existingOrganization.slug);
// ⚑ Bolt: Using synchronous `compileWorkspaceExperience` directly since the full `Organization` object was fetched above.
// πŸ“Š Impact: Saves a redundant DB query on login.
const workspace = compileWorkspaceExperience({
slug: existingOrganization.slug,
organization: existingOrganization,
});
return existingWorkspaceAccess({
slug: existingOrganization.slug,
name: existingOrganization.name,
Expand Down
Loading