egirlskey/src/client/router.ts

96 lines
4.8 KiB
TypeScript
Raw Normal View History

import Vue from 'vue';
import VueRouter from 'vue-router';
import MkIndex from './pages/index.vue';
Vue.use(VueRouter);
2020-02-05 05:39:52 +00:00
const page = (path: string) => () => import(`./pages/${path}.vue`).then(m => m.default);
2020-02-06 13:10:33 +00:00
let indexScrollPos = 0;
export const router = new VueRouter({
mode: 'history',
routes: [
{ path: '/', name: 'index', component: MkIndex },
2020-02-05 05:39:52 +00:00
{ path: '/@:user', name: 'user', component: page('user/index'), children: [
{ path: 'following', name: 'userFollowing', component: page('user/follow-list'), props: { type: 'following' } },
{ path: 'followers', name: 'userFollowers', component: page('user/follow-list'), props: { type: 'followers' } },
]},
2020-02-05 05:39:52 +00: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 }) },
{ path: '/@:acct/room', props: true, component: page('room/room') },
2020-02-05 05:39:52 +00:00
{ path: '/announcements', component: page('announcements') },
{ path: '/about', component: page('about') },
{ path: '/about-misskey', component: page('about-misskey') },
2020-02-05 05:39:52 +00:00
{ path: '/featured', component: page('featured') },
2020-02-07 10:15:08 +00:00
{ path: '/docs', component: page('docs') },
{ path: '/theme-editor', component: page('theme-editor') },
2020-02-06 17:38:02 +00:00
{ path: '/docs/:doc', component: page('doc'), props: true },
2020-02-05 05:39:52 +00:00
{ path: '/explore', component: page('explore') },
{ path: '/explore/tags/:tag', props: true, component: page('explore') },
{ path: '/search', component: page('search') },
2020-02-18 21:16:49 +00:00
{ path: '/my/notifications', component: page('notifications') },
2020-02-05 05:39:52 +00:00
{ path: '/my/favorites', component: page('favorites') },
{ path: '/my/messages', component: page('messages') },
{ path: '/my/mentions', component: page('mentions') },
2020-03-22 05:38:33 +00:00
{ path: '/my/messaging', name: 'messaging', component: page('messaging/index') },
{ path: '/my/messaging/:user', component: page('messaging/messaging-room') },
{ path: '/my/messaging/group/:group', component: page('messaging/messaging-room') },
2020-02-05 05:39:52 +00: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/settings', component: page('my-settings/index') },
2020-02-05 05:39:52 +00:00
{ 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 06:11:12 +00:00
{ path: '/my/groups', component: page('my-groups/index') },
{ path: '/my/groups/:group', component: page('my-groups/group') },
2020-02-05 05:39:52 +00:00
{ path: '/my/antennas', component: page('my-antennas/index') },
{ path: '/my/apps', component: page('apps') },
2020-02-19 17:40:53 +00:00
{ path: '/preferences', component: page('preferences/index') },
{ path: '/scratchpad', component: page('scratchpad') },
2020-02-05 05:39:52 +00:00
{ path: '/instance', component: page('instance/index') },
{ path: '/instance/emojis', component: page('instance/emojis') },
{ path: '/instance/users', component: page('instance/users') },
{ path: '/instance/users/:user', component: page('instance/users.user') },
2020-02-05 05:39:52 +00:00
{ path: '/instance/files', component: page('instance/files') },
{ path: '/instance/queue', component: page('instance/queue') },
2020-02-16 17:21:27 +00:00
{ path: '/instance/settings', component: page('instance/settings') },
2020-02-05 05:39:52 +00:00
{ path: '/instance/federation', component: page('instance/federation') },
{ path: '/instance/relays', component: page('instance/relays') },
2020-02-05 05:39:52 +00:00
{ path: '/instance/announcements', component: page('instance/announcements') },
{ path: '/notes/:note', name: 'note', component: page('note') },
{ path: '/tags/:tag', component: page('tag') },
{ path: '/auth/:token', component: page('auth') },
2020-03-28 02:24:37 +00:00
{ path: '/miauth/:session', component: page('miauth') },
2020-02-05 05:39:52 +00:00
{ path: '/authorize-follow', component: page('follow') },
2020-02-06 14:12:27 +00:00
{ path: '/share', component: page('share') },
2020-02-06 14:20:59 +00:00
{ path: '*', component: page('not-found') }
2020-02-01 00:12:04 +00:00
],
2020-02-01 01:03:16 +00:00
// なんかHacky
// 通常の使い方をすると scroll メソッドの behavior を設定できないため、自前で window.scroll するようにする
2020-02-06 13:10:33 +00:00
scrollBehavior(to) {
2020-02-06 09:25:25 +00:00
window._scroll = () => { // さらにHacky
2020-02-06 13:10:33 +00:00
if (to.name === 'index') {
window.scroll({ top: indexScrollPos, behavior: 'instant' });
2020-02-11 20:21:08 +00:00
const i = setInterval(() => {
window.scroll({ top: indexScrollPos, behavior: 'instant' });
}, 10);
setTimeout(() => {
clearInterval(i);
}, 500);
2020-02-01 00:59:55 +00:00
} else {
window.scroll({ top: 0, behavior: 'instant' });
}
2020-02-06 09:25:25 +00:00
};
2020-02-01 00:16:18 +00:00
}
});
2020-02-06 13:10:33 +00:00
router.afterEach((to, from) => {
if (from.name === 'index') {
indexScrollPos = window.scrollY;
}
});