diff --git a/js/index.js b/js/index.js index 47004ed..3a1ff94 100644 --- a/js/index.js +++ b/js/index.js @@ -22,6 +22,23 @@ const isToday = timestamp => { return date.getTime() === today.getTime() } +const getDdMmYyyy = timestamp => { + const date = new Date(timestamp * 1000) + + let day = date.getDate() + let month = date.getMonth() + 1 + const year = date.getFullYear() + + if (day < 10) { + day = '0' + day; + } + if (month < 10) { + month = '0' + month; + } + + return `${day}.${month}.${year}` +} + const getTokens = async authCode => { try { const response = await fetch(`https://${DOMAIN}/oauth2/access_token`, { @@ -184,6 +201,9 @@ const getLeadInfo = async id => { else leadDiv.style.background = '#ff0' + const date = getDdMmYyyy(lead.closest_task_at) + console.log(date) + leadDiv.classList.remove('loading') }