2021-09-02 18:00:57 +00:00
|
|
|
import "phoenix_html"
|
|
|
|
import {Socket} from "phoenix"
|
2021-11-16 16:58:22 +00:00
|
|
|
import {LiveSocket} from "phoenix_live_view"
|
2021-09-02 18:00:57 +00:00
|
|
|
import topbar from "../vendor/topbar"
|
|
|
|
|
2021-11-05 19:57:33 +00:00
|
|
|
let nowSeconds = () => Math.round(Date.now() / 1000)
|
2021-10-27 20:02:56 +00:00
|
|
|
|
2021-11-08 19:32:40 +00:00
|
|
|
let execJS = (selector, attr) => {
|
|
|
|
document.querySelectorAll(selector).forEach(el => liveSocket.execJS(el, el.getAttribute(attr)))
|
|
|
|
}
|
|
|
|
|
2021-10-27 20:02:56 +00:00
|
|
|
let Hooks = {}
|
|
|
|
|
2021-11-19 14:55:26 +00:00
|
|
|
Hooks.Flash = {
|
|
|
|
mounted(){
|
|
|
|
let hide = () => liveSocket.execJS(this.el, this.el.getAttribute("phx-click"))
|
|
|
|
this.timer = setTimeout(() => hide(), 8000)
|
|
|
|
this.el.addEventListener("phx:hide-start", () => clearTimeout(this.timer))
|
|
|
|
this.el.addEventListener("mouseover", () => {
|
|
|
|
clearTimeout(this.timer)
|
|
|
|
this.timer = setTimeout(() => hide(), 8000)
|
|
|
|
})
|
|
|
|
},
|
|
|
|
destroyed(){ clearTimeout(this.timer) }
|
|
|
|
}
|
|
|
|
|
2021-11-18 14:55:09 +00:00
|
|
|
Hooks.Menu = {
|
|
|
|
getAttr(name){
|
|
|
|
let val = this.el.getAttribute(name)
|
|
|
|
if(val === null){ throw(new Error(`no ${name} attribute configured for menu`)) }
|
|
|
|
return val
|
|
|
|
},
|
|
|
|
reset(){
|
2021-11-19 03:09:01 +00:00
|
|
|
this.enabled = false
|
2021-11-18 14:55:09 +00:00
|
|
|
this.activeClass = this.getAttr("data-active-class")
|
|
|
|
this.deactivate(this.menuItems())
|
|
|
|
this.activeItem = null
|
2021-11-18 20:21:07 +00:00
|
|
|
window.removeEventListener("keydown", this.handleKeyDown)
|
2021-11-18 14:55:09 +00:00
|
|
|
},
|
2021-11-18 20:21:07 +00:00
|
|
|
destroyed(){ this.reset() },
|
2021-11-18 14:55:09 +00:00
|
|
|
mounted(){
|
|
|
|
this.menuItemsContainer = document.querySelector(`[aria-labelledby="${this.el.id}"]`)
|
|
|
|
this.reset()
|
2021-11-18 21:01:29 +00:00
|
|
|
this.handleKeyDown = (e) => this.onKeyDown(e)
|
2021-11-19 03:09:01 +00:00
|
|
|
this.el.addEventListener("keydown", e => {
|
|
|
|
if((e.key === "Enter" || e.key === " ") && e.currentTarget.isSameNode(this.el)){
|
|
|
|
this.enabled = true
|
|
|
|
}
|
|
|
|
})
|
2021-11-18 14:55:09 +00:00
|
|
|
this.el.addEventListener("click", e => {
|
2021-11-18 21:01:29 +00:00
|
|
|
if(!e.currentTarget.isSameNode(this.el)){ return }
|
|
|
|
|
|
|
|
window.addEventListener("keydown", this.handleKeyDown)
|
2021-11-18 20:21:07 +00:00
|
|
|
// disable if button clicked and click was not a keyboard event
|
2021-11-19 03:09:01 +00:00
|
|
|
if(this.enabled){
|
|
|
|
window.requestAnimationFrame(() => this.activate(0))
|
2021-11-18 14:55:09 +00:00
|
|
|
}
|
|
|
|
})
|
2021-11-22 16:21:01 +00:00
|
|
|
this.menuItemsContainer.addEventListener("phx:hide-start", () => this.reset())
|
2021-11-18 14:55:09 +00:00
|
|
|
},
|
|
|
|
activate(index, fallbackIndex){
|
|
|
|
let menuItems = this.menuItems()
|
|
|
|
this.activeItem = menuItems[index] || menuItems[fallbackIndex]
|
|
|
|
this.activeItem.classList.add(this.activeClass)
|
2021-11-18 20:21:07 +00:00
|
|
|
this.activeItem.focus()
|
2021-11-18 14:55:09 +00:00
|
|
|
},
|
|
|
|
deactivate(items){ items.forEach(item => item.classList.remove(this.activeClass)) },
|
2021-11-18 20:21:07 +00:00
|
|
|
menuItems(){ return Array.from(this.menuItemsContainer.querySelectorAll("[role=menuitem]")) },
|
|
|
|
onKeyDown(e){
|
|
|
|
if(e.key === "Escape"){
|
|
|
|
document.body.click()
|
2021-11-18 21:17:47 +00:00
|
|
|
this.el.focus()
|
2021-11-18 20:21:07 +00:00
|
|
|
this.reset()
|
|
|
|
} else if(e.key === "Enter" && !this.activeItem){
|
|
|
|
this.activate(0)
|
|
|
|
} else if(e.key === "Enter"){
|
|
|
|
this.activeItem.click()
|
|
|
|
}
|
|
|
|
if(e.key === "ArrowDown"){
|
|
|
|
e.preventDefault()
|
|
|
|
let menuItems = this.menuItems()
|
|
|
|
this.deactivate(menuItems)
|
2021-11-18 21:01:29 +00:00
|
|
|
this.activate(menuItems.indexOf(this.activeItem) + 1, 0)
|
2021-11-18 20:21:07 +00:00
|
|
|
} else if(e.key === "ArrowUp"){
|
|
|
|
e.preventDefault()
|
|
|
|
let menuItems = this.menuItems()
|
|
|
|
this.deactivate(menuItems)
|
2021-11-18 21:01:29 +00:00
|
|
|
this.activate(menuItems.indexOf(this.activeItem) - 1, menuItems.length - 1)
|
2021-11-22 19:28:57 +00:00
|
|
|
} else if (e.key === "Tab"){
|
2021-11-22 18:55:01 +00:00
|
|
|
e.preventDefault()
|
2021-11-18 20:21:07 +00:00
|
|
|
}
|
|
|
|
}
|
2021-11-18 14:55:09 +00:00
|
|
|
}
|
|
|
|
|
2021-11-05 00:49:19 +00:00
|
|
|
Hooks.AudioPlayer = {
|
|
|
|
mounted(){
|
|
|
|
this.playbackBeganAt = null
|
|
|
|
this.player = this.el.querySelector("audio")
|
|
|
|
this.currentTime = this.el.querySelector("#player-time")
|
|
|
|
this.duration = this.el.querySelector("#player-duration")
|
|
|
|
this.progress = this.el.querySelector("#player-progress")
|
|
|
|
let enableAudio = () => {
|
2021-11-08 18:46:23 +00:00
|
|
|
if(this.player.src){
|
|
|
|
document.removeEventListener("click", enableAudio)
|
2021-11-16 16:58:22 +00:00
|
|
|
if(this.player.readyState === 0){
|
|
|
|
this.player.play().catch(error => null)
|
|
|
|
this.player.pause()
|
|
|
|
}
|
2021-11-08 18:46:23 +00:00
|
|
|
}
|
2021-11-05 00:49:19 +00:00
|
|
|
}
|
|
|
|
document.addEventListener("click", enableAudio)
|
2021-11-05 19:57:33 +00:00
|
|
|
this.el.addEventListener("js:listen_now", () => this.play({sync: true}))
|
2021-11-05 00:49:19 +00:00
|
|
|
this.el.addEventListener("js:play_pause", () => {
|
2021-11-05 19:57:33 +00:00
|
|
|
if(this.player.paused){
|
|
|
|
this.play()
|
|
|
|
}
|
2021-11-05 00:49:19 +00:00
|
|
|
})
|
2021-11-06 03:02:31 +00:00
|
|
|
this.handleEvent("play", ({url, token, elapsed}) => {
|
2021-11-05 19:57:33 +00:00
|
|
|
this.playbackBeganAt = nowSeconds() - elapsed
|
2021-11-06 03:02:31 +00:00
|
|
|
let currentSrc = this.player.src.split("?")[0]
|
|
|
|
if(currentSrc === url && this.player.paused){
|
2021-11-05 19:57:33 +00:00
|
|
|
this.play({sync: true})
|
2021-11-06 03:02:31 +00:00
|
|
|
} else if(currentSrc !== url) {
|
|
|
|
this.player.src = `${url}?token=${token}`
|
2021-11-05 19:57:33 +00:00
|
|
|
this.play({sync: true})
|
|
|
|
}
|
2021-11-05 00:49:19 +00:00
|
|
|
})
|
2021-11-12 03:42:10 +00:00
|
|
|
this.handleEvent("pause", () => this.pause())
|
|
|
|
this.handleEvent("stop", () => this.stop())
|
2021-11-05 00:49:19 +00:00
|
|
|
},
|
|
|
|
|
2021-11-05 19:57:33 +00:00
|
|
|
play(opts = {}){
|
|
|
|
let {sync} = opts
|
2021-11-05 00:49:19 +00:00
|
|
|
this.player.play().then(() => {
|
2021-11-05 19:57:33 +00:00
|
|
|
if(sync){ this.player.currentTime = nowSeconds() - this.playbackBeganAt }
|
2021-11-05 00:49:19 +00:00
|
|
|
this.progressTimer = setInterval(() => this.updateProgress(), 100)
|
2021-11-08 19:52:45 +00:00
|
|
|
}, error => {
|
|
|
|
if(error.name === "NotAllowedError"){
|
|
|
|
execJS("#enable-audio", "data-js-show")
|
|
|
|
}
|
|
|
|
})
|
2021-11-05 00:49:19 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
pause(){
|
|
|
|
clearInterval(this.progressTimer)
|
2021-11-05 19:57:33 +00:00
|
|
|
this.player.pause()
|
2021-11-05 00:49:19 +00:00
|
|
|
},
|
|
|
|
|
2021-11-12 03:42:10 +00:00
|
|
|
stop(){
|
|
|
|
clearInterval(this.progressTimer)
|
|
|
|
this.player.pause()
|
|
|
|
this.player.currentTime = 0
|
|
|
|
this.updateProgress()
|
|
|
|
this.duration.innerText = ""
|
|
|
|
this.currentTime.innerText = ""
|
|
|
|
},
|
|
|
|
|
2021-11-05 00:49:19 +00:00
|
|
|
updateProgress(){
|
|
|
|
if(isNaN(this.player.duration)){ return false }
|
2021-11-10 19:29:53 +00:00
|
|
|
if(this.player.currentTime >= this.player.duration){
|
2021-11-12 03:42:10 +00:00
|
|
|
this.pushEvent("next_song_auto")
|
2021-11-10 19:29:53 +00:00
|
|
|
clearInterval(this.progressTimer)
|
|
|
|
return
|
|
|
|
}
|
2021-11-19 14:55:26 +00:00
|
|
|
this.progress.style.width = `${(this.player.currentTime / (this.player.duration) * 100)}%`
|
2021-11-05 00:49:19 +00:00
|
|
|
this.duration.innerText = this.formatTime(this.player.duration)
|
|
|
|
this.currentTime.innerText = this.formatTime(this.player.currentTime)
|
|
|
|
},
|
|
|
|
|
|
|
|
formatTime(seconds){ return new Date(1000 * seconds).toISOString().substr(14, 5) }
|
|
|
|
}
|
|
|
|
|
2021-09-02 18:00:57 +00:00
|
|
|
let csrfToken = document.querySelector("meta[name='csrf-token']").getAttribute("content")
|
|
|
|
let liveSocket = new LiveSocket("/live", Socket, {
|
2021-11-19 14:55:26 +00:00
|
|
|
hooks: Hooks,
|
2021-11-10 21:07:10 +00:00
|
|
|
params: {_csrf_token: csrfToken}
|
2021-09-02 18:00:57 +00:00
|
|
|
})
|
|
|
|
|
2021-11-22 21:25:41 +00:00
|
|
|
let routeUpdated = () => {
|
|
|
|
let target = document.querySelector("main h1") || document.querySelector("main")
|
|
|
|
if (target) {
|
2021-12-22 18:41:19 +00:00
|
|
|
let origTabIndex = target.tabIndex
|
|
|
|
target.tabIndex = -1
|
2021-11-22 21:25:41 +00:00
|
|
|
target.focus()
|
2021-12-22 18:41:19 +00:00
|
|
|
target.tabIndex = origTabIndex
|
2021-11-22 21:25:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-02 18:00:57 +00:00
|
|
|
// Show progress bar on live navigation and form submits
|
2022-01-14 16:05:41 +00:00
|
|
|
topbar.config({barColors: {0: "rgba(147, 51, 234, 1)"}, shadowColor: "rgba(0, 0, 0, .3)"})
|
2021-09-02 18:00:57 +00:00
|
|
|
window.addEventListener("phx:page-loading-start", info => topbar.show())
|
|
|
|
window.addEventListener("phx:page-loading-stop", info => topbar.hide())
|
|
|
|
|
2021-11-22 21:25:41 +00:00
|
|
|
// Accessible routing
|
2021-12-22 18:06:08 +00:00
|
|
|
window.addEventListener("phx:page-loading-stop", routeUpdated)
|
2021-11-22 21:25:41 +00:00
|
|
|
|
2021-11-05 00:49:19 +00:00
|
|
|
window.addEventListener("js:exec", e => e.target[e.detail.call](...e.detail.args))
|
2022-01-11 19:57:06 +00:00
|
|
|
window.addEventListener("phx:remove-el", e => document.getElementById(e.detail.id).remove())
|
2021-11-05 00:49:19 +00:00
|
|
|
|
2021-09-02 18:00:57 +00:00
|
|
|
// connect if there are any LiveViews on the page
|
2021-11-22 14:24:36 +00:00
|
|
|
liveSocket.getSocket().onOpen(() => execJS("#connection-status", "js-hide"))
|
|
|
|
liveSocket.getSocket().onError(() => execJS("#connection-status", "js-show"))
|
2021-09-02 18:00:57 +00:00
|
|
|
liveSocket.connect()
|
|
|
|
|
|
|
|
// expose liveSocket on window for web console debug logs and latency simulation:
|
|
|
|
// >> liveSocket.enableDebug()
|
|
|
|
// >> liveSocket.enableLatencySim(1000) // enabled for duration of browser session
|
|
|
|
// >> liveSocket.disableLatencySim()
|
|
|
|
window.liveSocket = liveSocket
|
2021-09-03 13:57:15 +00:00
|
|
|
|
|
|
|
|