2020-10-24 18:21:41 +02:00
|
|
|
import { defineAsyncComponent, markRaw } from 'vue';
|
2020-10-17 13:12:00 +02:00
|
|
|
import { createRouter, createWebHistory } from 'vue-router';
|
|
|
|
import MkLoading from '@/pages/_loading_.vue';
|
|
|
|
import MkError from '@/pages/_error_.vue';
|
|
|
|
import MkTimeline from '@/pages/timeline.vue';
|
|
|
|
import { store } from './store';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
const page = (path: string) => defineAsyncComponent({
|
|
|
|
loader: () => import(`./pages/${path}.vue`),
|
|
|
|
loadingComponent: MkLoading,
|
|
|
|
errorComponent: MkError,
|
|
|
|
});
|
2020-02-05 06:39:52 +01:00
|
|
|
|
2020-02-06 14:10:33 +01:00
|
|
|
let indexScrollPos = 0;
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
export const router = createRouter({
|
|
|
|
history: createWebHistory(),
|
2020-01-29 20:37:25 +01:00
|
|
|
routes: [
|
2020-10-17 13:12:00 +02:00
|
|
|
// NOTE: MkTimelineをdynamic importするとAsyncComponentWrapperが間に入るせいでkeep-aliveのコンポーネント指定が効かなくなる
|
|
|
|
{ path: '/', name: 'index', component: store.getters.isSignedIn ? MkTimeline : page('welcome') },
|
2020-10-24 18:21:41 +02:00
|
|
|
{ path: '/@:acct/:page?', name: 'user', component: page('user/index'), props: route => ({ acct: route.params.acct, page: route.params.page || 'index' }) },
|
2020-02-05 06:39:52 +01:00
|
|
|
{ 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 }) },
|
2020-05-09 08:47:20 +02:00
|
|
|
{ path: '/@:acct/room', props: true, component: page('room/room') },
|
2020-10-24 18:21:41 +02:00
|
|
|
{ path: '/settings/:page?', name: 'settings', component: page('settings/index'), props: route => ({ page: route.params.page || null }) },
|
2020-02-05 06:39:52 +01:00
|
|
|
{ path: '/announcements', component: page('announcements') },
|
|
|
|
{ path: '/about', component: page('about') },
|
2020-02-12 18:48:52 +01:00
|
|
|
{ path: '/about-misskey', component: page('about-misskey') },
|
2020-02-05 06:39:52 +01:00
|
|
|
{ path: '/featured', component: page('featured') },
|
2020-02-07 11:15:08 +01:00
|
|
|
{ path: '/docs', component: page('docs') },
|
2020-07-11 05:12:35 +02:00
|
|
|
{ path: '/theme-editor', component: page('theme-editor') },
|
2020-02-06 18:38:02 +01:00
|
|
|
{ path: '/docs/:doc', component: page('doc'), props: true },
|
2020-02-05 06:39:52 +01:00
|
|
|
{ path: '/explore', component: page('explore') },
|
|
|
|
{ path: '/explore/tags/:tag', props: true, component: page('explore') },
|
|
|
|
{ path: '/search', component: page('search') },
|
2020-08-18 15:44:21 +02:00
|
|
|
{ path: '/channels', component: page('channels') },
|
|
|
|
{ path: '/channels/new', component: page('channel-editor') },
|
|
|
|
{ path: '/channels/:channelId/edit', component: page('channel-editor'), props: true },
|
2020-11-08 08:37:51 +01:00
|
|
|
{ path: '/channels/:channelId', component: page('channel'), props: route => ({ channelId: route.params.channelId }) },
|
2020-02-18 22:16:49 +01:00
|
|
|
{ path: '/my/notifications', component: page('notifications') },
|
2020-02-05 06:39:52 +01:00
|
|
|
{ path: '/my/favorites', component: page('favorites') },
|
|
|
|
{ path: '/my/messages', component: page('messages') },
|
|
|
|
{ path: '/my/mentions', component: page('mentions') },
|
2020-03-22 06:38:33 +01:00
|
|
|
{ path: '/my/messaging', name: 'messaging', component: page('messaging/index') },
|
2020-10-17 13:12:00 +02:00
|
|
|
{ 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 }) },
|
2020-02-05 06:39:52 +01:00
|
|
|
{ path: '/my/drive', name: 'drive', component: page('drive') },
|
|
|
|
{ path: '/my/drive/folder/:folder', component: page('drive') },
|
|
|
|
{ path: '/my/pages', name: 'pages', component: page('pages') },
|
|
|
|
{ path: '/my/pages/new', component: page('page-editor/page-editor') },
|
|
|
|
{ path: '/my/pages/edit/:pageId', component: page('page-editor/page-editor'), props: route => ({ initPageId: route.params.pageId }) },
|
|
|
|
{ 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') },
|
2020-02-08 07:11:12 +01:00
|
|
|
{ path: '/my/groups', component: page('my-groups/index') },
|
|
|
|
{ path: '/my/groups/:group', component: page('my-groups/group') },
|
2020-02-05 06:39:52 +01:00
|
|
|
{ path: '/my/antennas', component: page('my-antennas/index') },
|
2020-03-28 11:33:11 +01:00
|
|
|
{ path: '/my/apps', component: page('apps') },
|
2020-04-11 15:44:32 +02:00
|
|
|
{ path: '/scratchpad', component: page('scratchpad') },
|
2020-02-05 06:39:52 +01:00
|
|
|
{ path: '/instance', component: page('instance/index') },
|
|
|
|
{ path: '/instance/emojis', component: page('instance/emojis') },
|
|
|
|
{ path: '/instance/users', component: page('instance/users') },
|
2020-10-17 13:12:00 +02:00
|
|
|
{ path: '/instance/logs', component: page('instance/logs') },
|
2020-02-05 06:39:52 +01:00
|
|
|
{ path: '/instance/files', component: page('instance/files') },
|
|
|
|
{ path: '/instance/queue', component: page('instance/queue') },
|
2020-02-16 18:21:27 +01:00
|
|
|
{ path: '/instance/settings', component: page('instance/settings') },
|
2020-02-05 06:39:52 +01:00
|
|
|
{ path: '/instance/federation', component: page('instance/federation') },
|
2020-05-10 11:42:31 +02:00
|
|
|
{ path: '/instance/relays', component: page('instance/relays') },
|
2020-02-05 06:39:52 +01:00
|
|
|
{ path: '/instance/announcements', component: page('instance/announcements') },
|
2020-10-19 12:29:04 +02:00
|
|
|
{ path: '/instance/abuses', component: page('instance/abuses') },
|
2020-10-24 18:21:41 +02: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 }) },
|
2020-10-27 10:11:41 +01:00
|
|
|
{ path: '/games/reversi', component: page('reversi/index') },
|
|
|
|
{ path: '/games/reversi/:gameId', component: page('reversi/game'), props: route => ({ gameId: route.params.gameId }) },
|
2020-11-08 07:24:46 +01:00
|
|
|
{ path: '/mfm-cheat-sheet', component: page('mfm-cheat-sheet') },
|
|
|
|
{ path: '/test', component: page('test') },
|
2020-02-05 06:39:52 +01:00
|
|
|
{ path: '/auth/:token', component: page('auth') },
|
2020-03-28 03:24:37 +01:00
|
|
|
{ path: '/miauth/:session', component: page('miauth') },
|
2020-02-05 06:39:52 +01:00
|
|
|
{ path: '/authorize-follow', component: page('follow') },
|
2020-02-06 15:12:27 +01:00
|
|
|
{ path: '/share', component: page('share') },
|
2020-10-17 13:12:00 +02:00
|
|
|
{ path: '/test', component: page('test') },
|
|
|
|
{ path: '/:catchAll(.*)', component: page('not-found') }
|
2020-02-01 01:12:04 +01:00
|
|
|
],
|
2020-02-01 02:03:16 +01:00
|
|
|
// なんかHacky
|
|
|
|
// 通常の使い方をすると scroll メソッドの behavior を設定できないため、自前で window.scroll するようにする
|
2020-02-06 14:10:33 +01:00
|
|
|
scrollBehavior(to) {
|
2020-02-06 10:25:25 +01:00
|
|
|
window._scroll = () => { // さらにHacky
|
2020-02-06 14:10:33 +01:00
|
|
|
if (to.name === 'index') {
|
|
|
|
window.scroll({ top: indexScrollPos, behavior: 'instant' });
|
2020-02-11 21:21:08 +01:00
|
|
|
const i = setInterval(() => {
|
|
|
|
window.scroll({ top: indexScrollPos, behavior: 'instant' });
|
|
|
|
}, 10);
|
|
|
|
setTimeout(() => {
|
|
|
|
clearInterval(i);
|
|
|
|
}, 500);
|
2020-02-01 01:59:55 +01:00
|
|
|
} else {
|
|
|
|
window.scroll({ top: 0, behavior: 'instant' });
|
|
|
|
}
|
2020-02-06 10:25:25 +01:00
|
|
|
};
|
2020-02-01 01:16:18 +01:00
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
});
|
2020-02-06 14:10:33 +01:00
|
|
|
|
|
|
|
router.afterEach((to, from) => {
|
|
|
|
if (from.name === 'index') {
|
|
|
|
indexScrollPos = window.scrollY;
|
|
|
|
}
|
|
|
|
});
|
2020-10-24 18:21:41 +02: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
|
|
|
|
};
|
|
|
|
}
|