mirror of
https://github.com/Sped0n/bridget.git
synced 2026-04-17 11:39:29 -07:00
116 lines
3.2 KiB
TypeScript
116 lines
3.2 KiB
TypeScript
import { delay, calcImageIndex, mouseToTransform } from './utils'
|
|
import { handleOnMove, globalIndex, globalIndexDec, globalIndexInc } from './desktop'
|
|
import { imagesArray, imagesArrayLen } from './dataFetch'
|
|
import { imgIndexSpanUpdate } from './indexDisp'
|
|
|
|
// get components of overlay
|
|
const overlayCursor = document
|
|
.getElementsByClassName('overlay_cursor')
|
|
.item(0) as HTMLDivElement
|
|
const innerContent = document
|
|
.getElementsByClassName('cursor_innerText')
|
|
.item(0) as HTMLDivElement
|
|
|
|
// set cursor text
|
|
const setCursorText = (text: string): void => {
|
|
innerContent.innerText = text
|
|
}
|
|
|
|
// overlay cursor event handler
|
|
const setTextPos = (e: MouseEvent): void => {
|
|
// overlayCursor.style.left = `${e.clientX}px`
|
|
// overlayCursor.style.top = `${e.clientY}px`
|
|
overlayCursor.style.transform = mouseToTransform(e.clientX, e.clientY, false, true)
|
|
}
|
|
|
|
// disable listeners
|
|
const disableListener = (): void => {
|
|
window.removeEventListener('mousemove', handleOverlayMouseMove)
|
|
overlayCursor.removeEventListener('click', handleOverlayClick)
|
|
}
|
|
|
|
// enable overlay
|
|
export const overlayEnable = (): void => {
|
|
overlayCursor.style.zIndex = '7'
|
|
setListener()
|
|
}
|
|
|
|
// disable overlay
|
|
export const overlayDisable = (): void => {
|
|
overlayCursor.style.zIndex = '-1'
|
|
setCursorText('')
|
|
disableListener()
|
|
// Add back previous self increment of global index (by handleOnMove)
|
|
globalIndexInc()
|
|
}
|
|
|
|
// handle close click
|
|
async function handleCloseClick(): Promise<void> {
|
|
overlayDisable()
|
|
await delay(2500)
|
|
window.addEventListener('mousemove', handleOnMove)
|
|
}
|
|
|
|
const handlePrevClick = (): void => {
|
|
globalIndexDec()
|
|
const imgIndex = calcImageIndex(globalIndex, imagesArrayLen)
|
|
imgIndexSpanUpdate(imgIndex + 1, imagesArrayLen)
|
|
}
|
|
|
|
const handleNextClick = (): void => {
|
|
globalIndexInc()
|
|
const imgIndex = calcImageIndex(globalIndex, imagesArrayLen)
|
|
imgIndexSpanUpdate(imgIndex + 1, imagesArrayLen)
|
|
}
|
|
|
|
const handleOverlayMouseMove = (e: MouseEvent): void => {
|
|
setTextPos(e)
|
|
const oneThird: number = Math.round(window.innerWidth / 3)
|
|
if (e.clientX < oneThird) {
|
|
setCursorText('PREV')
|
|
overlayCursor.dataset.status = 'PREV'
|
|
} else if (e.clientX < oneThird * 2) {
|
|
setCursorText('CLOSE')
|
|
overlayCursor.dataset.status = 'CLOSE'
|
|
} else {
|
|
setCursorText('NEXT')
|
|
overlayCursor.dataset.status = 'NEXT'
|
|
}
|
|
}
|
|
const handleOverlayClick = (): void => {
|
|
switch (overlayCursor.dataset.status) {
|
|
case 'PREV':
|
|
handlePrevClick()
|
|
break
|
|
case 'CLOSE':
|
|
void handleCloseClick()
|
|
break
|
|
case 'NEXT':
|
|
handleNextClick()
|
|
break
|
|
}
|
|
}
|
|
|
|
// set event listener
|
|
const setListener = (): void => {
|
|
window.addEventListener('mousemove', handleOverlayMouseMove, { passive: true })
|
|
overlayCursor.addEventListener('click', handleOverlayClick, { passive: true })
|
|
}
|
|
|
|
export const vwRefreshInit = (): void => {
|
|
window.addEventListener(
|
|
'resize',
|
|
() => {
|
|
// reset footer height
|
|
const r = document.querySelector(':root') as HTMLStyleElement
|
|
if (window.innerWidth > 768) {
|
|
r.style.setProperty('--footer-height', '38px')
|
|
} else {
|
|
r.style.setProperty('--footer-height', '31px')
|
|
}
|
|
// recenter image (only in overlay)
|
|
},
|
|
{ passive: true }
|
|
)
|
|
}
|