yumechi-no-kuni/src/client/app/mobile/script.ts

102 lines
3.2 KiB
TypeScript
Raw Normal View History

2016-12-28 16:49:51 -06:00
/**
* Mobile Client
*/
2018-05-19 06:31:13 -05:00
import Vue from 'vue';
2018-03-27 00:13:12 -05:00
import VueRouter from 'vue-router';
import { MdCard, MdButton, MdField, MdMenu, MdList, MdSwitch, MdSubheader, MdDialog, MdDialogAlert, MdRadio } from 'vue-material/dist/components';
2018-05-19 06:31:13 -05:00
import 'vue-material/dist/vue-material.min.css';
import 'vue-material/dist/theme/default.css';
2017-02-18 21:31:23 -06:00
// Style
2017-02-19 00:36:53 -06:00
import './style.styl';
2018-03-07 03:55:02 -06:00
import '../../element.scss';
2018-05-19 06:31:13 -05:00
import '../../md.scss';
2017-02-18 21:31:23 -06:00
2017-05-17 15:06:55 -05:00
import init from '../init';
2016-12-28 16:49:51 -06:00
2018-02-21 11:00:30 -06: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';
import post from './api/post';
import notify from './api/notify';
import MkIndex from './views/pages/index.vue';
2018-02-21 14:16:38 -06:00
import MkSignup from './views/pages/signup.vue';
2018-02-21 12:11:24 -06:00
import MkUser from './views/pages/user.vue';
2018-02-21 11:00:30 -06:00
import MkSelectDrive from './views/pages/selectdrive.vue';
import MkDrive from './views/pages/drive.vue';
2018-02-22 02:57:14 -06:00
import MkNotifications from './views/pages/notifications.vue';
import MkWidgets from './views/pages/widgets.vue';
2018-02-22 03:06:32 -06:00
import MkMessaging from './views/pages/messaging.vue';
import MkMessagingRoom from './views/pages/messaging-room.vue';
2018-04-07 12:30:37 -05:00
import MkNote from './views/pages/note.vue';
2018-02-22 06:39:36 -06:00
import MkSearch from './views/pages/search.vue';
import MkFollowers from './views/pages/followers.vue';
import MkFollowing from './views/pages/following.vue';
2018-02-22 07:38:14 -06:00
import MkSettings from './views/pages/settings.vue';
2018-03-07 03:55:02 -06:00
import MkOthello from './views/pages/othello.vue';
2018-02-21 11:00:30 -06:00
2018-05-19 06:31:13 -05:00
Vue.use(MdCard);
Vue.use(MdButton);
Vue.use(MdField);
Vue.use(MdMenu);
Vue.use(MdList);
Vue.use(MdSwitch);
2018-05-19 19:04:48 -05:00
Vue.use(MdSubheader);
2018-05-20 00:01:47 -05:00
Vue.use(MdDialog);
Vue.use(MdDialogAlert);
Vue.use(MdRadio);
2018-05-19 06:31:13 -05:00
2016-12-28 16:49:51 -06:00
/**
2017-05-17 15:06:55 -05:00
* init
2016-12-28 16:49:51 -06:00
*/
2018-02-10 21:08:43 -06:00
init((launch) => {
2018-02-16 11:24:10 -06:00
// Register directives
require('./views/directives');
2018-02-21 11:00:30 -06:00
// Register components
require('./views/components');
2018-02-24 09:18:09 -06:00
require('./views/widgets');
2018-02-21 11:00:30 -06:00
2017-02-16 23:03:17 -06:00
// http://qiita.com/junya/items/3ff380878f26ca447f85
document.body.setAttribute('ontouchstart', '');
2018-03-27 00:13:12 -05:00
// Init router
const router = new VueRouter({
mode: 'history',
routes: [
{ path: '/', name: 'index', component: MkIndex },
{ path: '/signup', name: 'signup', component: MkSignup },
2018-05-21 21:31:06 -05:00
{ path: '/i/settings', name: 'settings', component: MkSettings },
{ path: '/i/notifications', name: 'notifications', component: MkNotifications },
{ path: '/i/widgets', name: 'widgets', component: MkWidgets },
{ path: '/i/messaging', name: 'messaging', component: MkMessaging },
2018-03-27 02:51:12 -05:00
{ path: '/i/messaging/:user', component: MkMessagingRoom },
{ path: '/i/drive', name: 'drive', component: MkDrive },
2018-03-27 00:13:12 -05:00
{ path: '/i/drive/folder/:folder', component: MkDrive },
{ path: '/i/drive/file/:file', component: MkDrive },
{ path: '/selectdrive', component: MkSelectDrive },
{ path: '/search', component: MkSearch },
{ path: '/othello', name: 'othello', component: MkOthello },
2018-03-27 00:13:12 -05:00
{ path: '/othello/:game', component: MkOthello },
{ path: '/@:user', component: MkUser },
{ path: '/@:user/followers', component: MkFollowers },
{ path: '/@:user/following', component: MkFollowing },
2018-04-09 05:23:52 -05:00
{ path: '/notes/:note', component: MkNote }
2018-03-27 00:13:12 -05:00
]
});
2018-02-21 11:00:30 -06:00
// Launch the app
2018-03-27 00:13:12 -05:00
launch(router, os => ({
2018-02-21 11:00:30 -06:00
chooseDriveFolder,
chooseDriveFile,
dialog,
input,
2018-02-21 11:22:10 -06:00
post: post(os),
2018-02-21 11:15:46 -06:00
notify
2018-02-21 11:00:30 -06:00
}));
2017-11-20 19:01:00 -06:00
}, true);