2020-10-24 11:21:41 -05:00
|
|
|
import { defineAsyncComponent, markRaw } from 'vue';
|
2020-10-17 06:12:00 -05:00
|
|
|
import { createRouter, createWebHistory } from 'vue-router';
|
2021-11-11 11:02:25 -06:00
|
|
|
import MkLoading from '@/pages/_loading_.vue';
|
|
|
|
import MkError from '@/pages/_error_.vue';
|
|
|
|
import MkTimeline from '@/pages/timeline.vue';
|
2022-03-04 02:13:10 -06:00
|
|
|
import { $i, iAmModerator } from './account';
|
2021-11-11 11:02:25 -06:00
|
|
|
import { ui } from '@/config';
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2021-08-07 05:19:31 -05:00
|
|
|
const page = (path: string, ui?: string) => defineAsyncComponent({
|
|
|
|
loader: ui ? () => import(`./ui/${ui}/pages/${path}.vue`) : () => import(`./pages/${path}.vue`),
|
2020-10-17 06:12:00 -05:00
|
|
|
loadingComponent: MkLoading,
|
|
|
|
errorComponent: MkError,
|
|
|
|
});
|
2020-02-04 23:39:52 -06:00
|
|
|
|
2020-02-06 07:10:33 -06:00
|
|
|
let indexScrollPos = 0;
|
|
|
|
|
2021-08-07 05:19:31 -05:00
|
|
|
const defaultRoutes = [
|
|
|
|
// NOTE: MkTimelineをdynamic importするとAsyncComponentWrapperが間に入るせいでkeep-aliveのコンポーネント指定が効かなくなる
|
|
|
|
{ path: '/', name: 'index', component: $i ? MkTimeline : page('welcome') },
|
|
|
|
{ path: '/@:acct/:page?', name: 'user', component: page('user/index'), props: route => ({ acct: route.params.acct, page: route.params.page || 'index' }) },
|
|
|
|
{ path: '/@:user/pages/:page', component: page('page'), props: route => ({ pageName: route.params.page, username: route.params.user }) },
|
|
|
|
{ path: '/@:user/pages/:pageName/view-source', component: page('page-editor/page-editor'), props: route => ({ initUser: route.params.user, initPageName: route.params.pageName }) },
|
|
|
|
{ path: '/settings/:page(.*)?', name: 'settings', component: page('settings/index'), props: route => ({ initialPage: route.params.page || null }) },
|
|
|
|
{ path: '/reset-password/:token?', component: page('reset-password'), props: route => ({ token: route.params.token }) },
|
2021-10-07 23:37:02 -05:00
|
|
|
{ path: '/signup-complete/:code', component: page('signup-complete'), props: route => ({ code: route.params.code }) },
|
2021-08-07 05:19:31 -05:00
|
|
|
{ path: '/announcements', component: page('announcements') },
|
|
|
|
{ path: '/about', component: page('about') },
|
|
|
|
{ path: '/about-misskey', component: page('about-misskey') },
|
|
|
|
{ path: '/featured', component: page('featured') },
|
|
|
|
{ path: '/theme-editor', component: page('theme-editor') },
|
|
|
|
{ path: '/advanced-theme-editor', component: page('advanced-theme-editor') },
|
|
|
|
{ path: '/explore', component: page('explore') },
|
|
|
|
{ path: '/explore/tags/:tag', props: true, component: page('explore') },
|
|
|
|
{ path: '/federation', component: page('federation') },
|
|
|
|
{ path: '/emojis', component: page('emojis') },
|
2022-01-12 11:21:43 -06:00
|
|
|
{ path: '/search', component: page('search'), props: route => ({ query: route.query.q, channel: route.query.channel }) },
|
2021-08-07 05:19:31 -05:00
|
|
|
{ path: '/pages', name: 'pages', component: page('pages') },
|
|
|
|
{ path: '/pages/new', component: page('page-editor/page-editor') },
|
|
|
|
{ path: '/pages/edit/:pageId', component: page('page-editor/page-editor'), props: route => ({ initPageId: route.params.pageId }) },
|
|
|
|
{ path: '/gallery', component: page('gallery/index') },
|
|
|
|
{ path: '/gallery/new', component: page('gallery/edit') },
|
|
|
|
{ path: '/gallery/:postId/edit', component: page('gallery/edit'), props: route => ({ postId: route.params.postId }) },
|
|
|
|
{ path: '/gallery/:postId', component: page('gallery/post'), props: route => ({ postId: route.params.postId }) },
|
|
|
|
{ path: '/channels', component: page('channels') },
|
|
|
|
{ path: '/channels/new', component: page('channel-editor') },
|
|
|
|
{ path: '/channels/:channelId/edit', component: page('channel-editor'), props: true },
|
|
|
|
{ path: '/channels/:channelId', component: page('channel'), props: route => ({ channelId: route.params.channelId }) },
|
|
|
|
{ path: '/clips/:clipId', component: page('clip'), props: route => ({ clipId: route.params.clipId }) },
|
2021-09-21 07:04:59 -05:00
|
|
|
{ path: '/timeline/list/:listId', component: page('user-list-timeline'), props: route => ({ listId: route.params.listId }) },
|
|
|
|
{ path: '/timeline/antenna/:antennaId', component: page('antenna-timeline'), props: route => ({ antennaId: route.params.antennaId }) },
|
2021-08-07 05:19:31 -05:00
|
|
|
{ path: '/my/notifications', component: page('notifications') },
|
|
|
|
{ path: '/my/favorites', component: page('favorites') },
|
|
|
|
{ path: '/my/messages', component: page('messages') },
|
|
|
|
{ path: '/my/mentions', component: page('mentions') },
|
|
|
|
{ path: '/my/messaging', name: 'messaging', component: page('messaging/index') },
|
|
|
|
{ path: '/my/messaging/:user', component: page('messaging/messaging-room'), props: route => ({ userAcct: route.params.user }) },
|
|
|
|
{ path: '/my/messaging/group/:group', component: page('messaging/messaging-room'), props: route => ({ groupId: route.params.group }) },
|
|
|
|
{ path: '/my/drive', name: 'drive', component: page('drive') },
|
|
|
|
{ path: '/my/drive/folder/:folder', component: page('drive') },
|
|
|
|
{ path: '/my/follow-requests', component: page('follow-requests') },
|
|
|
|
{ path: '/my/lists', component: page('my-lists/index') },
|
|
|
|
{ path: '/my/lists/:list', component: page('my-lists/list') },
|
|
|
|
{ path: '/my/groups', component: page('my-groups/index') },
|
|
|
|
{ path: '/my/groups/:group', component: page('my-groups/group'), props: route => ({ groupId: route.params.group }) },
|
|
|
|
{ path: '/my/antennas', component: page('my-antennas/index') },
|
|
|
|
{ path: '/my/antennas/create', component: page('my-antennas/create') },
|
|
|
|
{ path: '/my/antennas/:antennaId', component: page('my-antennas/edit'), props: true },
|
|
|
|
{ path: '/my/clips', component: page('my-clips/index') },
|
|
|
|
{ path: '/scratchpad', component: page('scratchpad') },
|
2022-03-04 02:13:10 -06:00
|
|
|
{ path: '/admin/:page(.*)?', component: iAmModerator ? page('admin/index') : page('not-found'), props: route => ({ initialPage: route.params.page || null }) },
|
|
|
|
{ path: '/admin', component: iAmModerator ? page('admin/index') : page('not-found') },
|
2021-08-07 05:19:31 -05:00
|
|
|
{ path: '/notes/:note', name: 'note', component: page('note'), props: route => ({ noteId: route.params.note }) },
|
|
|
|
{ path: '/tags/:tag', component: page('tag'), props: route => ({ tag: route.params.tag }) },
|
|
|
|
{ path: '/user-info/:user', component: page('user-info'), props: route => ({ userId: route.params.user }) },
|
|
|
|
{ path: '/instance-info/:host', component: page('instance-info'), props: route => ({ host: route.params.host }) },
|
|
|
|
{ path: '/mfm-cheat-sheet', component: page('mfm-cheat-sheet') },
|
|
|
|
{ path: '/api-console', component: page('api-console') },
|
|
|
|
{ path: '/preview', component: page('preview') },
|
|
|
|
{ path: '/test', component: page('test') },
|
|
|
|
{ path: '/auth/:token', component: page('auth') },
|
|
|
|
{ path: '/miauth/:session', component: page('miauth') },
|
|
|
|
{ path: '/authorize-follow', component: page('follow') },
|
|
|
|
{ path: '/share', component: page('share') },
|
|
|
|
{ path: '/:catchAll(.*)', component: page('not-found') }
|
|
|
|
];
|
|
|
|
|
|
|
|
const chatRoutes = [
|
|
|
|
{ path: '/timeline', component: page('timeline', 'chat'), props: route => ({ src: 'home' }) },
|
|
|
|
{ path: '/timeline/home', component: page('timeline', 'chat'), props: route => ({ src: 'home' }) },
|
|
|
|
{ path: '/timeline/local', component: page('timeline', 'chat'), props: route => ({ src: 'local' }) },
|
|
|
|
{ path: '/timeline/social', component: page('timeline', 'chat'), props: route => ({ src: 'social' }) },
|
|
|
|
{ path: '/timeline/global', component: page('timeline', 'chat'), props: route => ({ src: 'global' }) },
|
|
|
|
{ path: '/channels/:channelId', component: page('channel', 'chat'), props: route => ({ channelId: route.params.channelId }) },
|
|
|
|
];
|
|
|
|
|
|
|
|
function margeRoutes(routes: any[]) {
|
|
|
|
const result = defaultRoutes;
|
|
|
|
for (const route of routes) {
|
|
|
|
const found = result.findIndex(x => x.path === route.path);
|
|
|
|
if (found > -1) {
|
|
|
|
result[found] = route;
|
|
|
|
} else {
|
|
|
|
result.unshift(route);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
export const router = createRouter({
|
|
|
|
history: createWebHistory(),
|
2021-08-07 05:19:31 -05:00
|
|
|
routes: margeRoutes(ui === 'chat' ? chatRoutes : []),
|
2020-01-31 19:03:16 -06:00
|
|
|
// なんかHacky
|
|
|
|
// 通常の使い方をすると scroll メソッドの behavior を設定できないため、自前で window.scroll するようにする
|
2020-02-06 07:10:33 -06:00
|
|
|
scrollBehavior(to) {
|
2020-02-06 03:25:25 -06:00
|
|
|
window._scroll = () => { // さらにHacky
|
2020-02-06 07:10:33 -06:00
|
|
|
if (to.name === 'index') {
|
|
|
|
window.scroll({ top: indexScrollPos, behavior: 'instant' });
|
2022-01-15 19:14:14 -06:00
|
|
|
const i = window.setInterval(() => {
|
2020-02-11 14:21:08 -06:00
|
|
|
window.scroll({ top: indexScrollPos, behavior: 'instant' });
|
|
|
|
}, 10);
|
2022-01-15 19:14:14 -06:00
|
|
|
window.setTimeout(() => {
|
|
|
|
window.clearInterval(i);
|
2020-02-11 14:21:08 -06:00
|
|
|
}, 500);
|
2020-01-31 18:59:55 -06:00
|
|
|
} else {
|
|
|
|
window.scroll({ top: 0, behavior: 'instant' });
|
|
|
|
}
|
2020-02-06 03:25:25 -06:00
|
|
|
};
|
2020-01-31 18:16:18 -06:00
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
});
|
2020-02-06 07:10:33 -06:00
|
|
|
|
|
|
|
router.afterEach((to, from) => {
|
|
|
|
if (from.name === 'index') {
|
|
|
|
indexScrollPos = window.scrollY;
|
|
|
|
}
|
|
|
|
});
|
2020-10-24 11:21:41 -05:00
|
|
|
|
|
|
|
export function resolve(path: string) {
|
|
|
|
const resolved = router.resolve(path);
|
|
|
|
const route = resolved.matched[0];
|
|
|
|
return {
|
|
|
|
component: markRaw(route.components.default),
|
|
|
|
// TODO: route.propsには関数以外も入る可能性があるのでよしなにハンドリングする
|
|
|
|
props: route.props?.default ? route.props.default(resolved) : resolved.params
|
|
|
|
};
|
|
|
|
}
|