feat(LRL App): init V0
This commit is contained in:
62
resources/js/routes/contact/index.ts
Normal file
62
resources/js/routes/contact/index.ts
Normal file
@@ -0,0 +1,62 @@
|
||||
import { queryParams, type RouteQueryOptions, type RouteDefinition, type RouteFormDefinition } from './../../wayfinder'
|
||||
/**
|
||||
* @see \App\Http\Controllers\Forms\ContactFormController::store
|
||||
* @see app/Http/Controllers/Forms/ContactFormController.php:26
|
||||
* @route '/contact'
|
||||
*/
|
||||
export const store = (options?: RouteQueryOptions): RouteDefinition<'post'> => ({
|
||||
url: store.url(options),
|
||||
method: 'post',
|
||||
})
|
||||
|
||||
store.definition = {
|
||||
methods: ["post"],
|
||||
url: '/contact',
|
||||
} satisfies RouteDefinition<["post"]>
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Forms\ContactFormController::store
|
||||
* @see app/Http/Controllers/Forms/ContactFormController.php:26
|
||||
* @route '/contact'
|
||||
*/
|
||||
store.url = (options?: RouteQueryOptions) => {
|
||||
return store.definition.url + queryParams(options)
|
||||
}
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Forms\ContactFormController::store
|
||||
* @see app/Http/Controllers/Forms/ContactFormController.php:26
|
||||
* @route '/contact'
|
||||
*/
|
||||
store.post = (options?: RouteQueryOptions): RouteDefinition<'post'> => ({
|
||||
url: store.url(options),
|
||||
method: 'post',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Forms\ContactFormController::store
|
||||
* @see app/Http/Controllers/Forms/ContactFormController.php:26
|
||||
* @route '/contact'
|
||||
*/
|
||||
const storeForm = (options?: RouteQueryOptions): RouteFormDefinition<'post'> => ({
|
||||
action: store.url(options),
|
||||
method: 'post',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Forms\ContactFormController::store
|
||||
* @see app/Http/Controllers/Forms/ContactFormController.php:26
|
||||
* @route '/contact'
|
||||
*/
|
||||
storeForm.post = (options?: RouteQueryOptions): RouteFormDefinition<'post'> => ({
|
||||
action: store.url(options),
|
||||
method: 'post',
|
||||
})
|
||||
|
||||
store.form = storeForm
|
||||
|
||||
const contact = {
|
||||
store: Object.assign(store, store),
|
||||
}
|
||||
|
||||
export default contact
|
||||
Reference in New Issue
Block a user