2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* Mobile Client
|
|
|
|
*/
|
|
|
|
|
2018-03-27 07:13:12 +02:00
|
|
|
import VueRouter from 'vue-router';
|
|
|
|
|
2017-02-19 04:31:23 +01:00
|
|
|
// Style
|
2017-02-19 07:36:53 +01:00
|
|
|
import './style.styl';
|
2018-03-07 10:55:02 +01:00
|
|
|
import '../../element.scss';
|
2017-02-19 04:31:23 +01:00
|
|
|
|
2017-05-17 22:06:55 +02:00
|
|
|
import init from '../init';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-02-21 18:00:30 +01:00
|
|
|
import chooseDriveFolder from './api/choose-drive-folder';
|
|
|
|
import chooseDriveFile from './api/choose-drive-file';
|
|
|
|
import dialog from './api/dialog';
|
|
|
|
import input from './api/input';
|
2018-09-01 13:47:49 +02:00
|
|
|
import post from './api/post';
|
2018-02-21 18:00:30 +01:00
|
|
|
import notify from './api/notify';
|
|
|
|
|
|
|
|
import MkIndex from './views/pages/index.vue';
|
2018-02-21 21:16:38 +01:00
|
|
|
import MkSignup from './views/pages/signup.vue';
|
2018-02-21 19:11:24 +01:00
|
|
|
import MkUser from './views/pages/user.vue';
|
2018-02-21 18:00:30 +01:00
|
|
|
import MkSelectDrive from './views/pages/selectdrive.vue';
|
|
|
|
import MkDrive from './views/pages/drive.vue';
|
2018-02-22 09:57:14 +01:00
|
|
|
import MkNotifications from './views/pages/notifications.vue';
|
2018-05-17 09:24:01 +02:00
|
|
|
import MkWidgets from './views/pages/widgets.vue';
|
2018-02-22 10:06:32 +01:00
|
|
|
import MkMessaging from './views/pages/messaging.vue';
|
|
|
|
import MkMessagingRoom from './views/pages/messaging-room.vue';
|
2018-06-02 09:13:32 +02:00
|
|
|
import MkReceivedFollowRequests from './views/pages/received-follow-requests.vue';
|
2018-04-07 19:30:37 +02:00
|
|
|
import MkNote from './views/pages/note.vue';
|
2018-02-22 13:39:36 +01:00
|
|
|
import MkSearch from './views/pages/search.vue';
|
|
|
|
import MkFollowers from './views/pages/followers.vue';
|
|
|
|
import MkFollowing from './views/pages/following.vue';
|
2018-05-29 07:42:29 +02:00
|
|
|
import MkFavorites from './views/pages/favorites.vue';
|
2018-05-29 21:45:27 +02:00
|
|
|
import MkUserLists from './views/pages/user-lists.vue';
|
|
|
|
import MkUserList from './views/pages/user-list.vue';
|
2018-02-22 14:38:14 +01:00
|
|
|
import MkSettings from './views/pages/settings.vue';
|
2018-08-03 15:34:58 +02:00
|
|
|
import MkReversi from './views/pages/games/reversi.vue';
|
2018-06-12 12:03:57 +02:00
|
|
|
import MkTag from './views/pages/tag.vue';
|
2018-06-16 11:42:49 +02:00
|
|
|
import MkShare from './views/pages/share.vue';
|
2018-06-24 06:08:48 +02:00
|
|
|
import MkFollow from '../common/views/pages/follow.vue';
|
2018-02-21 18:00:30 +01:00
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
/**
|
2017-05-17 22:06:55 +02:00
|
|
|
* init
|
2016-12-28 23:49:51 +01:00
|
|
|
*/
|
2018-02-11 04:08:43 +01:00
|
|
|
init((launch) => {
|
2018-02-16 18:24:10 +01:00
|
|
|
// Register directives
|
|
|
|
require('./views/directives');
|
|
|
|
|
2018-02-21 18:00:30 +01:00
|
|
|
// Register components
|
|
|
|
require('./views/components');
|
2018-02-24 16:18:09 +01:00
|
|
|
require('./views/widgets');
|
2018-02-21 18:00:30 +01:00
|
|
|
|
2017-02-17 06:03:17 +01:00
|
|
|
// http://qiita.com/junya/items/3ff380878f26ca447f85
|
|
|
|
document.body.setAttribute('ontouchstart', '');
|
|
|
|
|
2018-03-27 07:13:12 +02:00
|
|
|
// Init router
|
|
|
|
const router = new VueRouter({
|
|
|
|
mode: 'history',
|
|
|
|
routes: [
|
|
|
|
{ path: '/', name: 'index', component: MkIndex },
|
|
|
|
{ path: '/signup', name: 'signup', component: MkSignup },
|
2018-05-22 04:31:06 +02:00
|
|
|
{ path: '/i/settings', name: 'settings', component: MkSettings },
|
2018-04-27 19:29:17 +02:00
|
|
|
{ path: '/i/notifications', name: 'notifications', component: MkNotifications },
|
2018-05-29 07:42:29 +02:00
|
|
|
{ path: '/i/favorites', name: 'favorites', component: MkFavorites },
|
2018-05-29 21:45:27 +02:00
|
|
|
{ path: '/i/lists', name: 'user-lists', component: MkUserLists },
|
|
|
|
{ path: '/i/lists/:list', name: 'user-list', component: MkUserList },
|
2018-06-02 09:13:32 +02:00
|
|
|
{ path: '/i/received-follow-requests', name: 'received-follow-requests', component: MkReceivedFollowRequests },
|
2018-05-17 09:24:01 +02:00
|
|
|
{ path: '/i/widgets', name: 'widgets', component: MkWidgets },
|
2018-04-27 19:29:17 +02:00
|
|
|
{ path: '/i/messaging', name: 'messaging', component: MkMessaging },
|
2018-03-27 09:51:12 +02:00
|
|
|
{ path: '/i/messaging/:user', component: MkMessagingRoom },
|
2018-04-27 19:29:17 +02:00
|
|
|
{ path: '/i/drive', name: 'drive', component: MkDrive },
|
2018-03-27 07:13:12 +02:00
|
|
|
{ path: '/i/drive/folder/:folder', component: MkDrive },
|
|
|
|
{ path: '/i/drive/file/:file', component: MkDrive },
|
|
|
|
{ path: '/selectdrive', component: MkSelectDrive },
|
|
|
|
{ path: '/search', component: MkSearch },
|
2018-06-12 12:03:57 +02:00
|
|
|
{ path: '/tags/:tag', component: MkTag },
|
2018-06-16 11:42:49 +02:00
|
|
|
{ path: '/share', component: MkShare },
|
2018-08-03 15:42:53 +02:00
|
|
|
{ path: '/reversi/:game?', name: 'reversi', component: MkReversi },
|
2018-03-27 07:13:12 +02:00
|
|
|
{ path: '/@:user', component: MkUser },
|
|
|
|
{ path: '/@:user/followers', component: MkFollowers },
|
|
|
|
{ path: '/@:user/following', component: MkFollowing },
|
2018-06-24 06:08:48 +02:00
|
|
|
{ path: '/notes/:note', component: MkNote },
|
|
|
|
{ path: '/authorize-follow', component: MkFollow }
|
2018-03-27 07:13:12 +02:00
|
|
|
]
|
|
|
|
});
|
|
|
|
|
2018-02-21 18:00:30 +01:00
|
|
|
// Launch the app
|
2018-03-27 07:13:12 +02:00
|
|
|
launch(router, os => ({
|
2018-02-21 18:00:30 +01:00
|
|
|
chooseDriveFolder,
|
|
|
|
chooseDriveFile,
|
2018-06-20 18:58:47 +02:00
|
|
|
dialog: dialog(os),
|
2018-02-21 18:00:30 +01:00
|
|
|
input,
|
2018-09-01 13:47:49 +02:00
|
|
|
post: post(os),
|
2018-02-21 18:15:46 +01:00
|
|
|
notify
|
2018-02-21 18:00:30 +01:00
|
|
|
}));
|
2017-11-21 02:01:00 +01:00
|
|
|
}, true);
|