mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-15 17:24:10 +00:00
The module marketplace browser UI (ModuleIndexView, ModuleDetailView,
ModuleCard, the four-step installer store) was filed under
features/company/modules/ only by historical accident — it's authorized via
the manage modules ability (super-admin-only) and conceptually belongs in the
admin context, not the company context.
- Move features/company/modules/{store.ts, views/ModuleIndexView.vue,
views/ModuleDetailView.vue, components/ModuleCard.vue} to
features/admin/modules/.
- Update hardcoded /admin/modules/... paths in the moved files to
/admin/administration/modules/... so the breadcrumbs and ModuleCard
navigation target the new admin-context routes.
- Tighten the four-step installer's silent catch {} blocks in the moved
store.ts: errors were being swallowed, now they dispatch through the
global notification store instead.
- New features/admin/modules/routes.ts declares admin.modules.index +
admin.modules.view as children of /admin/administration with
meta.isSuperAdmin: true.
- features/admin/{index,routes}.ts re-export and mount the relocated routes.
- config/invoiceshelf.php gains a new AdminModules entry in admin_menu
pointing at /admin/administration/modules with super_admin_only: true.
- The dev-gated navigation.modules entry in main_menu is replaced (not
deleted) with a non-gated entry pointing at the new company-context
Active Modules index page that lands in the next commit. The
ability is set to manage modules so non-owners can't see it.
The new company-context Active Modules index, schema-driven settings page,
and dynamic sidebar group are introduced in subsequent commits.
134 lines
3.7 KiB
TypeScript
134 lines
3.7 KiB
TypeScript
import type { RouteRecordRaw } from 'vue-router'
|
|
import { adminModuleRoutes } from './modules/routes'
|
|
|
|
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,
|
|
},
|
|
},
|
|
...adminModuleRoutes,
|
|
{
|
|
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,
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
]
|