58 lines
1.5 KiB
TypeScript
58 lines
1.5 KiB
TypeScript
import { defineConfig } from '@adonisjs/inertia';
|
|
import type { HttpContext } from '@adonisjs/core/http';
|
|
|
|
export default defineConfig({
|
|
/**
|
|
* Path to the Edge view that will be used as the root view for Inertia responses
|
|
*/
|
|
rootView: 'app',
|
|
|
|
/**
|
|
* Data that should be shared with all rendered pages
|
|
*/
|
|
sharedData: {
|
|
errors: (ctx) => ctx.session.flashMessages.get('errors'),
|
|
|
|
user_id: (ctx) => {
|
|
return ctx.session.flashMessages.get('user_id');
|
|
},
|
|
|
|
flash: (ctx) => {
|
|
return {
|
|
message: ctx.session.flashMessages.get('message'),
|
|
warning: ctx.session.flashMessages.get('warning'),
|
|
};
|
|
},
|
|
|
|
// params: ({ params }) => params,
|
|
authUser: async ({ auth }: HttpContext) => {
|
|
if (auth.user) {
|
|
await auth.user.load('roles');
|
|
return auth.user;
|
|
// {
|
|
// 'id': auth.user.id,
|
|
// 'login': auth.user.login,
|
|
// };
|
|
} else {
|
|
return null;
|
|
}
|
|
},
|
|
},
|
|
});
|
|
|
|
// import { InertiaConfig } from '@ioc:EidelLev/Inertia';
|
|
|
|
// /*
|
|
// |--------------------------------------------------------------------------
|
|
// | Inertia-AdonisJS config
|
|
// |--------------------------------------------------------------------------
|
|
// |
|
|
// */
|
|
|
|
// export const inertia: InertiaConfig = {
|
|
// view: 'app',
|
|
// // ssr: {
|
|
// // enabled: false,
|
|
// // },
|
|
// };
|