Finished js and css status and second row

This commit is contained in:
root 2025-03-31 02:11:21 +05:00
parent b9fb6492af
commit 98bc9c6f4b
2 changed files with 45 additions and 8 deletions

View File

@ -11,6 +11,8 @@ body {
table { table {
width: 100%; width: 100%;
border-collapse: collapse;
border-spacing: 0;
} }
tr { tr {
@ -56,6 +58,10 @@ td {
display: none; display: none;
} }
.main-row td {
border-top: 2px solid #000;
}
#loader { #loader {
text-align: center; text-align: center;
} }

View File

@ -161,6 +161,7 @@ const getAllLeads = async () => {
console.log(lead) console.log(lead)
const row = document.getElementById('table').insertRow() const row = document.getElementById('table').insertRow()
row.id = `lead-${lead.lead.id}` row.id = `lead-${lead.lead.id}`
row.classList.add('main-row')
row.onclick = async () => await getLeadInfo(lead.lead.id) row.onclick = async () => await getLeadInfo(lead.lead.id)
const cell1 = row.insertCell() const cell1 = row.insertCell()
@ -189,20 +190,50 @@ const getAllLeads = async () => {
const getLeadInfo = async id => { const getLeadInfo = async id => {
const leadDiv = document.getElementById(`lead-${id}`) const leadDiv = document.getElementById(`lead-${id}`)
const leadDivInfo = document.getElementById(`leadinfo-${id}`)
if (leadDivInfo) {
leadDivInfo.remove()
return
}
leadDiv.classList.add('loading') leadDiv.classList.add('loading')
const lead = await getLead(id) const lead = await getLead(id)
console.log(lead)
if (lead.closest_task_at == null || lead.closest_task_at < time()) const row = document.getElementById('table').insertRow(leadDiv.rowIndex + 1)
leadDiv.style.background = '#f00' row.id = `leadinfo-${id}`
else if (isToday(lead.closest_task_at)) row.onclick = async () => await getLeadInfo(id)
leadDiv.style.background = '#0f0'
else const cell0 = row.insertCell()
leadDiv.style.background = '#ff0' const cell1 = row.insertCell()
const cell2 = row.insertCell()
const date = getDdMmYyyy(lead.closest_task_at) const date = getDdMmYyyy(lead.closest_task_at)
console.log(date) cell1.textContent = `Дата: ${date}`
cell1.colSpan = 2
const status = lead.closest_task_at === null || lead.closest_task_at < time()
? '#f00'
: isToday(lead.closest_task_at)
? '#0f0'
: '#ff0'
const svgns = "http://www.w3.org/2000/svg"
const svg = document.createElementNS(svgns, "svg")
svg.setAttribute("width", "16")
svg.setAttribute("height", "16")
const circle = document.createElementNS(svgns, "circle")
circle.setAttribute("cx", "8")
circle.setAttribute("cy", "8")
circle.setAttribute("r", "8")
circle.setAttribute("fill", status)
svg.appendChild(circle)
cell2.textContent = 'Статус: '
cell2.append(svg)
cell2.colSpan = 2
leadDiv.classList.remove('loading') leadDiv.classList.remove('loading')
} }