All checks were successful
Build and Deploy / build-and-push (push) Successful in 1m15s
474 lines
17 KiB
JavaScript
474 lines
17 KiB
JavaScript
import {
|
|
addDays,
|
|
sameDay,
|
|
startOfDay,
|
|
startOfMonth,
|
|
startOfWeekMonday,
|
|
weekContains,
|
|
} from '../services/dateUtils.js';
|
|
|
|
export const CALENDAR_MONTHS_LONG = [
|
|
'Styczeń', 'Luty', 'Marzec', 'Kwiecień', 'Maj', 'Czerwiec',
|
|
'Lipiec', 'Sierpień', 'Wrzesień', 'Październik', 'Listopad', 'Grudzień',
|
|
];
|
|
|
|
export const CALENDAR_MONTHS_SHORT = [
|
|
'sty', 'lut', 'mar', 'kwi', 'maj', 'cze',
|
|
'lip', 'sie', 'wrz', 'paź', 'lis', 'gru',
|
|
];
|
|
|
|
export const CALENDAR_WEEKDAYS_SHORT = ['pn', 'wt', 'śr', 'cz', 'pt', 'so', 'nd'];
|
|
export const CALENDAR_DAY_ATTR = 'data-calendar-day';
|
|
export const CALENDAR_HANDLE_CLASS = 'block h-1 w-10 rounded-full bg-[rgb(var(--text-subdued-rgb))]/75';
|
|
|
|
function getCalendarDayHTML(day, meta, dayState, dayAttr, theme = {}) {
|
|
const { mode, selectedDate } = meta;
|
|
const isSelected = selectedDate && sameDay(day, selectedDate);
|
|
const showIndicator = !!dayState.showIndicator;
|
|
const isDisabled = !!dayState.disabled;
|
|
const isDimmed = !!dayState.dimmed && !isSelected;
|
|
const defaultBg = 'rgb(var(--card-soft-rgb))';
|
|
const defaultBorder = 'rgb(var(--card-strong-rgb))';
|
|
const defaultText = 'rgb(var(--text-body-soft-rgb))';
|
|
|
|
let bg;
|
|
let borderColor;
|
|
let text;
|
|
let borderClass = 'border';
|
|
|
|
if (isSelected) {
|
|
bg = theme.selectedBg || 'rgb(var(--card-rgb))';
|
|
borderColor = theme.selectedBorder || 'rgb(var(--border-input-rgb))';
|
|
text = theme.selectedText || 'rgb(var(--text-emphasis-rgb))';
|
|
} else if (isDimmed) {
|
|
bg = theme.dimmedBg ?? 'transparent';
|
|
text = theme.dimText || 'rgb(var(--text-faint-rgb))';
|
|
borderClass = 'border-0';
|
|
} else {
|
|
bg = theme.bg || defaultBg;
|
|
borderColor = theme.border || defaultBorder;
|
|
text = theme.text || defaultText;
|
|
}
|
|
|
|
const dot = isSelected ? (theme.selectedDot || 'rgb(var(--text-emphasis-rgb))') : (theme.dot || 'rgb(var(--text-faint-rgb))');
|
|
const opacity = isDimmed ? String(theme.dimOpacity ?? 0.72) : '1';
|
|
const borderStyle = borderColor ? `border-color:${borderColor};` : 'border:none;';
|
|
const outerClass = `${mode === 'month' ? 'mx-auto ' : ''}flex h-[2.05rem] w-full min-w-0 max-w-full items-center justify-center rounded-full ${borderClass} text-xs font-medium transition-colors leading-tight overflow-hidden`;
|
|
const innerClass = mode === 'month'
|
|
? 'relative flex h-full w-full flex-col items-center justify-center'
|
|
: 'relative flex h-full w-full items-center justify-center';
|
|
const dotBottom = mode === 'month' ? '0.24rem' : '0.2rem';
|
|
const tagName = isDisabled ? 'div' : 'button';
|
|
const buttonAttrs = isDisabled ? '' : ` type="button" ${dayAttr}="${day.getTime()}"`;
|
|
|
|
return `
|
|
<${tagName}${buttonAttrs}
|
|
class="${outerClass}"
|
|
style="background:${bg};${borderStyle}color:${text};opacity:${opacity};">
|
|
<span class="${innerClass}">
|
|
<span class="text-[13px] font-semibold leading-none ${showIndicator ? '-translate-y-[0.18rem]' : ''}">${day.getDate()}</span>
|
|
${showIndicator
|
|
? `<span class="absolute left-1/2 w-1 h-1 -translate-x-1/2 rounded-full opacity-75" style="bottom:${dotBottom};background:${dot};" aria-hidden="true"></span>`
|
|
: ''}
|
|
</span>
|
|
</${tagName}>
|
|
`;
|
|
}
|
|
|
|
function getMonthCells(monthAnchor) {
|
|
const first = startOfMonth(monthAnchor);
|
|
const startGrid = startOfWeekMonday(first);
|
|
const cells = [];
|
|
for (let i = 0; i < 42; i++) cells.push(addDays(startGrid, i));
|
|
while (cells.length > 35 && cells.slice(-7).every((day) => day.getMonth() !== first.getMonth())) {
|
|
cells.splice(-7);
|
|
}
|
|
return { cells, month: first.getMonth() };
|
|
}
|
|
|
|
function getDayState(day, meta, resolveDayState) {
|
|
if (typeof resolveDayState !== 'function') {
|
|
return {
|
|
disabled: false,
|
|
dimmed: meta.mode === 'month' && !meta.inCurrentMonth,
|
|
showIndicator: false,
|
|
};
|
|
}
|
|
|
|
const resolved = resolveDayState(day, meta) || {};
|
|
return {
|
|
disabled: !!resolved.disabled,
|
|
dimmed: !!resolved.dimmed,
|
|
showIndicator: !!resolved.showIndicator,
|
|
};
|
|
}
|
|
|
|
export function createCalendarWeekdayHeaderHTML(labels = CALENDAR_WEEKDAYS_SHORT, {
|
|
wrapperClass = 'grid grid-cols-7 gap-1.5 text-center text-[8px] font-medium text-gray-400 uppercase tracking-wide mb-1 leading-none',
|
|
} = {}) {
|
|
return `
|
|
<div class="${wrapperClass}">
|
|
${labels.map((label) => `<div>${label}</div>`).join('')}
|
|
</div>
|
|
`;
|
|
}
|
|
|
|
export function createCalendarTopbarHTML({
|
|
todayId,
|
|
wrapperClass = 'px-4 pt-4 pb-3 flex items-center justify-end',
|
|
controlsStyle = 'background:rgb(var(--card-soft-rgb));border-color:rgb(var(--card-strong-rgb));',
|
|
todayButtonActiveClass = 'h-full shrink-0 inline-flex min-w-[5.75rem] max-w-[9rem] items-center justify-center rounded-full bg-transparent px-3 text-[10px] font-semibold leading-none tabular-nums text-[rgb(var(--text-body-soft-rgb))] active:bg-transparent whitespace-nowrap',
|
|
todayButtonDimClass = 'h-full shrink-0 inline-flex items-center justify-center rounded-full px-3 text-[10px] font-semibold leading-none text-[rgb(var(--text-faint-rgb))] cursor-default',
|
|
}) {
|
|
return `
|
|
<div class="${wrapperClass}">
|
|
<div class="flex h-[2.05rem] min-w-0 max-w-[min(100%,20rem)] items-center justify-center rounded-full border" style="${controlsStyle}">
|
|
<button type="button" id="${todayId}"
|
|
class="${todayButtonActiveClass}"
|
|
data-cal-active-class="${todayButtonActiveClass}"
|
|
data-cal-dim-class="${todayButtonDimClass}">
|
|
</button>
|
|
</div>
|
|
</div>
|
|
`;
|
|
}
|
|
|
|
export function formatCalendarMonthYear(date) {
|
|
return `${CALENDAR_MONTHS_LONG[date.getMonth()]} ${date.getFullYear()}`;
|
|
}
|
|
|
|
export function formatCalendarSelectedDate(date) {
|
|
return `${date.getDate()} ${CALENDAR_MONTHS_SHORT[date.getMonth()]} ${date.getFullYear()}`;
|
|
}
|
|
|
|
export function isCalendarOnToday(mode, weekStart, monthAnchor, selectedDate) {
|
|
const today = startOfDay(new Date());
|
|
if (!sameDay(selectedDate, today)) return false;
|
|
if (mode === 'week') return weekContains(weekStart, today);
|
|
return startOfMonth(monthAnchor).getTime() === startOfMonth(today).getTime();
|
|
}
|
|
|
|
/**
|
|
* Środkowy przycisk pokazuje wybraną datę; działa jak „Dziś” (skok do bieżącego okresu).
|
|
* Styl pozostaje jak aktywny — bez wyciszania przy isOnToday.
|
|
*/
|
|
export function syncCalendarTodayButton(buttonEl, isOnToday, selectedDate, options = {}) {
|
|
if (!buttonEl) return;
|
|
const {
|
|
ariaLabelGo = 'Przejdź do dzisiejszego dnia',
|
|
ariaLabelCurrent = 'Widok jest ustawiony na bieżący okres',
|
|
} = options;
|
|
const active = buttonEl.dataset.calActiveClass
|
|
|| 'h-full shrink-0 inline-flex min-w-[5.75rem] max-w-[9rem] items-center justify-center rounded-full bg-transparent px-3 text-[10px] font-semibold leading-none tabular-nums text-[rgb(var(--text-body-soft-rgb))] active:bg-transparent whitespace-nowrap';
|
|
if (selectedDate != null) {
|
|
buttonEl.textContent = formatCalendarSelectedDate(selectedDate);
|
|
}
|
|
buttonEl.className = active;
|
|
buttonEl.removeAttribute('disabled');
|
|
buttonEl.setAttribute('aria-disabled', isOnToday ? 'true' : 'false');
|
|
buttonEl.setAttribute('aria-label', isOnToday ? ariaLabelCurrent : ariaLabelGo);
|
|
}
|
|
|
|
export function renderCalendarGrid({
|
|
gridEl,
|
|
mode,
|
|
anchorDate,
|
|
selectedDate,
|
|
resolveDayState,
|
|
dayAttr = CALENDAR_DAY_ATTR,
|
|
theme,
|
|
}) {
|
|
if (!gridEl) return;
|
|
|
|
if (mode === 'week') {
|
|
const weekStart = startOfWeekMonday(anchorDate);
|
|
const cells = [];
|
|
for (let i = 0; i < 7; i++) {
|
|
const day = addDays(weekStart, i);
|
|
const meta = {
|
|
mode,
|
|
selectedDate,
|
|
inCurrentMonth: true,
|
|
};
|
|
cells.push(getCalendarDayHTML(day, meta, getDayState(day, meta, resolveDayState), dayAttr, theme));
|
|
}
|
|
gridEl.innerHTML = cells.join('');
|
|
return;
|
|
}
|
|
|
|
const { cells, month } = getMonthCells(anchorDate);
|
|
gridEl.innerHTML = cells.map((day) => {
|
|
const meta = {
|
|
mode,
|
|
selectedDate,
|
|
inCurrentMonth: day.getMonth() === month,
|
|
};
|
|
return getCalendarDayHTML(day, meta, getDayState(day, meta, resolveDayState), dayAttr, theme);
|
|
}).join('');
|
|
}
|
|
|
|
export function renderCollapsibleCalendar({
|
|
weekGridEl,
|
|
monthGridEl,
|
|
weekAnchorDate,
|
|
monthAnchorDate,
|
|
selectedDate,
|
|
resolveDayState,
|
|
dayAttr = CALENDAR_DAY_ATTR,
|
|
}) {
|
|
renderCalendarGrid({
|
|
gridEl: weekGridEl,
|
|
mode: 'week',
|
|
anchorDate: weekAnchorDate,
|
|
selectedDate,
|
|
resolveDayState,
|
|
dayAttr,
|
|
});
|
|
renderCalendarGrid({
|
|
gridEl: monthGridEl,
|
|
mode: 'month',
|
|
anchorDate: monthAnchorDate,
|
|
selectedDate,
|
|
resolveDayState,
|
|
dayAttr,
|
|
});
|
|
}
|
|
|
|
export function syncCollapsibleCalendarMode({
|
|
mode,
|
|
weekWrapEl,
|
|
monthWrapEl,
|
|
handleEl,
|
|
activePaddingBottom = '0.75rem',
|
|
weekMaxHeight = '10rem',
|
|
monthMaxHeight = '17.25rem',
|
|
}) {
|
|
if (weekWrapEl) {
|
|
weekWrapEl.style.maxHeight = mode === 'week' ? weekMaxHeight : '0';
|
|
weekWrapEl.style.opacity = mode === 'week' ? '1' : '0';
|
|
weekWrapEl.style.paddingBottom = mode === 'week' ? activePaddingBottom : '0';
|
|
}
|
|
if (monthWrapEl) {
|
|
monthWrapEl.style.maxHeight = mode === 'month' ? monthMaxHeight : '0';
|
|
monthWrapEl.style.opacity = mode === 'month' ? '1' : '0';
|
|
monthWrapEl.style.paddingBottom = mode === 'month' ? activePaddingBottom : '0';
|
|
}
|
|
if (handleEl) handleEl.className = CALENDAR_HANDLE_CLASS;
|
|
}
|
|
|
|
export function bindCalendarDayClicks(containerEl, onSelect, dayAttr = CALENDAR_DAY_ATTR) {
|
|
if (!containerEl || typeof onSelect !== 'function') return;
|
|
containerEl.addEventListener('click', (event) => {
|
|
const button = event.target.closest(`[${dayAttr}]`);
|
|
if (!button || !containerEl.contains(button)) return;
|
|
const ts = Number(button.getAttribute(dayAttr));
|
|
if (!Number.isFinite(ts)) return;
|
|
onSelect(new Date(ts), button, event);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Binds a carousel-style horizontal swipe on zoneEl. Swipe right → onPrev,
|
|
* swipe left → onNext. Pass `renderGhost(ghostGridEl, direction)` to render
|
|
* adjacent periods that appear alongside the zone during the gesture. The
|
|
* callback can return `false` to block that direction (ghost not added).
|
|
* Returns an unbind function.
|
|
*/
|
|
export function bindCalendarHorizontalSwipe(zoneEl, {
|
|
onPrev,
|
|
onNext,
|
|
renderGhost,
|
|
threshold = 40,
|
|
animationMs = 260,
|
|
} = {}) {
|
|
if (!zoneEl) return () => {};
|
|
|
|
let ptrId = null;
|
|
let startX = 0;
|
|
let startY = 0;
|
|
let moved = false;
|
|
let axisLocked = null;
|
|
let suppressClickUntil = 0;
|
|
let animatingNav = false;
|
|
|
|
let wrapWidth = 0;
|
|
let prevGhost = null;
|
|
let nextGhost = null;
|
|
let savedStyles = null;
|
|
let carouselActive = false;
|
|
|
|
const prevTouchAction = zoneEl.style.touchAction;
|
|
const prevUserSelect = zoneEl.style.userSelect;
|
|
zoneEl.style.touchAction = 'pan-y';
|
|
zoneEl.style.userSelect = 'none';
|
|
|
|
const buildGhost = (direction) => {
|
|
if (typeof renderGhost !== 'function') return null;
|
|
const ghost = zoneEl.cloneNode(false);
|
|
ghost.removeAttribute('id');
|
|
ghost.style.position = 'absolute';
|
|
ghost.style.top = '0';
|
|
ghost.style.width = '100%';
|
|
ghost.style.pointerEvents = 'none';
|
|
ghost.setAttribute('aria-hidden', 'true');
|
|
let ok = true;
|
|
try {
|
|
const res = renderGhost(ghost, direction);
|
|
if (res === false) ok = false;
|
|
} catch (_) { ok = false; }
|
|
return ok ? ghost : null;
|
|
};
|
|
|
|
const activateCarousel = () => {
|
|
if (typeof renderGhost !== 'function') return;
|
|
wrapWidth = zoneEl.getBoundingClientRect().width;
|
|
if (wrapWidth <= 0) return;
|
|
const parentEl = zoneEl.parentElement;
|
|
savedStyles = {
|
|
position: zoneEl.style.position,
|
|
overflow: zoneEl.style.overflow,
|
|
parentEl,
|
|
parentOverflow: parentEl ? parentEl.style.overflow : '',
|
|
};
|
|
zoneEl.style.position = 'relative';
|
|
zoneEl.style.overflow = 'visible';
|
|
if (parentEl) parentEl.style.overflow = 'hidden';
|
|
|
|
prevGhost = buildGhost('prev');
|
|
if (prevGhost) {
|
|
prevGhost.style.left = `-${wrapWidth}px`;
|
|
zoneEl.appendChild(prevGhost);
|
|
}
|
|
nextGhost = buildGhost('next');
|
|
if (nextGhost) {
|
|
nextGhost.style.left = `${wrapWidth}px`;
|
|
zoneEl.appendChild(nextGhost);
|
|
}
|
|
|
|
zoneEl.style.willChange = 'transform';
|
|
zoneEl.style.transition = 'none';
|
|
carouselActive = true;
|
|
};
|
|
|
|
const clearCarousel = () => {
|
|
if (prevGhost?.parentNode) prevGhost.parentNode.removeChild(prevGhost);
|
|
if (nextGhost?.parentNode) nextGhost.parentNode.removeChild(nextGhost);
|
|
prevGhost = null;
|
|
nextGhost = null;
|
|
if (savedStyles) {
|
|
zoneEl.style.position = savedStyles.position;
|
|
zoneEl.style.overflow = savedStyles.overflow;
|
|
if (savedStyles.parentEl) savedStyles.parentEl.style.overflow = savedStyles.parentOverflow;
|
|
savedStyles = null;
|
|
}
|
|
zoneEl.style.transition = '';
|
|
zoneEl.style.transform = '';
|
|
zoneEl.style.willChange = '';
|
|
carouselActive = false;
|
|
};
|
|
|
|
const setTranslate = (x, ms) => {
|
|
zoneEl.style.transition = ms ? `transform ${ms}ms ease` : 'none';
|
|
zoneEl.style.transform = `translate3d(${x}px, 0, 0)`;
|
|
};
|
|
|
|
const onDown = (e) => {
|
|
if (ptrId !== null || animatingNav) return;
|
|
if (e.pointerType === 'mouse' && e.button !== 0) return;
|
|
startX = e.clientX;
|
|
startY = e.clientY;
|
|
ptrId = e.pointerId;
|
|
moved = false;
|
|
axisLocked = null;
|
|
try { zoneEl.setPointerCapture(e.pointerId); } catch (_) {}
|
|
if (e.pointerType === 'mouse') e.preventDefault();
|
|
};
|
|
|
|
const onMove = (e) => {
|
|
if (e.pointerId !== ptrId) return;
|
|
const dx = e.clientX - startX;
|
|
const dy = e.clientY - startY;
|
|
if (!moved && (Math.abs(dx) > 6 || Math.abs(dy) > 6)) {
|
|
moved = true;
|
|
axisLocked = Math.abs(dx) >= Math.abs(dy) ? 'x' : 'y';
|
|
if (axisLocked === 'x') activateCarousel();
|
|
}
|
|
if (axisLocked === 'x' && carouselActive) {
|
|
let tx = dx;
|
|
if (dx > 0 && !prevGhost) tx = dx * 0.15;
|
|
if (dx < 0 && !nextGhost) tx = dx * 0.15;
|
|
setTranslate(tx, 0);
|
|
}
|
|
};
|
|
|
|
const onUp = (e) => {
|
|
if (e.pointerId !== ptrId) return;
|
|
const dx = e.clientX - startX;
|
|
ptrId = null;
|
|
|
|
if (!moved || axisLocked !== 'x' || !carouselActive) {
|
|
if (carouselActive) {
|
|
setTranslate(0, animationMs);
|
|
setTimeout(clearCarousel, animationMs + 20);
|
|
}
|
|
return;
|
|
}
|
|
|
|
const directionGhost = dx > 0 ? prevGhost : nextGhost;
|
|
const handler = dx > 0 ? onPrev : onNext;
|
|
const passes = Math.abs(dx) >= threshold
|
|
&& directionGhost
|
|
&& typeof handler === 'function';
|
|
|
|
if (!passes) {
|
|
setTranslate(0, animationMs);
|
|
setTimeout(clearCarousel, animationMs + 20);
|
|
return;
|
|
}
|
|
|
|
suppressClickUntil = performance.now() + 500;
|
|
animatingNav = true;
|
|
const targetX = dx > 0 ? wrapWidth : -wrapWidth;
|
|
setTranslate(targetX, animationMs);
|
|
setTimeout(() => {
|
|
clearCarousel();
|
|
handler();
|
|
animatingNav = false;
|
|
}, animationMs);
|
|
};
|
|
|
|
const onClickCapture = (ev) => {
|
|
if (performance.now() < suppressClickUntil) {
|
|
ev.stopPropagation();
|
|
ev.preventDefault();
|
|
suppressClickUntil = 0;
|
|
}
|
|
};
|
|
|
|
const onCancel = () => {
|
|
ptrId = null;
|
|
moved = false;
|
|
if (carouselActive) {
|
|
setTranslate(0, animationMs);
|
|
setTimeout(clearCarousel, animationMs + 20);
|
|
}
|
|
};
|
|
|
|
zoneEl.addEventListener('pointerdown', onDown);
|
|
zoneEl.addEventListener('pointermove', onMove);
|
|
zoneEl.addEventListener('pointerup', onUp);
|
|
zoneEl.addEventListener('pointercancel', onCancel);
|
|
zoneEl.addEventListener('click', onClickCapture, { capture: true });
|
|
|
|
return () => {
|
|
zoneEl.removeEventListener('pointerdown', onDown);
|
|
zoneEl.removeEventListener('pointermove', onMove);
|
|
zoneEl.removeEventListener('pointerup', onUp);
|
|
zoneEl.removeEventListener('pointercancel', onCancel);
|
|
zoneEl.removeEventListener('click', onClickCapture, { capture: true });
|
|
zoneEl.style.touchAction = prevTouchAction;
|
|
zoneEl.style.userSelect = prevUserSelect;
|
|
if (carouselActive) clearCarousel();
|
|
};
|
|
}
|