mirror of
https://github.com/Sped0n/bridget.git
synced 2026-04-14 10:09:31 -07:00
52 lines
1.3 KiB
TypeScript
52 lines
1.3 KiB
TypeScript
import { duper } from './utils'
|
|
import { setStackDepth } from './desktop'
|
|
|
|
// get threshold display element
|
|
const thresholdDisp = document.getElementsByClassName('thid').item(0) as HTMLSpanElement
|
|
|
|
// threshold data
|
|
const threshold: number[] = [0, 40, 80, 120, 160, 200]
|
|
export const thresholdSensitivityArray: number[] = [100, 40, 18, 14, 9, 5]
|
|
export let thresholdIndex: number = 2
|
|
|
|
export const stackDepthArray: number[] = [15, 8, 5, 5, 5, 5]
|
|
|
|
// update inner text of threshold display element
|
|
const thresholdUpdate = (): void => {
|
|
thresholdDisp.innerText = duper(threshold[thresholdIndex])
|
|
}
|
|
|
|
const stackDepthUpdate = (): void => {
|
|
setStackDepth(stackDepthArray[thresholdIndex])
|
|
}
|
|
|
|
// threshold control initialization
|
|
export const thresholdCtlInit = (): void => {
|
|
thresholdUpdate()
|
|
const dec = document.getElementById('thresholdDec') as HTMLButtonElement
|
|
dec.addEventListener(
|
|
'click',
|
|
function () {
|
|
if (thresholdIndex > 0) {
|
|
thresholdIndex--
|
|
thresholdUpdate()
|
|
stackDepthUpdate()
|
|
}
|
|
},
|
|
{ passive: true }
|
|
)
|
|
|
|
const inc = document.getElementById('thresholdInc') as HTMLButtonElement
|
|
inc.addEventListener(
|
|
'click',
|
|
function () {
|
|
if (thresholdIndex < 5) {
|
|
thresholdIndex++
|
|
thresholdUpdate()
|
|
stackDepthUpdate()
|
|
}
|
|
},
|
|
{ passive: true }
|
|
)
|
|
}
|