2016-10-27 01:46:32 +11:00
|
|
|
import Vue from 'vue'
|
2016-10-27 04:03:55 +11:00
|
|
|
import VueRouter from 'vue-router'
|
|
|
|
import Vuex from 'vuex'
|
|
|
|
import App from './App.vue'
|
|
|
|
import PublicTimeline from './components/public_timeline/public_timeline.vue'
|
2016-11-07 07:46:01 +11:00
|
|
|
import PublicAndExternalTimeline from './components/public_and_external_timeline/public_and_external_timeline.vue'
|
2016-10-29 00:19:42 +11:00
|
|
|
import FriendsTimeline from './components/friends_timeline/friends_timeline.vue'
|
2016-11-25 04:17:09 +11:00
|
|
|
import Conversation from './components/conversation/conversation.vue'
|
2016-11-27 07:09:41 +11:00
|
|
|
import Mentions from './components/mentions/mentions.vue'
|
2016-12-01 09:32:22 +11:00
|
|
|
import UserProfile from './components/user_profile/user_profile.vue'
|
2016-10-27 04:03:55 +11:00
|
|
|
|
2016-10-28 03:03:25 +11:00
|
|
|
import statusesModule from './modules/statuses.js'
|
|
|
|
import usersModule from './modules/users.js'
|
2016-11-27 04:57:08 +11:00
|
|
|
import apiModule from './modules/api.js'
|
2016-10-27 04:03:55 +11:00
|
|
|
|
2016-11-29 03:37:47 +11:00
|
|
|
import VueTimeago from 'vue-timeago'
|
|
|
|
|
2017-01-17 03:44:26 +11:00
|
|
|
import StyleSetter from './services/style_setter/style_setter.js'
|
|
|
|
|
2016-10-27 04:03:55 +11:00
|
|
|
Vue.use(Vuex)
|
|
|
|
Vue.use(VueRouter)
|
2016-11-29 03:37:47 +11:00
|
|
|
Vue.use(VueTimeago, {
|
|
|
|
locale: 'en-US',
|
|
|
|
locales: {
|
|
|
|
'en-US': require('vue-timeago/locales/en-US.json')
|
|
|
|
}
|
|
|
|
})
|
2016-10-27 04:03:55 +11:00
|
|
|
|
|
|
|
const store = new Vuex.Store({
|
|
|
|
modules: {
|
2016-10-28 03:03:25 +11:00
|
|
|
statuses: statusesModule,
|
2016-11-27 04:57:08 +11:00
|
|
|
users: usersModule,
|
|
|
|
api: apiModule
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
const routes = [
|
2016-11-07 07:46:01 +11:00
|
|
|
{ path: '/', redirect: '/main/all' },
|
|
|
|
{ path: '/main/all', component: PublicAndExternalTimeline },
|
2016-10-29 00:19:42 +11:00
|
|
|
{ path: '/main/public', component: PublicTimeline },
|
2016-11-25 04:17:09 +11:00
|
|
|
{ path: '/main/friends', component: FriendsTimeline },
|
2016-11-27 07:09:41 +11:00
|
|
|
{ name: 'conversation', path: '/notice/:id', component: Conversation },
|
2016-12-01 09:32:22 +11:00
|
|
|
{ name: 'user-profile', path: '/users/:id', component: UserProfile },
|
2016-11-27 07:09:41 +11:00
|
|
|
{ name: 'mentions', path: '/:username/mentions', component: Mentions }
|
2016-10-27 04:03:55 +11:00
|
|
|
]
|
|
|
|
|
2016-11-07 06:26:07 +11:00
|
|
|
const router = new VueRouter({
|
|
|
|
mode: 'history',
|
2016-11-25 04:24:35 +11:00
|
|
|
routes,
|
|
|
|
scrollBehavior: (to, from, savedPosition) => {
|
|
|
|
return savedPosition || { x: 0, y: 0 }
|
|
|
|
}
|
2016-11-07 06:26:07 +11:00
|
|
|
})
|
2016-10-27 01:46:32 +11:00
|
|
|
|
|
|
|
/* eslint-disable no-new */
|
|
|
|
new Vue({
|
2016-10-27 04:03:55 +11:00
|
|
|
router,
|
|
|
|
store,
|
2016-10-27 01:46:32 +11:00
|
|
|
el: '#app',
|
|
|
|
template: '<App/>',
|
|
|
|
components: { App }
|
|
|
|
})
|
2017-01-17 03:44:26 +11:00
|
|
|
|
2017-01-17 04:57:03 +11:00
|
|
|
StyleSetter.setStyle('/static/css/base16-solarized-light.css')
|