Sharkey/src/web/app/mobile/script.ts

63 lines
1.7 KiB
TypeScript
Raw Normal View History

2016-12-29 00:49:51 +02:00
/**
* Mobile Client
*/
2017-02-19 05:31:23 +02:00
// Style
2017-02-19 08:36:53 +02:00
import './style.styl';
2017-02-19 05:31:23 +02:00
2017-05-17 23:06:55 +03:00
import init from '../init';
2016-12-29 00:49:51 +02:00
2018-02-21 19:00:30 +02: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 22:16:38 +02:00
import MkSignup from './views/pages/signup.vue';
2018-02-21 20:11:24 +02:00
import MkUser from './views/pages/user.vue';
2018-02-21 19:00:30 +02:00
import MkSelectDrive from './views/pages/selectdrive.vue';
import MkDrive from './views/pages/drive.vue';
2018-02-22 10:57:14 +02:00
import MkNotifications from './views/pages/notifications.vue';
2018-02-22 11:06:32 +02:00
import MkMessaging from './views/pages/messaging.vue';
import MkMessagingRoom from './views/pages/messaging-room.vue';
2018-02-21 19:00:30 +02:00
2016-12-29 00:49:51 +02:00
/**
2017-05-17 23:06:55 +03:00
* init
2016-12-29 00:49:51 +02:00
*/
2018-02-11 05:08:43 +02:00
init((launch) => {
2018-02-16 19:24:10 +02:00
// Register directives
require('./views/directives');
2018-02-21 19:00:30 +02:00
// Register components
require('./views/components');
2017-02-17 07:03:17 +02:00
// http://qiita.com/junya/items/3ff380878f26ca447f85
document.body.setAttribute('ontouchstart', '');
2018-02-21 19:00:30 +02:00
// Launch the app
2018-02-21 19:15:46 +02:00
const [app] = launch(os => ({
2018-02-21 19:00:30 +02:00
chooseDriveFolder,
chooseDriveFile,
dialog,
input,
2018-02-21 19:22:10 +02:00
post: post(os),
2018-02-21 19:15:46 +02:00
notify
2018-02-21 19:00:30 +02:00
}));
// Routing
app.$router.addRoutes([
{ path: '/', name: 'index', component: MkIndex },
2018-02-21 22:16:38 +02:00
{ path: '/signup', name: 'signup', component: MkSignup },
2018-02-22 10:57:14 +02:00
{ path: '/i/notifications', component: MkNotifications },
2018-02-22 11:06:32 +02:00
{ path: '/i/messaging', component: MkMessaging },
{ path: '/i/messaging/:username', component: MkMessagingRoom },
2018-02-21 19:00:30 +02:00
{ path: '/i/drive', component: MkDrive },
{ path: '/i/drive/folder/:folder', component: MkDrive },
2018-02-22 11:37:47 +02:00
{ path: '/i/drive/file/:file', component: MkDrive },
2018-02-21 19:00:30 +02:00
{ path: '/selectdrive', component: MkSelectDrive },
{ path: '/:user', component: MkUser }
]);
2017-11-21 03:01:00 +02:00
}, true);