filebrowser/_assets/src/main.js
Henrique Dias 834ce7ac4a vue updates ^_^
Former-commit-id: 336b37cf681ec2337a1e4d577213aa45f12b81d6 [formerly d8cbb6ff242f9ab3e5c857da6f6758abb0f4fc1a] [formerly 8b9089c816fae3608bf5ef8592cb776fa420a6f6 [formerly e2077efbc6]]
Former-commit-id: 30b063fdab7de6f2c1c5f46dd8a1dd354897f5b6 [formerly 8f83b525334b9430ddbe779c6eae3251a5590b75]
Former-commit-id: bbe19a047d103531a542bebb1fe0263bec4cbd88
2017-06-28 16:05:30 +01:00

45 lines
1.1 KiB
JavaScript

// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './App'
// simport page from './page.js'
Vue.config.productionTip = false
window.info = (window.info || window.alert('Something is wrong, please refresh!'))
window.ssl = (window.location.protocol === 'https:')
// TODO: keep this here?
document.title = window.info.page.name
// TODO: keep this here?
window.addEventListener('popstate', (event) => {
event.preventDefault()
event.stopPropagation()
window.info.page.kind = ''
let request = new window.XMLHttpRequest()
request.open('GET', event.state.url, true)
request.setRequestHeader('Accept', 'application/json')
request.onload = () => {
if (request.status === 200) {
window.info.page = JSON.parse(request.responseText)
document.title = event.state.name
} else {
console.log(request.responseText)
}
}
request.onerror = (error) => { console.log(error) }
request.send()
})
/* eslint-disable no-new */
new Vue({
el: '#app',
template: '<App/>',
components: { App }
})