Skip to content

Commit 9173f99

Browse files
committed
feat: define listArgs for brisk routes handler
1 parent 08b0ab7 commit 9173f99

File tree

2 files changed

+22
-10
lines changed

2 files changed

+22
-10
lines changed

src/router/brisk.ts

+11-4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import Macroable from '@poppinss/macroable'
1111
import type { Application } from '@adonisjs/application'
1212

1313
import { Route } from './route.js'
14+
import type { HttpContext } from '../http_context/main.js'
1415
import type { ParsedGlobalMiddleware } from '../types/middleware.js'
1516
import type { MakeUrlOptions, RouteFn, RouteMatchers } from '../types/route.js'
1617

@@ -87,27 +88,33 @@ export class BriskRoute extends Macroable {
8788
params?: any[] | Record<string, any>,
8889
options?: MakeUrlOptions & { status: number }
8990
): Route {
90-
return this.setHandler(async function redirectsToRoute(ctx) {
91+
function redirectsToRoute(ctx: HttpContext) {
9192
const redirector = ctx.response.redirect()
9293
if (options?.status) {
9394
redirector.status(options.status)
9495
}
9596

9697
return redirector.toRoute(identifier, params || ctx.params, options)
97-
})
98+
}
99+
Object.defineProperty(redirectsToRoute, 'listArgs', { value: identifier, writable: false })
100+
101+
return this.setHandler(redirectsToRoute)
98102
}
99103

100104
/**
101105
* Redirect request to a fixed URL
102106
*/
103107
redirectToPath(url: string, options?: { status: number }): Route {
104-
return this.setHandler(async function redirectsToPath(ctx) {
108+
function redirectsToPath(ctx: HttpContext) {
105109
const redirector = ctx.response.redirect()
106110
if (options?.status) {
107111
redirector.status(options.status)
108112
}
109113

110114
return redirector.toPath(url)
111-
})
115+
}
116+
Object.defineProperty(redirectsToPath, 'listArgs', { value: url, writable: false })
117+
118+
return this.setHandler(redirectsToPath)
112119
}
113120
}

tests/router/brisk.spec.ts

+11-6
Original file line numberDiff line numberDiff line change
@@ -35,25 +35,30 @@ test.group('Brisk Route', () => {
3535
})
3636
})
3737

38-
test('define handler after calling the redirect method', ({ assert }) => {
38+
test('define handler via the redirect method', ({ assert }) => {
3939
const app = new AppFactory().create(BASE_URL, () => {})
4040

4141
const brisk = new BriskRoute(app, [], {
4242
pattern: '/',
4343
globalMatchers: {},
4444
})
45-
const route = brisk.redirect('/:page', { page: 'home' })
46-
assert.isFunction(route.toJSON().handler)
45+
const route = brisk.redirect('/:page', { page: 'home' }).toJSON()
46+
47+
assert.isFunction(route.handler)
48+
assert.equal('listArgs' in route.handler && route.handler.listArgs, '/:page')
4749
})
4850

49-
test('define handler after calling the redirectToPath method', ({ assert }) => {
51+
test('define handler via the redirectToPath method', ({ assert }) => {
5052
const app = new AppFactory().create(BASE_URL, () => {})
5153

5254
const brisk = new BriskRoute(app, [], {
5355
pattern: '/',
5456
globalMatchers: {},
5557
})
56-
const route = brisk.redirectToPath('/home')
57-
assert.isFunction(route.toJSON().handler)
58+
59+
const route = brisk.redirectToPath('/home').toJSON()
60+
61+
assert.isFunction(route.handler)
62+
assert.equal('listArgs' in route.handler && route.handler.listArgs, '/home')
5863
})
5964
})

0 commit comments

Comments
 (0)