import Application from "./Application" import Diff from "./Diff" import StatusMessage from "./StatusMessage" import PushManager from "./PushManager" import TouchController from "./TouchController" import NotificationManager from "./NotificationManager" import AudioPlayer from "./AudioPlayer" import VideoPlayer from "./VideoPlayer" import Analytics from "./Analytics" import SideBar from "./SideBar" import InfiniteScroller from "./InfiniteScroller" import ServiceWorkerManager from "./ServiceWorkerManager" import ServerEvents from "./ServerEvents" import { displayAiringDate, displayDate, displayTime } from "./DateView" import { findAll, supportsWebP, requestIdleCallback, swapElements, delay, findAllInside } from "./Utils" import ToolTip from "./Elements/tool-tip/tool-tip" import * as actions from "./Actions" import * as WebComponents from "./WebComponents" export default class AnimeNotifier { app: Application analytics: Analytics user: HTMLElement | null title: string webpCheck: Promise webpEnabled: boolean contentLoadedActions: Promise statusMessage: StatusMessage visibilityObserver: IntersectionObserver pushManager: PushManager serviceWorkerManager: ServiceWorkerManager notificationManager: NotificationManager | undefined touchController: TouchController audioPlayer: AudioPlayer videoPlayer: VideoPlayer sideBar: SideBar infiniteScroller: InfiniteScroller mainPageLoaded: boolean isLoading: boolean diffCompletedForCurrentPath: boolean lastReloadContentPath: string currentMediaId: string serverEvents: ServerEvents tip: ToolTip constructor(app: Application) { this.app = app this.user = null this.title = "Anime Notifier" this.isLoading = true // These classes will never be removed on DOM diffs Diff.persistentClasses.add("mounted") Diff.persistentClasses.add("element-found") Diff.persistentClasses.add("active") // Never remove src property on diffs Diff.persistentAttributes.add("src") } init() { // App init this.app.init() // Event listeners document.addEventListener("readystatechange", this.onReadyStateChange.bind(this)) document.addEventListener("DOMContentLoaded", this.onContentLoaded.bind(this)) // If we finished loading the DOM (either "interactive" or "complete" state), // immediately trigger the event listener functions. if(document.readyState !== "loading") { this.app.emit("DOMContentLoaded") this.run() } // Idle requestIdleCallback(this.onIdle.bind(this)) } onReadyStateChange() { if(document.readyState !== "interactive") { return } this.run() } run() { // Initiate the elements we need this.user = document.getElementById("user") this.app.content = document.getElementById("content") as HTMLElement this.app.loading = document.getElementById("loading") as HTMLElement // Theme if(this.user && this.user.dataset.pro === "true") { const theme = this.user.dataset.theme // Don't apply light theme on load because // it's already the standard theme. if(theme && theme !== "light") { actions.applyTheme(theme) } } // Web components WebComponents.register() // Tooltip this.tip = new ToolTip() document.body.appendChild(this.tip) document.addEventListener("linkclicked", () => this.tip.classList.add("fade-out")) // Intersection observer if("IntersectionObserver" in window) { // Enable lazy load this.visibilityObserver = new IntersectionObserver( entries => { for(let entry of entries) { if(entry.isIntersecting) { entry.target["became visible"]() this.visibilityObserver.unobserve(entry.target) } } }, {} ) } else { // Disable lazy load feature this.visibilityObserver = { disconnect: () => {}, observe: (elem: HTMLElement) => { elem["became visible"]() }, unobserve: (_: HTMLElement) => {} } as IntersectionObserver } // Status message this.statusMessage = new StatusMessage( document.getElementById("status-message") as HTMLElement, document.getElementById("status-message-text") as HTMLElement ) this.app.onError = (error: Error) => { this.statusMessage.showError(error, 3000) } // Push manager this.pushManager = new PushManager() // Notification manager if(this.user) { this.notificationManager = new NotificationManager( document.getElementById("notification-icon") as HTMLElement, document.getElementById("notification-count") as HTMLElement ) } // Audio player this.audioPlayer = new AudioPlayer(this) // Video player this.videoPlayer = new VideoPlayer(this) // Analytics this.analytics = new Analytics() // Sidebar control this.sideBar = new SideBar(document.getElementById("sidebar")) // Infinite scrolling this.infiniteScroller = new InfiniteScroller(this.app.content.parentElement, 150) // WebP this.webpCheck = supportsWebP().then(val => this.webpEnabled = val) // Loading this.loading(false) } onContentLoaded() { // Stop watching all the objects from the previous page. this.visibilityObserver.disconnect() this.contentLoadedActions = Promise.all([ Promise.resolve().then(() => this.mountMountables()), Promise.resolve().then(() => this.lazyLoad()), Promise.resolve().then(() => this.displayLocalDates()), Promise.resolve().then(() => this.setSelectBoxValue()), Promise.resolve().then(() => this.textAreaFocus()), Promise.resolve().then(() => this.markPlayingMedia()), Promise.resolve().then(() => this.assignActions()), Promise.resolve().then(() => this.updatePushUI()), Promise.resolve().then(() => this.dragAndDrop()), Promise.resolve().then(() => this.colorBoxes()), Promise.resolve().then(() => this.loadCharacterRanking()), Promise.resolve().then(() => this.prepareTooltips()), Promise.resolve().then(() => this.countUp()) ]) // Apply page title this.applyPageTitle() // Auto-focus first input element on welcome page. if(location.pathname === "/welcome") { let firstInput = this.app.content.getElementsByTagName("input")[0] as HTMLInputElement if(firstInput) { firstInput.focus() } } } applyPageTitle() { let headers = document.getElementsByTagName("h1") if(this.app.currentPath === "/" || headers.length === 0 || headers[0].textContent === "NOTIFY.MOE") { if(document.title !== this.title) { document.title = this.title } } else if(headers[0].textContent) { document.title = headers[0].textContent } } textAreaFocus() { const newPostText = document.getElementById("new-post-text") as HTMLTextAreaElement if(!newPostText || newPostText["has-input-listener"]) { return } newPostText.addEventListener("input", () => { if(newPostText.value.length > 0) { const newPostActions = document.getElementsByClassName("new-post-actions")[0] newPostActions.classList.add("new-post-actions-enabled") } else { const newPostActions = document.getElementsByClassName("new-post-actions")[0] newPostActions.classList.remove("new-post-actions-enabled") } }) newPostText["has-input-listener"] = true } async onIdle() { // Register event listeners document.addEventListener("keydown", this.onKeyDown.bind(this), false) window.addEventListener("popstate", this.onPopState.bind(this)) window.addEventListener("error", this.onError.bind(this)) // Service worker this.serviceWorkerManager = new ServiceWorkerManager(this, "/service-worker") this.serviceWorkerManager.register() // Analytics if(this.user) { this.analytics.push() } // Offline message if(navigator.onLine === false) { this.statusMessage.showInfo("You are viewing an offline version of the site now.") } // Notification manager if(this.notificationManager) { this.notificationManager.update() } // Bind unload event window.addEventListener("beforeunload", this.onBeforeUnload.bind(this)) // Show microphone icon if speech input is available if(window["SpeechRecognition"] || window["webkitSpeechRecognition"]) { document.getElementsByClassName("speech-input")[0].classList.add("speech-input-available") } // Ensure a minimum size for the desktop app const minWidth = 1420 const minHeight = 800 if(window.outerWidth <= minWidth || window.outerHeight <= minHeight) { let finalWidth = window.outerWidth < minWidth ? minWidth : window.outerWidth let finalHeight = window.outerHeight < minHeight ? minHeight : window.outerHeight window.resizeTo(finalWidth, finalHeight) } // Server sent events if(this.user && EventSource) { this.serverEvents = new ServerEvents(this) } // // Download popular anime titles for the search // let response = await fetch("/api/popular/anime/titles/500") // let titles = await response.json() // let titleList = document.createElement("datalist") // titleList.id = "popular-anime-titles-list" // for(let title of titles) { // let option = document.createElement("option") // option.value = title // titleList.appendChild(option) // } // document.body.appendChild(titleList) // let search = document.getElementById("search") as HTMLInputElement // search.setAttribute("list", titleList.id) } async onBeforeUnload(e: BeforeUnloadEvent) { let message = "" // Prevent closing tab on new thread page if(this.app.currentPath === "/new/thread" && document.activeElement && document.activeElement.tagName === "TEXTAREA" && (document.activeElement as HTMLTextAreaElement).value.length > 20) { message = "You have unsaved changes on the current page. Are you sure you want to leave?" } if(message) { e.returnValue = message return message } } prepareTooltips(elements?: IterableIterator) { if(!elements) { elements = findAll("tip") } this.tip.setAttribute("active", "false") // Assign mouse enter event handler for(let element of elements) { element.onmouseenter = () => { this.tip.classList.remove("fade-out") this.tip.show(element) } element.onmouseleave = () => { this.tip.hide() } } } dragAndDrop() { if(location.pathname.includes("/animelist/")) { for(let listItem of findAll("anime-list-item")) { // Skip elements that have their event listeners attached already if(listItem["drag-listeners-attached"]) { continue } let name = listItem.getElementsByClassName("anime-list-item-name")[0] let imageContainer = listItem.getElementsByClassName("anime-list-item-image-container")[0] let onDrag = evt => { if(!evt.dataTransfer) { return } let image = imageContainer.getElementsByClassName("anime-list-item-image")[0] if(image) { evt.dataTransfer.setDragImage(image, 0, 0) } evt.dataTransfer.setData("text/plain", JSON.stringify({ api: listItem.dataset.api, animeTitle: name.textContent })) evt.dataTransfer.effectAllowed = "move" } name.addEventListener("dragstart", onDrag, false) imageContainer.addEventListener("dragstart", onDrag, false) // Prevent re-attaching the same listeners listItem["drag-listeners-attached"] = true } for(let element of findAll("tab")) { // Skip elements that have their event listeners attached already if(element["drop-listeners-attached"]) { continue } element.addEventListener("drop", async e => { let toElement: HTMLElement | null = e.target as HTMLElement // Find tab element while(toElement && !toElement.classList.contains("tab")) { toElement = toElement.parentElement } // Ignore a drop on the current status tab if(!toElement || toElement.classList.contains("active") || !e.dataTransfer) { return } let data = e.dataTransfer.getData("text/plain") let json: any try { json = JSON.parse(data) } catch(err) { return } if(!json || !json.api) { return } e.stopPropagation() e.preventDefault() let tabText = toElement.textContent if(!tabText) { return } let newStatus = tabText.toLowerCase() if(newStatus === "on hold") { newStatus = "hold" } try { await this.post(json.api, { Status: newStatus }) await this.reloadContent() this.statusMessage.showInfo(`Moved "${json.animeTitle}" to "${tabText}".`) } catch(err) { this.statusMessage.showError(err) } }, false) element.addEventListener("dragenter", e => { e.preventDefault() }, false) element.addEventListener("dragleave", e => { e.preventDefault() }, false) element.addEventListener("dragover", e => { e.preventDefault() }, false) // Prevent re-attaching the same listeners element["drop-listeners-attached"] = true } } if(location.pathname.startsWith("/inventory")) { for(let element of findAll("inventory-slot")) { // Skip elements that have their event listeners attached already if(element["drag-listeners-attached"]) { continue } element.addEventListener("dragstart", e => { if(!element.draggable || !element.dataset.index || !e.dataTransfer) { return } e.dataTransfer.setData("text", element.dataset.index) }, false) element.addEventListener("dblclick", async _ => { if(!element.draggable || !element.dataset.index) { return } let itemName = element.getAttribute("aria-label") if(element.dataset.consumable !== "true") { return this.statusMessage.showError(itemName + " is not a consumable item.") } let apiEndpoint = this.findAPIEndpoint(element) try { await this.post(apiEndpoint + "/use/" + element.dataset.index) await this.reloadContent() this.statusMessage.showInfo(`You used ${itemName}.`) } catch(err) { this.statusMessage.showError(err) } }, false) element.addEventListener("dragenter", _ => { element.classList.add("drag-enter") }, false) element.addEventListener("dragleave", _ => { element.classList.remove("drag-enter") }, false) element.addEventListener("dragover", e => { e.preventDefault() }, false) element.addEventListener("drop", async e => { element.classList.remove("drag-enter") e.stopPropagation() e.preventDefault() let inventory = element.parentElement if(!inventory || !e.dataTransfer) { return } let fromIndex = e.dataTransfer.getData("text") if(!fromIndex) { return } let fromElement = inventory.childNodes[fromIndex] as HTMLElement let toIndex = element.dataset.index if(!toIndex || fromElement === element || fromIndex === toIndex) { console.error("Invalid drag & drop from", fromIndex, "to", toIndex) return } // Swap in database let apiEndpoint = this.findAPIEndpoint(inventory) try { await this.post(apiEndpoint + "/swap/" + fromIndex + "/" + toIndex) } catch(err) { this.statusMessage.showError(err) } // Swap in UI swapElements(fromElement, element) fromElement.dataset.index = toIndex element.dataset.index = fromIndex }, false) // Prevent re-attaching the same listeners element["drag-listeners-attached"] = true } } } async updatePushUI() { if(!this.app.currentPath.includes("/settings/notifications")) { return } let enableButton = document.getElementById("enable-notifications") as HTMLButtonElement let disableButton = document.getElementById("disable-notifications") as HTMLButtonElement let testButton = document.getElementById("test-notification") as HTMLButtonElement if(!this.pushManager.pushSupported) { enableButton.classList.add("hidden") disableButton.classList.add("hidden") testButton.innerHTML = "Your browser doesn't support push notifications!" return } let subscription = await this.pushManager.subscription() if(subscription) { enableButton.classList.add("hidden") disableButton.classList.remove("hidden") } else { enableButton.classList.remove("hidden") disableButton.classList.add("hidden") } } loadCharacterRanking() { if(!this.app.currentPath.includes("/character/")) { return } for(let element of findAll("character-ranking")) { fetch(`/api/character/${element.dataset.characterId}/ranking`).then(async response => { let ranking = await response.json() if(!ranking.rank) { return } Diff.mutations.queue(() => { let percentile = Math.ceil(ranking.percentile * 100) element.textContent = "#" + ranking.rank.toString() element.title = "Top " + percentile + "%" }) }) } } colorBoxes() { if(!this.app.currentPath.includes("/explore/color/") && !this.app.currentPath.includes("/settings")) { return } for(let element of findAll("color-box")) { Diff.mutations.queue(() => { if(!element.dataset.color) { console.error("color-box missing data-color attribute:", element) return } element.style.backgroundColor = element.dataset.color }) } } countUp() { if(!this.app.currentPath.includes("/paypal/success")) { return } for(let element of findAll("count-up")) { if(!element.textContent) { console.error("count-up missing text content:", element) continue } let final = parseInt(element.textContent) let duration = 2000.0 let start = Date.now() element.textContent = "0" let callback = () => { let progress = (Date.now() - start) / duration if(progress > 1) { progress = 1 } element.textContent = String(Math.round(progress * final)) if(progress < 1) { window.requestAnimationFrame(callback) } } window.requestAnimationFrame(callback) } } markPlayingMedia() { for(let element of findAll("media-play-area")) { if(element.dataset.mediaId === this.currentMediaId) { element.classList.add("playing") } } } setSelectBoxValue() { for(let element of document.getElementsByTagName("select")) { let attributeValue = element.getAttribute("value") if(!attributeValue) { console.error("Select box without a value:", element) continue } element.value = attributeValue } } displayLocalDates() { const now = new Date() for(let element of findAll("utc-airing-date")) { displayAiringDate(element, now) } for(let element of findAll("utc-date")) { displayDate(element, now) } for(let element of findAll("utc-date-absolute")) { displayTime(element) } } reloadContent(cached?: boolean) { let headers = new Headers() if(cached) { headers.set("X-Force-Cache", "true") } else { headers.set("X-No-Cache", "true") } let path = this.lastReloadContentPath = this.app.currentPath return fetch("/_" + path, { credentials: "same-origin", headers }) .then(response => { if(this.app.currentPath !== path) { return Promise.reject("old request") } return Promise.resolve(response) }) .then(response => response.text()) .then(html => Diff.innerHTML(this.app.content, html)) .then(() => this.app.emit("DOMContentLoaded")) } reloadPage() { console.log("reload page", this.app.currentPath) let path = this.app.currentPath this.lastReloadContentPath = path return fetch(path, { credentials: "same-origin" }) .then(response => { if(this.app.currentPath !== path) { return Promise.reject("old request") } return Promise.resolve(response) }) .then(response => response.text()) .then(html => Diff.root(document.documentElement, html)) .then(() => this.app.emit("DOMContentLoaded")) .then(() => this.loading(false)) // Because our loading element gets reset due to full page diff } loading(newState: boolean) { this.isLoading = newState if(this.isLoading) { document.documentElement.style.cursor = "progress" this.app.loading.classList.remove(this.app.fadeOutClass) } else { document.documentElement.style.cursor = "auto" this.app.loading.classList.add(this.app.fadeOutClass) } } assignActions() { for(let element of findAll("action")) { let actionTrigger = element.dataset.trigger let actionName = element.dataset.action // Filter out invalid definitions if(!actionTrigger || !actionName) { continue } let oldAction = element["action assigned"] if(oldAction) { if(oldAction.trigger === actionTrigger && oldAction.action === actionName) { continue } element.removeEventListener(oldAction.trigger, oldAction.handler) } // This prevents default actions on links if(actionTrigger === "click" && element.tagName === "A") { element.onclick = null } // Warn us about undefined actions if(!(actionName in actions)) { this.statusMessage.showError(`Action '${actionName}' has not been defined`) continue } // Register the actual action handler let actionHandler = e => { if(!actionName) { return } actions[actionName](this, element, e) e.stopPropagation() e.preventDefault() } element.addEventListener(actionTrigger, actionHandler) // Use "action assigned" flag instead of removing the class. // This will make sure that DOM diffs which restore the class name // will not assign the action multiple times to the same element. element["action assigned"] = { trigger: actionTrigger, action: actionName, handler: actionHandler } } } async lazyLoad(elements?: IterableIterator) { if(!elements) { elements = findAll("lazy") } await this.webpCheck for(let element of elements) { switch(element.tagName) { case "IMG": this.lazyLoadImage(element as HTMLImageElement) break case "VIDEO": this.lazyLoadVideo(element as HTMLVideoElement) break case "IFRAME": this.lazyLoadIFrame(element as HTMLIFrameElement) break } } } emptyPixel() { return "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" } lazyLoadImage(element: HTMLImageElement) { let pixelRatio = window.devicePixelRatio // Once the image becomes visible, load it element["became visible"] = () => { let dataSrc = element.dataset.src if(!dataSrc) { console.error("Image missing data-src attribute:", element) return } let dotPos = dataSrc.lastIndexOf(".") let base = dataSrc.substring(0, dotPos) let extension = "" // Replace URL with WebP if supported if(this.webpEnabled && element.dataset.webp === "true" && !dataSrc.endsWith(".svg")) { let queryPos = dataSrc.lastIndexOf("?") if(queryPos !== -1) { extension = ".webp" + dataSrc.substring(queryPos) } else { extension = ".webp" } } else { extension = dataSrc.substring(dotPos) } // Anime and character images on Retina displays if(pixelRatio > 1) { if(base.includes("/anime/") || base.includes("/groups/") || (base.includes("/characters/") && !base.includes("/large/"))) { base += "@2" } } let finalSrc = base + extension if(element.src !== finalSrc && element.src !== "https:" + finalSrc && element.src !== "https://notify.moe" + finalSrc) { // Show average color if(element.dataset.color) { element.src = this.emptyPixel() element.style.backgroundColor = element.dataset.color Diff.mutations.queue(() => element.classList.add("element-color-preview")) } Diff.mutations.queue(() => element.classList.remove("element-found")) element.src = finalSrc } if(element.naturalWidth === 0) { element.onload = () => { if(element.src.startsWith("data:")) { return } Diff.mutations.queue(() => element.classList.add("element-found")) } element.onerror = () => { // Try loading from the origin server if our CDN failed if(element.src.includes("media.notify.moe/")) { console.warn(`CDN failed loading ${element.src}`) element.src = element.src.replace("media.notify.moe/", "notify.moe/") return } if(element.classList.contains("element-found")) { return } Diff.mutations.queue(() => element.classList.add("element-not-found")) } } else { Diff.mutations.queue(() => element.classList.add("element-found")) } } this.visibilityObserver.observe(element) } lazyLoadIFrame(element: HTMLIFrameElement) { // Once the iframe becomes visible, load it element["became visible"] = () => { if(!element.dataset.src) { console.error("IFrame missing data-src attribute:", element) return } // If the source is already set correctly, don't set it again to avoid iframe flickering. if(element.src !== element.dataset.src && element.src !== (window.location.protocol + element.dataset.src)) { element.src = element.dataset.src } Diff.mutations.queue(() => element.classList.add("element-found")) } this.visibilityObserver.observe(element) } lazyLoadVideo(video: HTMLVideoElement) { const hideControlsDelay = 1500 // Once the video becomes visible, load it video["became visible"] = () => { if(!video["listeners attached"]) { let videoParent = video.parentElement if(!videoParent) { console.error("video has no parent element") return } // Prevent context menu video.addEventListener("contextmenu", e => e.preventDefault()) // Show and hide controls on mouse movement let controls = videoParent.getElementsByClassName("video-controls")[0] let playButton = videoParent.getElementsByClassName("video-control-play")[0] as HTMLElement let pauseButton = videoParent.getElementsByClassName("video-control-pause")[0] as HTMLElement let hideControls = () => { controls.classList.add("fade-out") video.style.cursor = "none" } let showControls = () => { controls.classList.remove("fade-out") video.style.cursor = "default" } video.addEventListener("mousemove", () => { showControls() clearTimeout(video["hideControlsTimeout"]) video["hideControlsTimeout"] = setTimeout(hideControls, hideControlsDelay) }) let progressElement = videoParent.getElementsByClassName("video-progress")[0] as HTMLElement let progressClickable = videoParent.getElementsByClassName("video-progress-clickable")[0] let timeElement = videoParent.getElementsByClassName("video-time")[0] video.addEventListener("canplay", () => { video["playable"] = true }) video.addEventListener("timeupdate", () => { if(!video["playable"]) { return } let time = video.currentTime let minutes = Math.trunc(time / 60) let seconds = Math.trunc(time) % 60 let paddedSeconds = ("00" + seconds).slice(-2) Diff.mutations.queue(() => { timeElement.textContent = `${minutes}:${paddedSeconds}` progressElement.style.transform = `scaleX(${time / video.duration})` }) }) video.addEventListener("waiting", () => { this.loading(true) }) video.addEventListener("playing", () => { this.loading(false) }) video.addEventListener("play", () => { playButton.style.display = "none" pauseButton.style.display = "block" }) video.addEventListener("pause", () => { playButton.style.display = "block" pauseButton.style.display = "none" }) progressClickable.addEventListener("click", (e: MouseEvent) => { let rect = progressClickable.getBoundingClientRect() let x = e.clientX let progress = (x - rect.left) / rect.width video.currentTime = progress * video.duration video.dispatchEvent(new Event("timeupdate")) e.stopPropagation() }) video["listeners attached"] = true } let modified = false for(let child of video.children) { if(child.tagName !== "SOURCE") { continue } let element = child as HTMLSourceElement if(!element.dataset.src || !element.dataset.type) { console.error("Source element missing data-src or data-type attribute:", element) continue } if(element.src !== element.dataset.src) { element.src = element.dataset.src modified = true } if(element.type !== element.dataset.type) { element.type = element.dataset.type modified = true } } if(modified) { video["playable"] = false Diff.mutations.queue(() => { video.load() video.classList.add("element-found") }) } } this.visibilityObserver.observe(video) } mountMountables(elements?: IterableIterator) { if(!elements) { elements = findAll("mountable") } this.modifyDelayed(elements, element => element.classList.add("mounted")) } unmountMountables() { for(let element of findAll("mountable")) { if(element.classList.contains("never-unmount")) { continue } Diff.mutations.queue(() => element.classList.remove("mounted")) } } modifyDelayed(elements: IterableIterator, func: (element: HTMLElement) => void) { const maxDelay = 2500 const delay = 20 let time = 0 let start = Date.now() let maxTime = start + maxDelay let mountableTypes = new Map() let mountableTypeMutations = new Map() for(let element of elements) { // Skip already mounted elements. // This helps a lot when dealing with infinite scrolling // where the first elements are already mounted. if(element.classList.contains("mounted")) { continue } let type = element.dataset.mountableType || "general" let typeTime = mountableTypes.get(type) if(typeTime !== undefined) { time = typeTime + delay mountableTypes.set(type, time) } else { time = start mountableTypes.set(type, time) mountableTypeMutations.set(type, []) } if(time > maxTime) { time = maxTime } const mutations = mountableTypeMutations.get(type) as any[] mutations.push({ element, time }) } for(const mutations of mountableTypeMutations.values()) { let mutationIndex = 0 let updateBatch = () => { let now = Date.now() for(; mutationIndex < mutations.length; mutationIndex++) { let mutation = mutations[mutationIndex] if(mutation.time > now) { break } func(mutation.element) } if(mutationIndex < mutations.length) { window.requestAnimationFrame(updateBatch) } } window.requestAnimationFrame(updateBatch) } } async diff(url: string) { if(url === this.app.currentPath) { return null } let path = "/_" + url try { // Start the request let request = fetch(path, { credentials: "same-origin" }) .then(response => response.text()) history.pushState(url, "", url) this.app.currentPath = url this.diffCompletedForCurrentPath = false this.app.markActiveLinks() this.unmountMountables() this.loading(true) // Delay by mountable-transition-speed await delay(150) let html = await request // If the response for the correct path has not arrived yet, show this response if(!this.diffCompletedForCurrentPath) { // If this response was the most recently requested one, mark the requests as completed if(this.app.currentPath === url) { this.diffCompletedForCurrentPath = true } // Update contents await Diff.innerHTML(this.app.content, html) this.app.emit("DOMContentLoaded") } } catch(err) { console.error(err) } finally { this.loading(false) } } innerHTML(element: HTMLElement, html: string) { return Diff.innerHTML(element, html) } post(url: string, body?: any) { if(this.isLoading) { return Promise.resolve(null) } if(body !== undefined && typeof body !== "string") { body = JSON.stringify(body) } this.loading(true) return fetch(url, { method: "POST", body, credentials: "same-origin" }) .then(response => { this.loading(false) if(response.status === 200) { return Promise.resolve(response) } return response.text().then(err => { throw err }) }) .catch(err => { this.loading(false) throw err }) } onNewContent(element: HTMLElement) { // Do the same as for the content loaded event, // except here we are limiting it to the element. this.app.ajaxify(element.getElementsByTagName("a")) this.lazyLoad(findAllInside("lazy", element)) this.mountMountables(findAllInside("mountable", element)) this.prepareTooltips(findAllInside("tip", element)) this.textAreaFocus() } scrollTo(target: HTMLElement) { const duration = 250.0 const fullSin = Math.PI / 2 const contentPadding = 23 let newScroll = 0 let finalScroll = Math.max(target.getBoundingClientRect().top - contentPadding, 0) // Calculating scrollTop will force a layout - careful! let contentContainer = this.app.content.parentElement as HTMLElement let oldScroll = contentContainer.scrollTop let scrollDistance = finalScroll - oldScroll if(scrollDistance > 0 && scrollDistance < 1) { return } let timeStart = Date.now() let timeEnd = timeStart + duration let scroll = () => { let time = Date.now() let progress = (time - timeStart) / duration if(progress > 1.0) { progress = 1.0 } newScroll = oldScroll + scrollDistance * Math.sin(progress * fullSin) contentContainer.scrollTop = newScroll if(time < timeEnd && newScroll != finalScroll) { window.requestAnimationFrame(scroll) } } window.requestAnimationFrame(scroll) } findAPIEndpoint(element: HTMLElement) { if(element.dataset.api !== undefined) { return element.dataset.api } let apiObject: HTMLElement | undefined let parent: HTMLElement | null parent = element while(parent = parent.parentElement) { if(parent.dataset.api !== undefined) { apiObject = parent break } } if(!apiObject || !apiObject.dataset.api) { this.statusMessage.showError("API object not found") throw "API object not found" } return apiObject.dataset.api } onPopState(e: PopStateEvent) { if(e.state) { this.app.load(e.state, { addToHistory: false }) } else if(this.app.currentPath !== this.app.originalPath) { this.app.load(this.app.originalPath, { addToHistory: false }) } } onKeyDown(e: KeyboardEvent) { let activeElement = document.activeElement if(!activeElement) { return } // Ignore hotkeys on input elements switch(activeElement.tagName) { case "INPUT": // If the active element is the search and we press Enter, re-activate search. if(activeElement.id === "search" && e.keyCode === 13) { actions.search(this, activeElement as HTMLInputElement, e) } return case "TEXTAREA": return } // When called, this will prevent the default action for that key. let preventDefault = () => { e.preventDefault() e.stopPropagation() } // Ignore hotkeys on contentEditable elements if(activeElement.getAttribute("contenteditable") === "true") { // Disallow Enter key in contenteditables and make it blur the element instead if(e.keyCode === 13) { if("blur" in activeElement) { (activeElement["blur"] as Function)() } return preventDefault() } return } // "Ctrl" + "," = Settings if(e.ctrlKey && e.keyCode === 188) { this.app.load("/settings") return preventDefault() } // The following keycodes should not be activated while Ctrl or Alt is held down if(e.ctrlKey || e.altKey) { return } // "F" = Search if(e.keyCode === 70) { let search = document.getElementById("search") as HTMLInputElement search.focus() search.select() return preventDefault() } // "S" = Toggle sidebar if(e.keyCode === 83) { this.sideBar.toggle() return preventDefault() } // "+" = Audio speed up if(e.key == "+") { this.audioPlayer.addSpeed(0.05) return preventDefault() } // "-" = Audio speed down if(e.key == "-") { this.audioPlayer.addSpeed(-0.05) return preventDefault() } // "J" = Previous track if(e.keyCode === 74) { this.audioPlayer.previous() return preventDefault() } // "K" = Play/pause if(e.keyCode === 75) { this.audioPlayer.playPause() return preventDefault() } // "L" = Next track if(e.keyCode === 76) { this.audioPlayer.next() return preventDefault() } // Space = Toggle play if(e.keyCode === 32) { // this.audioPlayer.playPause() this.videoPlayer.playPause() return preventDefault() } // Number keys activate sidebar menus for(let i = 48; i <= 57; i++) { if(e.keyCode === i) { let index = i === 48 ? 9 : i - 49 let links = [...findAll("sidebar-link")] if(index < links.length) { let element = links[index] as HTMLElement element.click() return preventDefault() } } } } // This is called every time an uncaught JavaScript error is thrown async onError(evt: ErrorEvent) { let report = { message: evt.message, stack: evt.error.stack, fileName: evt.filename, lineNumber: evt.lineno, columnNumber: evt.colno, } try { await this.post("/api/new/clienterrorreport", report) console.log("Successfully reported the error to the website staff.") } catch(err) { console.warn("Failed reporting the error to the website staff:", err) } } }