mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-05-23 22:25:05 +00:00
## Summary Enable `better-tailwindcss/enforce-consistent-class-order` lint rule and auto-fix all 1027 violations across 263 files. Stacked on #9427. ## Changes - **What**: Sort Tailwind classes into consistent order via `eslint --fix` - Enable `enforce-consistent-class-order` as `'error'` in eslint config - Purely cosmetic reordering — no behavioral or visual changes ## Review Focus Mechanical auto-fix PR — all changes are class reordering only. This is the largest diff but lowest risk since it changes no class names, only their order. **Stack:** #9417 → #9427 → **this PR** Fixes #9300 (partial — 3 of 3 rules) ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-9428-fix-enable-enforce-consistent-class-order-tailwind-lint-rule-31a6d73d3650811c9065f5178ba3e724) by [Unito](https://www.unito.io)
143 lines
3.9 KiB
Vue
143 lines
3.9 KiB
Vue
<template>
|
|
<div
|
|
ref="container"
|
|
class="scrollbar-thin scrollbar-track-transparent scrollbar-thumb-(--dialog-surface) h-full overflow-y-auto [overflow-anchor:none] [scrollbar-gutter:stable]"
|
|
>
|
|
<div :style="topSpacerStyle" />
|
|
<div :style="mergedGridStyle">
|
|
<div
|
|
v-for="(item, i) in renderedItems"
|
|
:key="item.key"
|
|
data-virtual-grid-item
|
|
>
|
|
<slot name="item" :item :index="state.start + i" />
|
|
</div>
|
|
</div>
|
|
<div :style="bottomSpacerStyle" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts" generic="T">
|
|
import { useElementSize, useScroll, whenever } from '@vueuse/core'
|
|
import { clamp, debounce } from 'es-toolkit/compat'
|
|
import { computed, onBeforeUnmount, ref, watch } from 'vue'
|
|
import type { CSSProperties } from 'vue'
|
|
|
|
type GridState = {
|
|
start: number
|
|
end: number
|
|
isNearEnd: boolean
|
|
}
|
|
|
|
const {
|
|
items,
|
|
gridStyle,
|
|
bufferRows = 1,
|
|
scrollThrottle = 64,
|
|
resizeDebounce = 64,
|
|
defaultItemHeight = 200,
|
|
defaultItemWidth = 200,
|
|
maxColumns = Infinity
|
|
} = defineProps<{
|
|
items: (T & { key: string })[]
|
|
gridStyle: CSSProperties
|
|
bufferRows?: number
|
|
scrollThrottle?: number
|
|
resizeDebounce?: number
|
|
defaultItemHeight?: number
|
|
defaultItemWidth?: number
|
|
maxColumns?: number
|
|
}>()
|
|
|
|
const emit = defineEmits<{
|
|
/**
|
|
* Emitted when `bufferRows` (or fewer) rows remaining between scrollY and grid bottom.
|
|
*/
|
|
'approach-end': []
|
|
}>()
|
|
|
|
const itemHeight = ref(defaultItemHeight)
|
|
const itemWidth = ref(defaultItemWidth)
|
|
const container = ref<HTMLElement | null>(null)
|
|
const { width, height } = useElementSize(container)
|
|
const { y: scrollY } = useScroll(container, {
|
|
throttle: scrollThrottle,
|
|
eventListenerOptions: { passive: true }
|
|
})
|
|
|
|
const cols = computed(() => {
|
|
if (maxColumns !== Infinity) return maxColumns
|
|
return Math.floor(width.value / itemWidth.value) || 1
|
|
})
|
|
|
|
const mergedGridStyle = computed<CSSProperties>(() => {
|
|
if (maxColumns === Infinity) return gridStyle
|
|
return {
|
|
...gridStyle,
|
|
gridTemplateColumns: `repeat(${maxColumns}, minmax(0, 1fr))`
|
|
}
|
|
})
|
|
|
|
const viewRows = computed(() => Math.ceil(height.value / itemHeight.value))
|
|
const offsetRows = computed(() => Math.floor(scrollY.value / itemHeight.value))
|
|
const isValidGrid = computed(() => height.value && width.value && items?.length)
|
|
|
|
const state = computed<GridState>(() => {
|
|
const fromRow = offsetRows.value - bufferRows
|
|
const toRow = offsetRows.value + bufferRows + viewRows.value
|
|
|
|
const fromCol = fromRow * cols.value
|
|
const toCol = toRow * cols.value
|
|
const remainingCol = items.length - toCol
|
|
const hasMoreToRender = remainingCol >= 0
|
|
|
|
return {
|
|
start: clamp(fromCol, 0, items?.length),
|
|
end: clamp(toCol, fromCol, items?.length),
|
|
isNearEnd: hasMoreToRender && remainingCol <= cols.value * bufferRows
|
|
}
|
|
})
|
|
const renderedItems = computed(() =>
|
|
isValidGrid.value ? items.slice(state.value.start, state.value.end) : []
|
|
)
|
|
|
|
function rowsToHeight(itemsCount: number): string {
|
|
const rows = Math.ceil(itemsCount / cols.value)
|
|
return `${rows * itemHeight.value}px`
|
|
}
|
|
const topSpacerStyle = computed<CSSProperties>(() => ({
|
|
height: rowsToHeight(state.value.start)
|
|
}))
|
|
const bottomSpacerStyle = computed<CSSProperties>(() => ({
|
|
height: rowsToHeight(items.length - state.value.end)
|
|
}))
|
|
|
|
whenever(
|
|
() => state.value.isNearEnd,
|
|
() => {
|
|
emit('approach-end')
|
|
}
|
|
)
|
|
|
|
function updateItemSize(): void {
|
|
if (container.value) {
|
|
const firstItem = container.value.querySelector('[data-virtual-grid-item]')
|
|
|
|
if (!firstItem?.clientHeight || !firstItem?.clientWidth) return
|
|
|
|
if (itemHeight.value !== firstItem.clientHeight) {
|
|
itemHeight.value = firstItem.clientHeight
|
|
}
|
|
if (itemWidth.value !== firstItem.clientWidth) {
|
|
itemWidth.value = firstItem.clientWidth
|
|
}
|
|
}
|
|
}
|
|
const onResize = debounce(updateItemSize, resizeDebounce)
|
|
watch([width, height], onResize, { flush: 'post' })
|
|
whenever(() => items, updateItemSize, { flush: 'post' })
|
|
onBeforeUnmount(() => {
|
|
onResize.cancel()
|
|
})
|
|
</script>
|