Add to DD.MM.YYYY function
This commit is contained in:
parent
a870255ba6
commit
b9fb6492af
20
js/index.js
20
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')
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user