208 lines
4.6 KiB
TypeScript
Raw Normal View History

2018-04-02 05:34:16 +00:00
import Diff from "./Diff"
2017-06-26 01:57:29 +00:00
2017-06-20 13:46:49 +00:00
class LoadOptions {
addToHistory?: boolean
forceReload?: boolean
}
2018-04-02 05:34:16 +00:00
export default class Application {
2017-06-19 14:20:46 +00:00
fadeOutClass: string
2017-06-19 14:43:20 +00:00
activeLinkClass: string
2017-06-19 14:20:46 +00:00
content: HTMLElement
loading: HTMLElement
2017-06-20 10:41:26 +00:00
currentPath: string
originalPath: string
2017-12-01 18:37:19 +00:00
lastRequest: XMLHttpRequest | null
2017-06-19 14:20:46 +00:00
constructor() {
2017-06-20 10:41:26 +00:00
this.currentPath = window.location.pathname
this.originalPath = window.location.pathname
2017-06-19 14:43:20 +00:00
this.activeLinkClass = "active"
2017-06-19 14:20:46 +00:00
this.fadeOutClass = "fade-out"
}
2017-07-21 10:55:36 +00:00
init() {
document.addEventListener("DOMContentLoaded", () => {
let links = document.getElementsByTagName("a")
this.markActiveLinks(links)
this.ajaxify(links)
2017-07-21 10:55:36 +00:00
})
}
2017-06-19 14:20:46 +00:00
get(url: string): Promise<string> {
2017-12-01 18:37:19 +00:00
// return fetch(url, {
// credentials: "same-origin"
// }).then(response => response.text())
if(this.lastRequest) {
this.lastRequest.abort()
this.lastRequest = null
}
return new Promise((resolve, reject) => {
let request = new XMLHttpRequest()
request.onerror = () => reject(new Error("You are either offline or the requested page doesn't exist."))
request.ontimeout = () => reject(new Error("The page took too much time to respond."))
request.onload = () => {
if(request.status < 200 || request.status >= 400)
reject(request.responseText)
else
resolve(request.responseText)
}
request.open("GET", url, true)
request.send()
this.lastRequest = request
})
2017-06-19 14:20:46 +00:00
}
2017-06-20 13:46:49 +00:00
load(url: string, options?: LoadOptions) {
2018-03-25 13:35:31 +00:00
// Remove protocol and hostname if it was specified
if(url.startsWith(location.origin)) {
url = url.substr(location.origin.length)
}
2017-06-26 01:57:29 +00:00
// Start sending a network request
let request = this.get("/_" + url).catch(error => error)
// Parse options
2017-06-20 13:46:49 +00:00
if(!options) {
options = new LoadOptions()
}
if(options.addToHistory === undefined) {
options.addToHistory = true
}
2017-11-10 07:41:45 +00:00
2017-06-26 01:57:29 +00:00
// Set current path
2017-06-20 10:41:26 +00:00
this.currentPath = url
2017-06-19 14:20:46 +00:00
2017-06-26 01:57:29 +00:00
// Add to browser history
if(options.addToHistory) {
history.pushState(url, "", url)
}
2017-06-19 14:20:46 +00:00
// Mark active links
this.markActiveLinks()
let onTransitionEnd = (e: Event) => {
2017-06-19 14:43:20 +00:00
// Ignore transitions of child elements.
// We only care about the transition event on the content element.
if(e.target !== this.content) {
return
}
2017-11-10 07:41:45 +00:00
2017-12-01 14:38:44 +00:00
// Outdated response.
if(this.currentPath !== url) {
return
}
2017-06-19 14:43:20 +00:00
// Remove listener after we finally got the correct event.
this.content.removeEventListener("transitionend", onTransitionEnd)
// Wait for the network request to end.
2017-06-19 14:20:46 +00:00
request.then(html => {
2017-06-19 14:43:20 +00:00
// Set content
2017-11-10 07:41:45 +00:00
this.setContent(html)
this.scrollToTop()
2017-06-19 14:20:46 +00:00
2017-06-19 14:43:20 +00:00
// Fade animations
2017-06-19 14:20:46 +00:00
this.content.classList.remove(this.fadeOutClass)
this.loading.classList.add(this.fadeOutClass)
2017-06-19 15:45:27 +00:00
// Send DOMContentLoaded Event
this.emit("DOMContentLoaded")
2017-06-19 14:20:46 +00:00
})
2017-06-19 14:43:20 +00:00
}
this.content.addEventListener("transitionend", onTransitionEnd)
2017-06-19 14:20:46 +00:00
this.content.classList.add(this.fadeOutClass)
this.loading.classList.remove(this.fadeOutClass)
2017-06-20 10:41:26 +00:00
return request
2017-06-19 14:20:46 +00:00
}
2017-11-10 07:41:45 +00:00
setContent(html: string) {
this.content.innerHTML = html
2017-06-19 14:43:20 +00:00
}
markActiveLinks(links?: NodeListOf<HTMLAnchorElement>) {
if(!links) {
links = document.getElementsByTagName("a")
}
2017-06-19 14:43:20 +00:00
for(let i = 0; i < links.length; i++) {
let link = links[i]
Diff.mutations.queue(() => {
if(link.getAttribute("href") === this.currentPath) {
link.classList.add(this.activeLinkClass)
} else {
link.classList.remove(this.activeLinkClass)
}
})
2017-06-19 14:43:20 +00:00
}
2017-06-19 14:20:46 +00:00
}
ajaxify(links?: NodeListOf<HTMLAnchorElement>) {
if(!links) {
links = document.getElementsByTagName("a")
}
2017-06-19 14:20:46 +00:00
for(let i = 0; i < links.length; i++) {
2018-03-23 20:29:28 +00:00
let link = links[i] as HTMLAnchorElement
// Don't ajaxify links to a different host
if(link.hostname !== window.location.hostname) {
if(!link.target) {
link.target = "_blank"
}
continue
}
2018-03-23 21:02:43 +00:00
// Don't ajaxify invalid links, links with a target or links that disable ajax specifically
if(link.href === "" || link.href.includes("#") || link.target.length > 0 || link.dataset.ajax === "false") {
2018-03-23 20:29:28 +00:00
continue
}
2017-06-19 14:49:24 +00:00
let self = this
2017-06-19 14:20:46 +00:00
link.onclick = function(e) {
// Middle mouse button should have standard behaviour
if(e.which === 2) {
2017-06-19 14:20:46 +00:00
return
}
2017-06-19 14:20:46 +00:00
let url = this.getAttribute("href")
e.preventDefault()
2017-07-19 14:56:02 +00:00
if(!url || url === self.currentPath) {
2017-06-19 14:20:46 +00:00
return
}
2017-11-10 07:41:45 +00:00
2017-06-19 14:20:46 +00:00
// Load requested page
2017-06-20 13:46:49 +00:00
self.load(url)
2017-06-19 14:20:46 +00:00
}
}
}
scrollToTop() {
let parent : HTMLElement | null = this.content
2017-06-19 14:20:46 +00:00
2018-03-23 20:29:28 +00:00
Diff.mutations.queue(() => {
while(parent = parent.parentElement) {
parent.scrollTop = 0
}
})
2017-06-19 14:20:46 +00:00
}
2017-06-19 15:45:27 +00:00
emit(eventName: string) {
2018-03-29 09:36:54 +00:00
document.dispatchEvent(new Event(eventName))
2017-06-19 15:45:27 +00:00
}
2017-06-19 14:49:24 +00:00
}