229 lines
7.6 KiB
JavaScript
229 lines
7.6 KiB
JavaScript
import About from 'components/about/about.vue'
|
|
import AnnouncementsPage from 'components/announcements_page/announcements_page.vue'
|
|
import AuthForm from 'components/auth_form/auth_form.js'
|
|
import BookmarkTimeline from 'components/bookmark_timeline/bookmark_timeline.vue'
|
|
import BubbleTimeline from 'components/bubble_timeline/bubble_timeline.vue'
|
|
import Chat from 'components/chat/chat.vue'
|
|
import ChatList from 'components/chat_list/chat_list.vue'
|
|
import ConversationPage from 'components/conversation-page/conversation-page.vue'
|
|
import DMs from 'components/dm_timeline/dm_timeline.vue'
|
|
import Drafts from 'components/drafts/drafts.vue'
|
|
import FollowRequests from 'components/follow_requests/follow_requests.vue'
|
|
import FriendsTimeline from 'components/friends_timeline/friends_timeline.vue'
|
|
import Interactions from 'components/interactions/interactions.vue'
|
|
import Lists from 'components/lists/lists.vue'
|
|
import ListsEdit from 'components/lists_edit/lists_edit.vue'
|
|
import ListsTimeline from 'components/lists_timeline/lists_timeline.vue'
|
|
import Notifications from 'components/notifications/notifications.vue'
|
|
import OAuthCallback from 'components/oauth_callback/oauth_callback.vue'
|
|
import PasswordReset from 'components/password_reset/password_reset.vue'
|
|
import PublicAndExternalTimeline from 'components/public_and_external_timeline/public_and_external_timeline.vue'
|
|
import PublicTimeline from 'components/public_timeline/public_timeline.vue'
|
|
import Registration from 'components/registration/registration.vue'
|
|
import RemoteUserResolver from 'components/remote_user_resolver/remote_user_resolver.vue'
|
|
import Search from 'components/search/search.vue'
|
|
import ShoutPanel from 'components/shout_panel/shout_panel.vue'
|
|
import TagTimeline from 'components/tag_timeline/tag_timeline.vue'
|
|
import UserProfile from 'components/user_profile/user_profile.vue'
|
|
import WhoToFollow from 'components/who_to_follow/who_to_follow.vue'
|
|
|
|
import NavPanel from 'src/components/nav_panel/nav_panel.vue'
|
|
import BookmarkFolderEdit from '../components/bookmark_folder_edit/bookmark_folder_edit.vue'
|
|
import BookmarkFolders from '../components/bookmark_folders/bookmark_folders.vue'
|
|
import QuotesTimeline from '../components/quotes_timeline/quotes_timeline.vue'
|
|
|
|
import { useInstanceStore } from 'src/stores/instance.js'
|
|
import { useInstanceCapabilitiesStore } from 'src/stores/instance_capabilities.js'
|
|
|
|
export default (store) => {
|
|
const validateAuthenticatedRoute = (to, from, next) => {
|
|
if (store.state.users.currentUser) {
|
|
next()
|
|
} else {
|
|
next(
|
|
useInstanceStore().instanceIdentity.redirectRootNoLogin || '/main/all',
|
|
)
|
|
}
|
|
}
|
|
|
|
let routes = [
|
|
{
|
|
name: 'root',
|
|
path: '/',
|
|
redirect: () => {
|
|
return (
|
|
(store.state.users.currentUser
|
|
? useInstanceStore().instanceIdentity.redirectRootLogin
|
|
: useInstanceStore().instanceIdentity.redirectRootNoLogin) ||
|
|
'/main/all'
|
|
)
|
|
},
|
|
},
|
|
{
|
|
name: 'public-external-timeline',
|
|
path: '/main/all',
|
|
component: PublicAndExternalTimeline,
|
|
},
|
|
{
|
|
name: 'public-timeline',
|
|
path: '/main/public',
|
|
component: PublicTimeline,
|
|
},
|
|
{
|
|
name: 'friends',
|
|
path: '/main/friends',
|
|
component: FriendsTimeline,
|
|
beforeEnter: validateAuthenticatedRoute,
|
|
},
|
|
{ name: 'tag-timeline', path: '/tag/:tag', component: TagTimeline },
|
|
{ name: 'bookmarks', path: '/bookmarks', component: BookmarkTimeline },
|
|
{ name: 'bubble', path: '/bubble', component: BubbleTimeline },
|
|
{
|
|
name: 'conversation',
|
|
path: '/notice/:id',
|
|
component: ConversationPage,
|
|
meta: { dontScroll: true },
|
|
},
|
|
{ name: 'quotes', path: '/notice/:id/quotes', component: QuotesTimeline },
|
|
{
|
|
name: 'remote-user-profile-acct',
|
|
path: '/remote-users/:_(@)?:username([^/@]+)@:hostname([^/@]+)',
|
|
component: RemoteUserResolver,
|
|
beforeEnter: validateAuthenticatedRoute,
|
|
},
|
|
{
|
|
name: 'remote-user-profile',
|
|
path: '/remote-users/:hostname/:username',
|
|
component: RemoteUserResolver,
|
|
beforeEnter: validateAuthenticatedRoute,
|
|
},
|
|
{
|
|
name: 'external-user-profile',
|
|
path: '/users/$:id',
|
|
component: UserProfile,
|
|
},
|
|
{
|
|
name: 'interactions',
|
|
path: '/users/:username/interactions',
|
|
component: Interactions,
|
|
beforeEnter: validateAuthenticatedRoute,
|
|
},
|
|
{
|
|
name: 'dms',
|
|
path: '/users/:username/dms',
|
|
component: DMs,
|
|
beforeEnter: validateAuthenticatedRoute,
|
|
},
|
|
{ name: 'registration', path: '/registration', component: Registration },
|
|
{
|
|
name: 'password-reset',
|
|
path: '/password-reset',
|
|
component: PasswordReset,
|
|
props: true,
|
|
},
|
|
{
|
|
name: 'registration-token',
|
|
path: '/registration/:token',
|
|
component: Registration,
|
|
},
|
|
{
|
|
name: 'friend-requests',
|
|
path: '/friend-requests',
|
|
component: FollowRequests,
|
|
beforeEnter: validateAuthenticatedRoute,
|
|
},
|
|
{
|
|
name: 'notifications',
|
|
path: '/:username/notifications',
|
|
component: Notifications,
|
|
props: () => ({ disableTeleport: true }),
|
|
beforeEnter: validateAuthenticatedRoute,
|
|
},
|
|
{ name: 'login', path: '/login', component: AuthForm },
|
|
{
|
|
name: 'shout-panel',
|
|
path: '/shout-panel',
|
|
component: ShoutPanel,
|
|
props: () => ({ floating: false }),
|
|
},
|
|
{
|
|
name: 'oauth-callback',
|
|
path: '/oauth-callback',
|
|
component: OAuthCallback,
|
|
props: (route) => ({ code: route.query.code }),
|
|
},
|
|
{
|
|
name: 'search',
|
|
path: '/search',
|
|
component: Search,
|
|
props: (route) => ({ query: route.query.query }),
|
|
},
|
|
{
|
|
name: 'who-to-follow',
|
|
path: '/who-to-follow',
|
|
component: WhoToFollow,
|
|
beforeEnter: validateAuthenticatedRoute,
|
|
},
|
|
{ name: 'about', path: '/about', component: About },
|
|
{
|
|
name: 'announcements',
|
|
path: '/announcements',
|
|
component: AnnouncementsPage,
|
|
},
|
|
{ name: 'drafts', path: '/drafts', component: Drafts },
|
|
{ name: 'user-profile', path: '/users/:name', component: UserProfile },
|
|
{ name: 'legacy-user-profile', path: '/:name', component: UserProfile },
|
|
{ name: 'lists', path: '/lists', component: Lists },
|
|
{ name: 'lists-timeline', path: '/lists/:id', component: ListsTimeline },
|
|
{ name: 'lists-edit', path: '/lists/:id/edit', component: ListsEdit },
|
|
{ name: 'lists-new', path: '/lists/new', component: ListsEdit },
|
|
{
|
|
name: 'edit-navigation',
|
|
path: '/nav-edit',
|
|
component: NavPanel,
|
|
props: () => ({ forceExpand: true, forceEditMode: true }),
|
|
beforeEnter: validateAuthenticatedRoute,
|
|
},
|
|
{
|
|
name: 'bookmark-folders',
|
|
path: '/bookmark_folders',
|
|
component: BookmarkFolders,
|
|
},
|
|
{
|
|
name: 'bookmark-folder-new',
|
|
path: '/bookmarks/new-folder',
|
|
component: BookmarkFolderEdit,
|
|
},
|
|
{
|
|
name: 'bookmark-folder',
|
|
path: '/bookmarks/:id',
|
|
component: BookmarkTimeline,
|
|
},
|
|
{
|
|
name: 'bookmark-folder-edit',
|
|
path: '/bookmarks/:id/edit',
|
|
component: BookmarkFolderEdit,
|
|
},
|
|
]
|
|
|
|
if (useInstanceCapabilitiesStore().pleromaChatMessagesAvailable) {
|
|
routes = routes.concat([
|
|
{
|
|
name: 'chat',
|
|
path: '/users/:username/chats/:recipient_id',
|
|
component: Chat,
|
|
meta: { dontScroll: false },
|
|
beforeEnter: validateAuthenticatedRoute,
|
|
},
|
|
{
|
|
name: 'chats',
|
|
path: '/users/:username/chats',
|
|
component: ChatList,
|
|
meta: { dontScroll: false },
|
|
beforeEnter: validateAuthenticatedRoute,
|
|
},
|
|
])
|
|
}
|
|
|
|
return routes
|
|
}
|