(function () {
// CONFIG
const EFFECTIVE_RATE = 3
const SERVICE_FEE = 19.95
const IDENTIFIER = "#savings-calc"
// DOM
const container = document.getElementById('savings-calc-container')
// DATA
const processingData = []
// Build DOM
function renderCalculator() {
const headingHTML = `
`
const calculatorHTML = `
Monthly Processing Volume
`
container.insertAdjacentHTML('afterbegin', headingHTML)
container.insertAdjacentHTML('beforeend', calculatorHTML)
addRangeEventListeners()
console.log('calculator built, v2')
}
function addRangeEventListeners() {
const rangeSliderEls = document.querySelectorAll(`${IDENTIFIER} [type="range"]`);
console.log('range sliders', rangeSliderEls)
rangeSliderEls.forEach(range => {
handleRangeChange(range)
getProcessingData(range)
renderDashboardResults()
})
rangeSliderEls.forEach(range => {
range.addEventListener('input', (e) => {
setRangeDisplay(e.target)
getProcessingData(range)
renderDashboardResults()
})
})
}
const handleRangeChange = (range) => {
let isChanging = false;
console.log(range , isChanging)
const setCSSProperty = () => {
const percent =
((range.value - range.min) /
(range.max - range.min)) *
100;
range.style.setProperty("--webkitProgressPercent", `${percent}%`);
}
// Set event listeners
const handleMove = () => {
if (!isChanging) return;
setCSSProperty();
};
const handleUpAndLeave = () => isChanging = false;
const handleDown = () => isChanging = true;
range.addEventListener("mousemove", handleMove);
range.addEventListener("mousedown", handleDown);
range.addEventListener("mouseup", handleUpAndLeave);
range.addEventListener("mouseleave", handleUpAndLeave);
range.addEventListener("click", setCSSProperty);
// Init input
setCSSProperty();
}
function getProcessingData(range) {
pushToArray(processingData, {name: range.name, value: range.value})
}
function setRangeDisplay(range) {
const id = range.id
let value = formatter.format(range.value)
const output = document.querySelector(`output[for="${id}"]`)
output.innerText = value
}
function renderDashboardResults() {
const monthlyDisplay = document.querySelector(`${IDENTIFIER} .dashboard #monthly`);
const annualDisplay = document.querySelector(`${IDENTIFIER} .dashboard #annual`);
const effectiveRateDisplay = document.querySelector(`${IDENTIFIER} .dashboard #rate`);
const monthlySavings = getMonthlySavings()
const annualSavings = getMonthlySavings() * 12 // get annual savings
const effectiveRate = getEffectiveRate()
monthlyDisplay.innerText = formatter.format(monthlySavings)
annualDisplay.innerText = formatter.format(annualSavings)
effectiveRateDisplay.innerText = `${effectiveRate.toFixed(2)}%`
}
function getEffectiveRate() {
let volume = getObjValue(processingData, 'volume')
let fees = getObjValue(processingData, 'fees')
return volume == 0 || fees == 0 ? EFFECTIVE_RATE : (fees / volume) * 100
}
function getMonthlySavings() {
let monthlySavings = 0
let volume = getObjValue(processingData, 'volume')
monthlySavings = volume * (getEffectiveRate() / 100) - SERVICE_FEE
return monthlySavings < 0 ? 0 : monthlySavings
}
// UTILITIES
function getObjValue(obj, key) {
let value = obj.find(({name}) => name === key)?.value
value = typeof value == 'undefined' ? 0 : value // if slider hasn't been used, set value to 0
return value
}
function pushToArray(arr, obj) {
const index = arr.findIndex((e) => e.name === obj.name);
if (index === -1) {
arr.push(obj);
} else {
arr[index] = obj;
}
}
/* format currency */
const formatter = new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD',
});
// init
function init() {
console.log('init calc');
renderCalculator()
}
window.addEventListener('DOMContentLoaded', () => {
init()
})
})();