1
0
mirror of https://github.com/morris/vanilla-todo.git synced 2025-08-23 22:24:39 +02:00

add date picker, refactor event names, cleanups

This commit is contained in:
Morris Brodersen
2022-05-10 12:47:17 +02:00
parent 45e0f3899d
commit 77238353f9
18 changed files with 334 additions and 60 deletions

View File

@@ -0,0 +1,158 @@
import { AppIcon } from './AppIcon.js';
import { formatMonth } from './util.js';
const datesCell = `
<td><button class="app-button"></button></td>
`;
const datesRow = `
<tr>
${datesCell}
${datesCell}
${datesCell}
${datesCell}
${datesCell}
${datesCell}
${datesCell}
</tr>
`;
export function AppDatePicker(el) {
const now = new Date();
const state = {
year: now.getFullYear(),
month: now.getMonth() + 1,
show: false,
};
el.innerHTML = `
<h4 class="header">
<button class="app-button -circle previousmonth">
<i class="app-icon" data-id="chevron-left-16"></i>
</button>
<span class="month"></span>
<button class="app-button -circle nextmonth">
<i class="app-icon" data-id="chevron-right-16"></i>
</button>
</h4>
<table class="dates">
<thead>
<tr>
<th>Su</th>
<th>Mo</th>
<th>Tu</th>
<th>We</th>
<th>Th</th>
<th>Fr</th>
<th>Sa</th>
<tr>
</thead>
<tbody>
${datesRow}
${datesRow}
${datesRow}
${datesRow}
${datesRow}
</tbody>
</div>
`;
el.querySelectorAll('.app-icon').forEach(AppIcon);
el.addEventListener('toggleDatePicker', (e) =>
update({ show: e.detail ?? !state.show })
);
el.addEventListener('setMonth', (e) => update(e.detail));
el.querySelector('.previousmonth').addEventListener('click', previousMonth);
el.querySelector('.nextmonth').addEventListener('click', nextMonth);
el.addEventListener('click', (e) => {
if (!e.target.matches('.app-button')) return;
update({ show: false });
el.dispatchEvent(
new CustomEvent('pickDate', {
detail: new Date(
e.target.dataset.year,
e.target.dataset.month - 1,
e.target.dataset.day
),
bubbles: true,
})
);
});
function previousMonth() {
update(
state.month > 1
? {
year: state.year,
month: state.month - 1,
}
: {
year: state.year - 1,
month: 12,
}
);
}
function nextMonth() {
update(
state.month < 12
? {
year: state.year,
month: state.month + 1,
}
: {
year: state.year + 1,
month: 1,
}
);
}
function update(next) {
Object.assign(state, next);
el.classList.toggle('-show', state.show);
const now = new Date();
const first = new Date(state.year, state.month - 1, 1);
el.querySelector('.month').innerHTML = `${formatMonth(
first
)} ${first.getFullYear()}`;
let current = new Date(first);
current.setDate(1 - current.getDay());
const datesBody = el.querySelector('.dates > tbody');
for (let i = 0; i < 35; ++i) {
const row = Math.floor(i / 7);
const column = i % 7;
const cell = datesBody.children[row].children[column];
const button = cell.children[0];
button.innerHTML = current.getDate();
button.dataset.year = current.getFullYear();
button.dataset.month = current.getMonth() + 1;
button.dataset.day = current.getDate();
button.classList.toggle(
'-highlight',
current.getFullYear() === now.getFullYear() &&
current.getMonth() === now.getMonth() &&
current.getDate() === now.getDate()
);
current.setDate(current.getDate() + 1);
}
}
update();
}