mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
8af8e806d7
* refactor(assets): integrate UnoCSS for utility classes - Add UnoCSS with presetWind3 as pre-built CSS (assets/css/unocss.css) - Add uno.config.ts with theme breakpoints, colors, safelist, and blocklist - Replace SCSS utility classes with UnoCSS atomic classes: - d-none → hidden - d-none-desktop → sm:hidden - d-none-mobile → max-sm:hidden - order-* (safelist) - variant-numeric → tabular-nums lining-nums - Rename .blur to .is-blur to avoid UnoCSS conflict - Add @unocss-skip comments for SVG path elements to prevent false positives - Remove redundant _utilities.scss ($orders map) and simplify _common.scss - Update documentation (CLAUDE.md, CONTRIBUTING.md, copilot-instructions.md) * refactor(assets): replace 404/offline SCSS with UnoCSS atomic classes - Replace _404.scss styles with atomic classes on template elements - Replace _offline.scss styles with atomic classes on template elements - Keep selectors (id/class) as user customization hooks - Delete assets/scss/pages/_404.scss and _offline.scss * refactor(assets): simplify SCSS with UnoCSS atomic classes - Replace _bilibili.scss with atomic classes (relative, aspect-video, inset-0) - Replace _version.scss with atomic classes (whitespace-nowrap, align-text-bottom) - Replace _noscript-warning.scss with atomic classes (bg-danger, fixed, z-200) - Add semantic z-index shortcuts (z-hide, z-auto, z-base, z-loading, z-sticky, z-fixed) - Add h1-h6 to UnoCSS blocklist to prevent false positives - Use Source path for UnoCSS CSS loading to enable Hugo minify * chore(assets): minor SCSS and template cleanup * fix(assets): add secondary color to UnoCSS theme config text-secondary was broken because the secondary color mapping was missing. * feat(assets): add UnoCSS presetIcons support and z-index shortcuts - Add presetIcons preset with empty collections (ready for custom icon sets) - Add @iconify/json and @iconify/utils devDependencies - Add semantic z-index shortcuts (z-hide, z-auto, z-base, z-loading, z-sticky, z-fixed) - Add secondary color to UnoCSS theme config * refactor(assets): replace SVG icons with UnoCSS presetIcons - Add Lucide and Octicons icon collections to presetIcons config - Replace arrow-up/down and enter-key SVGs with Lucide icons - Replace alert icons (info, light-bulb, report, alert, stop) with Octicons - Delete replaced SVG files from assets/images/icons/ - Keep custom SVGs (csdn, plume, rootme) * refactor(layouts): redesign 404 and offline pages with UnoCSS - Replace translate-y-[30vh] with self-stretch flex centering below header - Remove arbitrary values (text-[3.6rem], text-[1.8rem], etc.) - Restore @page print styles in _common.scss - Simplify offline page layout (icon + title + text) - Fix hardcoded #57606a → text-secondary
177 lines
6.6 KiB
TypeScript
177 lines
6.6 KiB
TypeScript
import type { CodeService, CoreService, EventsService, TocService } from '../core/tokens'
|
|
import { eventBus } from '../core/event-bus'
|
|
import { animateCSS, getScrollTop, isMobile, scrollIntoView } from '../utils'
|
|
|
|
/**
|
|
* Events module — scroll, resize, mask click, and print event handling.
|
|
*
|
|
* Responsibilities:
|
|
* - Throttled scroll handler for back-to-top button, header show/hide, and TOC active state sync.
|
|
* - Resize handler for TOC height and table wrapping recalculation.
|
|
* - Mask click handler to close search and menu drawers.
|
|
* - Print preparation handler.
|
|
*/
|
|
export class EventsModule implements EventsService {
|
|
#resizeTimeout: number | null = null
|
|
#newScrollTop = 0
|
|
#oldScrollTop = 0
|
|
|
|
constructor(
|
|
private readonly core: CoreService,
|
|
private readonly toc: TocService,
|
|
private readonly code: CodeService,
|
|
) {}
|
|
|
|
/** Bind scroll listener: auto-hide headers, reading progress, back-to-top, and TOC sync. */
|
|
onScroll() {
|
|
const ACCURACY = 50
|
|
const $autoHeaders: HTMLElement[] = []
|
|
const $backToTop = document.querySelector<HTMLElement>('.back-to-top')
|
|
const $readingProgressBar = document.querySelector<HTMLElement>('.reading-progress-bar')
|
|
if (document.body.dataset.headerDesktop === 'auto') {
|
|
$autoHeaders.push(document.getElementById('header-desktop')!)
|
|
}
|
|
if (document.body.dataset.headerMobile === 'auto') {
|
|
$autoHeaders.push(document.getElementById('header-mobile')!)
|
|
}
|
|
$backToTop?.addEventListener('click', () => {
|
|
scrollIntoView('body')
|
|
})
|
|
window.addEventListener('scroll', () => {
|
|
this.#newScrollTop = getScrollTop()
|
|
const scroll = this.#newScrollTop - this.#oldScrollTop
|
|
if (Math.abs(scroll) > ACCURACY) {
|
|
this.core.closeActiveMaskOverlay()
|
|
const isScrollingDown = scroll > 0
|
|
$autoHeaders.forEach(($header) => {
|
|
if (isScrollingDown) {
|
|
$header.classList.remove('header__fadeInDown')
|
|
animateCSS($header, ['header__fadeOutUp'], true)
|
|
}
|
|
else {
|
|
$header.classList.remove('header__fadeOutUp')
|
|
animateCSS($header, ['header__fadeInDown'], true)
|
|
}
|
|
})
|
|
}
|
|
else if (this.#newScrollTop <= 0) {
|
|
$autoHeaders.forEach(($header) => {
|
|
$header.classList.remove('header__fadeOutUp')
|
|
animateCSS($header, ['header__fadeInDown'], true)
|
|
})
|
|
}
|
|
const contentHeight = document.body.scrollHeight - window.innerHeight
|
|
const scrollPercent = Math.max(Math.min(100 * Math.max(this.#newScrollTop, 0) / contentHeight, 100), 0)
|
|
if ($readingProgressBar) {
|
|
$readingProgressBar.style.setProperty('--fi-progress', `${scrollPercent.toFixed(2)}%`)
|
|
}
|
|
if ($backToTop) {
|
|
if (scrollPercent > 1) {
|
|
$backToTop.classList.remove('hidden', 'animate__fadeOut')
|
|
animateCSS($backToTop, ['animate__fadeIn'], true)
|
|
}
|
|
else {
|
|
$backToTop.classList.remove('animate__fadeIn')
|
|
animateCSS($backToTop, ['animate__fadeOut'], true, () => {
|
|
$backToTop.classList.contains('animate__fadeOut') && $backToTop.classList.add('hidden')
|
|
})
|
|
}
|
|
$backToTop.style.setProperty('--fi-b2t-progress', scrollPercent.toFixed(2))
|
|
if (navigator.userAgent.toLowerCase().includes('firefox')) {
|
|
const dashoffset = 2 * Math.PI * 50 * (1 - scrollPercent / 100)
|
|
$backToTop.querySelector<SVGCircleElement>('circle.progress')!.style.strokeDashoffset = String(dashoffset.toFixed(2))
|
|
}
|
|
}
|
|
eventBus.emit('fixit:scroll')
|
|
this.toc.syncTocHeight()
|
|
this.toc.syncTocActiveState()
|
|
this.#oldScrollTop = this.#newScrollTop
|
|
}, false)
|
|
}
|
|
|
|
/** Bind resize listener with debounce: re-init TOC, search, and sync state. */
|
|
onResize() {
|
|
let resizeBefore = isMobile()
|
|
window.addEventListener('resize', () => {
|
|
if (!this.#resizeTimeout) {
|
|
this.#resizeTimeout = window.setTimeout(() => {
|
|
this.#resizeTimeout = null
|
|
eventBus.emit('fixit:resize')
|
|
this.toc.initToc()
|
|
this.toc.syncTocHeight()
|
|
this.toc.syncTocActiveState()
|
|
|
|
const _isMobile = isMobile()
|
|
if (_isMobile !== resizeBefore) {
|
|
this.core.closeActiveMaskOverlay()
|
|
resizeBefore = _isMobile
|
|
}
|
|
}, 100)
|
|
}
|
|
}, false)
|
|
}
|
|
|
|
/** Bind mask click to close the active overlay. */
|
|
onClickMask() {
|
|
document.getElementById('mask')!.addEventListener('click', (e) => {
|
|
if (!(e.target as HTMLElement).classList.contains('is-blur'))
|
|
return
|
|
this.core.closeActiveMaskOverlay()
|
|
}, false)
|
|
}
|
|
|
|
/** Bind beforeprint/afterprint to expand admonitions, code blocks, details, and file trees. */
|
|
initPrint() {
|
|
window.addEventListener('beforeprint', () => {
|
|
const $content = document.getElementById('content')!
|
|
const printConfig = this.core.config.print || {}
|
|
|
|
if (printConfig.expandAdmonition) {
|
|
$content.querySelectorAll('.admonition').forEach(($el: Element) => $el.classList.add('open'))
|
|
}
|
|
if (printConfig.expandCode) {
|
|
$content.querySelectorAll<HTMLElement>('.code-tabs').forEach(($codeTabs) => {
|
|
if ($codeTabs.dataset.diagram)
|
|
return
|
|
const $actions = $codeTabs.querySelector<HTMLElement>('.tabs-actions')
|
|
const $activeBlock = $codeTabs.querySelector<HTMLElement>('.code-block.active')
|
|
if ($actions && $activeBlock) {
|
|
const $codeHeader = $activeBlock.querySelector<HTMLElement>('.code-header')
|
|
if ($codeHeader) {
|
|
Array.from($actions.children).forEach(btn => $codeHeader.appendChild(btn))
|
|
}
|
|
}
|
|
const $codeBlocks = $codeTabs.querySelectorAll<HTMLElement>('.code-block')
|
|
$codeBlocks.forEach(($codeBlock) => {
|
|
delete $codeBlock.dataset.tabInit
|
|
$codeTabs.parentElement!.insertBefore($codeBlock, $codeTabs)
|
|
})
|
|
$codeTabs.parentElement!.removeChild($codeTabs)
|
|
})
|
|
$content.querySelectorAll<HTMLElement>('.code-block').forEach(($el) => {
|
|
$el.classList.add('line-wrapping')
|
|
$el.classList.remove('is-collapsed')
|
|
if ($el.querySelector('.code-expand-btn')) {
|
|
$el.classList.add('is-expanded')
|
|
}
|
|
})
|
|
}
|
|
if (printConfig.expandDetails) {
|
|
$content.querySelectorAll('details').forEach(($el: Element) => $el.setAttribute('open', ''))
|
|
}
|
|
}, false)
|
|
|
|
window.addEventListener('afterprint', () => {
|
|
this.code.initCodeTabs()
|
|
}, false)
|
|
}
|
|
|
|
/** Initialize all event listeners. */
|
|
setup() {
|
|
this.onScroll()
|
|
this.onResize()
|
|
this.onClickMask()
|
|
this.initPrint()
|
|
}
|
|
}
|