You've already forked AstralRinth
forked from didirus/AstralRinth
* Initial bug fixes * fix compile error on non-mac * Fix even more bugs * Fix more * fix more * fix build * fix build * address review comments
145 lines
3.5 KiB
JavaScript
145 lines
3.5 KiB
JavaScript
import { createRouter, createWebHistory } from 'vue-router'
|
|
import * as Pages from '@/pages'
|
|
import * as Project from '@/pages/project'
|
|
import * as Instance from '@/pages/instance'
|
|
|
|
/**
|
|
* Configures application routing. Add page to pages/index and then add to route table here.
|
|
*/
|
|
export default new createRouter({
|
|
history: createWebHistory(),
|
|
routes: [
|
|
{
|
|
path: '/',
|
|
name: 'Home',
|
|
component: Pages.Index,
|
|
meta: {
|
|
breadcrumb: [{ name: 'Home' }],
|
|
},
|
|
},
|
|
{
|
|
path: '/browse/:projectType',
|
|
name: 'Browse',
|
|
component: Pages.Browse,
|
|
meta: {
|
|
breadcrumb: [{ name: 'Browse' }],
|
|
},
|
|
},
|
|
{
|
|
path: '/library',
|
|
name: 'Library',
|
|
component: Pages.Library,
|
|
meta: {
|
|
breadcrumb: [{ name: 'Library' }],
|
|
},
|
|
},
|
|
{
|
|
path: '/settings',
|
|
name: 'Settings',
|
|
component: Pages.Settings,
|
|
meta: {
|
|
breadcrumb: [{ name: 'Settings' }],
|
|
},
|
|
},
|
|
{
|
|
path: '/project/:id',
|
|
name: 'Project',
|
|
component: Project.Index,
|
|
props: true,
|
|
children: [
|
|
{
|
|
path: '',
|
|
name: 'Description',
|
|
component: Project.Description,
|
|
meta: {
|
|
useContext: true,
|
|
breadcrumb: [{ name: '?Project' }],
|
|
},
|
|
},
|
|
{
|
|
path: 'versions',
|
|
name: 'Versions',
|
|
component: Project.Versions,
|
|
meta: {
|
|
useContext: true,
|
|
breadcrumb: [{ name: '?Project', link: '/project/{id}/' }, { name: 'Versions' }],
|
|
},
|
|
},
|
|
{
|
|
path: 'version/:version',
|
|
name: 'Version',
|
|
component: Project.Version,
|
|
props: true,
|
|
meta: {
|
|
useContext: true,
|
|
breadcrumb: [
|
|
{ name: '?Project', link: '/project/{id}/' },
|
|
{ name: 'Versions', link: '/project/{id}/versions' },
|
|
{ name: '?Version' },
|
|
],
|
|
},
|
|
},
|
|
{
|
|
path: 'gallery',
|
|
name: 'Gallery',
|
|
component: Project.Gallery,
|
|
meta: {
|
|
useContext: true,
|
|
breadcrumb: [{ name: '?Project', link: '/project/{id}/' }, { name: 'Gallery' }],
|
|
},
|
|
},
|
|
],
|
|
},
|
|
{
|
|
path: '/instance/:id',
|
|
name: 'Instance',
|
|
component: Instance.Index,
|
|
props: true,
|
|
children: [
|
|
{
|
|
path: '',
|
|
name: 'Mods',
|
|
component: Instance.Mods,
|
|
meta: {
|
|
useRootContext: true,
|
|
breadcrumb: [{ name: '?Instance' }],
|
|
},
|
|
},
|
|
{
|
|
path: 'projects/:type',
|
|
name: 'ModsFilter',
|
|
component: Instance.Mods,
|
|
meta: {
|
|
useRootContext: true,
|
|
breadcrumb: [{ name: '?Instance' }],
|
|
},
|
|
},
|
|
{
|
|
path: 'options',
|
|
name: 'Options',
|
|
component: Instance.Options,
|
|
meta: {
|
|
useRootContext: true,
|
|
breadcrumb: [{ name: '?Instance', link: '/instance/{id}/' }, { name: 'Options' }],
|
|
},
|
|
},
|
|
{
|
|
path: 'logs',
|
|
name: 'Logs',
|
|
component: Instance.Logs,
|
|
meta: {
|
|
useRootContext: true,
|
|
breadcrumb: [{ name: '?Instance', link: '/instance/{id}/' }, { name: 'Logs' }],
|
|
},
|
|
},
|
|
],
|
|
},
|
|
],
|
|
linkActiveClass: 'router-link-active',
|
|
linkExactActiveClass: 'router-link-exact-active',
|
|
scrollBehavior() {
|
|
// always scroll to top
|
|
return { top: 0 }
|
|
},
|
|
})
|