mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-19 03:04:05 +00:00
Rename resources/scripts-v2 to resources/scripts and drop @v2 alias
Now that the legacy v1 frontend (commit 064bdf53) is gone, the v2 directory is the only frontend and the v2 suffix is just noise. Renames resources/scripts-v2 to resources/scripts via git mv (so git records the move as renames, preserving blame and log --follow), then bulk-rewrites the 152 files that imported via @v2/... to use @/scripts/... instead. The existing @ alias (resources/) covers the new path with no extra config needed.
Drops the now-unused @v2 alias from vite.config.js and points the laravel-vite-plugin entry at resources/scripts/main.ts. Updates the only blade reference (resources/views/app.blade.php) to match. The package.json test script (eslint ./resources/scripts) automatically targets the right place after the rename without any edit.
Verified: npm run build exits clean and the Vite warning lines now reference resources/scripts/plugins/i18n.ts, confirming every import resolved through the new path. git log --follow on any moved file walks back through its scripts-v2 history.
This commit is contained in:
131
resources/scripts/features/admin/routes.ts
Normal file
131
resources/scripts/features/admin/routes.ts
Normal file
@@ -0,0 +1,131 @@
|
||||
import type { RouteRecordRaw } from 'vue-router'
|
||||
|
||||
const CompanyLayout = () => import('../../layouts/CompanyLayout.vue')
|
||||
const AdminDashboardView = () => import('./views/AdminDashboardView.vue')
|
||||
const AdminCompaniesView = () => import('./views/AdminCompaniesView.vue')
|
||||
const AdminCompanyEditView = () => import('./views/AdminCompanyEditView.vue')
|
||||
const AdminUsersView = () => import('./views/AdminUsersView.vue')
|
||||
const AdminUserEditView = () => import('./views/AdminUserEditView.vue')
|
||||
const AdminSettingsView = () => import('./views/AdminSettingsView.vue')
|
||||
const AdminMailConfigView = () => import('./views/settings/AdminMailConfigView.vue')
|
||||
const AdminPdfGenerationView = () => import('./views/settings/AdminPdfGenerationView.vue')
|
||||
const AdminBackupView = () => import('./views/settings/AdminBackupView.vue')
|
||||
const AdminFileDiskView = () => import('./views/settings/AdminFileDiskView.vue')
|
||||
const AdminFontView = () => import('./views/settings/AdminFontView.vue')
|
||||
const AdminUpdateAppView = () => import('./views/settings/AdminUpdateAppView.vue')
|
||||
|
||||
export const adminRoutes: RouteRecordRaw[] = [
|
||||
{
|
||||
path: '/admin/administration',
|
||||
component: CompanyLayout,
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
isSuperAdmin: true,
|
||||
usesAdminBootstrap: true,
|
||||
},
|
||||
children: [
|
||||
{
|
||||
path: 'dashboard',
|
||||
name: 'admin.dashboard',
|
||||
component: AdminDashboardView,
|
||||
meta: {
|
||||
isSuperAdmin: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
path: 'companies',
|
||||
name: 'admin.companies.index',
|
||||
component: AdminCompaniesView,
|
||||
meta: {
|
||||
isSuperAdmin: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
path: 'companies/:id/edit',
|
||||
name: 'admin.companies.edit',
|
||||
component: AdminCompanyEditView,
|
||||
meta: {
|
||||
isSuperAdmin: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
path: 'users',
|
||||
name: 'admin.users.index',
|
||||
component: AdminUsersView,
|
||||
meta: {
|
||||
isSuperAdmin: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
path: 'users/:id/edit',
|
||||
name: 'admin.users.edit',
|
||||
component: AdminUserEditView,
|
||||
meta: {
|
||||
isSuperAdmin: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
path: 'settings',
|
||||
name: 'admin.settings',
|
||||
component: AdminSettingsView,
|
||||
meta: {
|
||||
isSuperAdmin: true,
|
||||
},
|
||||
children: [
|
||||
{
|
||||
path: '',
|
||||
redirect: 'mail-configuration',
|
||||
},
|
||||
{
|
||||
path: 'mail-configuration',
|
||||
name: 'admin.settings.mail',
|
||||
meta: {
|
||||
isSuperAdmin: true,
|
||||
},
|
||||
component: AdminMailConfigView,
|
||||
},
|
||||
{
|
||||
path: 'pdf-generation',
|
||||
name: 'admin.settings.pdf',
|
||||
meta: {
|
||||
isSuperAdmin: true,
|
||||
},
|
||||
component: AdminPdfGenerationView,
|
||||
},
|
||||
{
|
||||
path: 'backup',
|
||||
name: 'admin.settings.backup',
|
||||
meta: {
|
||||
isSuperAdmin: true,
|
||||
},
|
||||
component: AdminBackupView,
|
||||
},
|
||||
{
|
||||
path: 'file-disk',
|
||||
name: 'admin.settings.disk',
|
||||
meta: {
|
||||
isSuperAdmin: true,
|
||||
},
|
||||
component: AdminFileDiskView,
|
||||
},
|
||||
{
|
||||
path: 'fonts',
|
||||
name: 'admin.settings.fonts',
|
||||
meta: {
|
||||
isSuperAdmin: true,
|
||||
},
|
||||
component: AdminFontView,
|
||||
},
|
||||
{
|
||||
path: 'update-app',
|
||||
name: 'admin.settings.update',
|
||||
meta: {
|
||||
isSuperAdmin: true,
|
||||
},
|
||||
component: AdminUpdateAppView,
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
]
|
||||
Reference in New Issue
Block a user