Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update link component; update route options fn #8

Merged
merged 1 commit into from
Mar 25, 2025
Merged
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
4 changes: 2 additions & 2 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import { TanStackRouterDevtoolsComponent } from '../router/router-devtools';
template: `
<h1>Welcome to {{ title }}!</h1>

<a link to="/">Home</a> | <a link to="/about">About</a> |
<a link to="/parent/$id" [params]="{ id: '1' }">Parent 1</a>
<a link="/">Home</a> | <a link="/about">About</a> |
<a [link]="{ to: '/parent/$id', params: { id: '1' } }">Parent 1</a>
<hr />

<outlet />
Expand Down
6 changes: 3 additions & 3 deletions src/app/parent.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ export const Route = createRoute({
imports: [Outlet, Link],
template: `
Parent -
<a link to="/parent/$id" [params]="{ id: 'child' }">Child</a> |
<a link to="/parent/$id" [params]="{ id: '1' }">Child 1</a> |
<a link to="/parent/$id" [params]="{ id: '2' }">Child 2</a>
<a [link]="{ to: '/parent/$id', params: { id: 'child' } }">Child</a> |
<a [link]="{ to: '/parent/$id', params: { id: '1' } }">Child 1</a> |
<a [link]="{ to: '/parent/$id', params: { id: '2' } }">Child 2</a>
<hr />

<outlet />
Expand Down
2 changes: 1 addition & 1 deletion src/router/create-router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export class NgRouter<
>
) {
super(options);
this.load({ sync: true });
void this.load({ sync: true });
this.__store.subscribe(() => {
this.routerState.set(this.state);
});
Expand Down
31 changes: 13 additions & 18 deletions src/router/link.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,32 +4,27 @@ import { injectRouter } from './router';

@Directive({
selector: 'a[link]',
exportAs: 'link',
host: {
'(click)': 'navigate($event)',
'[attr.href]': '_href()',
'[attr.href]': 'hostHref()',
},
})
export class Link {
to = input<NavigateOptions['to']>();
from = input<NavigateOptions['from']>();
params = input<NavigateOptions['params']>();
search = input<NavigateOptions['search']>();
hash = input<NavigateOptions['hash']>();
options = input<NavigateOptions>();
toOptions = input.required<
| (Omit<NavigateOptions, 'to'> & { to: NonNullable<NavigateOptions['to']> })
| NonNullable<NavigateOptions['to']>
>({ alias: 'link' });

router = injectRouter();
private navigateOptions = computed(() => {
const options: NavigateOptions = {
to: this.to(),
from: this.from(),
params: this.params(),
search: this.search(),
hash: this.hash(),
...this.options(),
};

return options;
private navigateOptions = computed(() => {
const to = this.toOptions();
if (typeof to === 'object') return to;
return { to };
});
_href = computed(

protected hostHref = computed(
() => this.router.buildLocation(this.navigateOptions()).href
);

Expand Down
31 changes: 19 additions & 12 deletions src/router/outlet.ts
Original file line number Diff line number Diff line change
@@ -1,25 +1,26 @@
import {
ComponentRef,
DestroyRef,
Directive,
effect,
inject,
Type,
ViewContainerRef,
} from '@angular/core';

import { AnyRoute } from '@tanstack/router-core';
import { injectRouteContext, injectRouter } from './router';
import { AnyRoute, RouterState } from '@tanstack/router-core';

import { context } from './context';
import { injectRouteContext, injectRouter } from './router';

@Directive({
selector: 'outlet',
})
@Directive({ selector: 'outlet', exportAs: 'outlet' })
export class Outlet {
private cmp!: Type<any>;
private context? = injectRouteContext();
private router = injectRouter();
private vcr = inject(ViewContainerRef);

private cmp: Type<any> | null = null;
private cmpRef: ComponentRef<any> | null = null;

constructor() {
effect(() => {
const routerState = this.router.routerState();
Expand Down Expand Up @@ -47,19 +48,25 @@ export class Outlet {

if (this.cmp !== currentCmp) {
this.vcr.clear();
this.vcr.createComponent(currentCmp, {
this.cmpRef = this.vcr.createComponent(currentCmp, {
injector,
environmentInjector,
});
this.cmp = currentCmp;
} else {
this.cmpRef?.changeDetectorRef.markForCheck();
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

when this effect reruns for the same component for whatever reason, we'll mark this cmpRef for check just for guarantee-ness.

}
});

inject(DestroyRef).onDestroy(() => {
this.vcr.clear();
this.cmp = null;
this.cmpRef = null;
Comment on lines +63 to +64
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nullify these for GC

});
}

getMatch(matches: any[]): any {
getMatch(matches: RouterState['matches']) {
const idx = matches.findIndex((match) => match.id === this.context?.id);
const matchesToRender = matches[idx + 1];

return matchesToRender;
return matches[idx + 1];
}
}
41 changes: 30 additions & 11 deletions src/router/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,17 +189,15 @@ export function createRoute<
TChildren
> {
if (options.loader) {
const originalLoader = options.loader;
options.loader = (...args: Parameters<typeof originalLoader>) => {
const { context, route } = args[0];
const routeInjector = (
context as RouterContext<TRouterContext>
).getRouteInjector(route.id);
return runInInjectionContext(
routeInjector,
originalLoader.bind(null, ...args)
);
};
options.loader = runFnInInjectionContext(options.loader);
}

if (options.shouldReload && typeof options.shouldReload === 'function') {
options.shouldReload = runFnInInjectionContext(options.shouldReload);
}

if (options.beforeLoad) {
options.beforeLoad = runFnInInjectionContext(options.beforeLoad);
}

return new Route<
Expand Down Expand Up @@ -292,6 +290,18 @@ export function createRootRoute<
unknown,
unknown
> {
if (options?.loader) {
options.loader = runFnInInjectionContext(options.loader);
}

if (options?.shouldReload && typeof options.shouldReload === 'function') {
options.shouldReload = runFnInInjectionContext(options.shouldReload);
}

if (options?.beforeLoad) {
options.beforeLoad = runFnInInjectionContext(options.beforeLoad);
}

return new RootRoute<
TSearchValidator,
TRouterContext,
Expand Down Expand Up @@ -358,3 +368,12 @@ export class NotFoundRoute<
});
}
}

function runFnInInjectionContext<TFn extends (...args: any[]) => any>(fn: TFn) {
const originalFn = fn;
return (...args: Parameters<TFn>) => {
const { context, route } = args[0];
const routeInjector = context.getRouteInjector(route.id);
return runInInjectionContext(routeInjector, originalFn.bind(null, ...args));
};
}