Standardize settings file naming and relocate documentation files Fix code quality violations from rsx:check Reorganize user_management directory into logical subdirectories Move Quill Bundle to core and align with Tom Select pattern Simplify Site Settings page to focus on core site information Complete Phase 5: Multi-tenant authentication with login flow and site selection Add route query parameter rule and synchronize filename validation logic Fix critical bug in UpdateNpmCommand causing missing JavaScript stubs Implement filename convention rule and resolve VS Code auto-rename conflict Implement js-sanitizer RPC server to eliminate 900+ Node.js process spawns Implement RPC server architecture for JavaScript parsing WIP: Add RPC server infrastructure for JS parsing (partial implementation) Update jqhtml terminology from destroy to stop, fix datagrid DOM preservation Add JQHTML-CLASS-01 rule and fix redundant class names Improve code quality rules and resolve violations Remove legacy fatal error format in favor of unified 'fatal' error type Filter internal keys from window.rsxapp output Update button styling and comprehensive form/modal documentation Add conditional fly-in animation for modals Fix non-deterministic bundle compilation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
85 lines
1.9 KiB
JavaScript
85 lines
1.9 KiB
JavaScript
let Declaration = require('../declaration')
|
|
let {
|
|
getGridGap,
|
|
inheritGridGap,
|
|
parseGridAreas,
|
|
prefixTrackProp,
|
|
prefixTrackValue,
|
|
warnGridGap,
|
|
warnMissedAreas
|
|
} = require('./grid-utils')
|
|
|
|
function getGridRows(tpl) {
|
|
return tpl
|
|
.trim()
|
|
.slice(1, -1)
|
|
.split(/["']\s*["']?/g)
|
|
}
|
|
|
|
class GridTemplateAreas extends Declaration {
|
|
/**
|
|
* Translate grid-template-areas to separate -ms- prefixed properties
|
|
*/
|
|
insert(decl, prefix, prefixes, result) {
|
|
if (prefix !== '-ms-') return super.insert(decl, prefix, prefixes)
|
|
|
|
let hasColumns = false
|
|
let hasRows = false
|
|
let parent = decl.parent
|
|
let gap = getGridGap(decl)
|
|
gap = inheritGridGap(decl, gap) || gap
|
|
|
|
// remove already prefixed rows
|
|
// to prevent doubling prefixes
|
|
parent.walkDecls(/-ms-grid-rows/, i => i.remove())
|
|
|
|
// add empty tracks to rows
|
|
parent.walkDecls(/grid-template-(rows|columns)/, trackDecl => {
|
|
if (trackDecl.prop === 'grid-template-rows') {
|
|
hasRows = true
|
|
let { prop, value } = trackDecl
|
|
trackDecl.cloneBefore({
|
|
prop: prefixTrackProp({ prefix, prop }),
|
|
value: prefixTrackValue({ gap: gap.row, value })
|
|
})
|
|
} else {
|
|
hasColumns = true
|
|
}
|
|
})
|
|
|
|
let gridRows = getGridRows(decl.value)
|
|
|
|
if (hasColumns && !hasRows && gap.row && gridRows.length > 1) {
|
|
decl.cloneBefore({
|
|
prop: '-ms-grid-rows',
|
|
raws: {},
|
|
value: prefixTrackValue({
|
|
gap: gap.row,
|
|
value: `repeat(${gridRows.length}, auto)`
|
|
})
|
|
})
|
|
}
|
|
|
|
// warnings
|
|
warnGridGap({
|
|
decl,
|
|
gap,
|
|
hasColumns,
|
|
result
|
|
})
|
|
|
|
let areas = parseGridAreas({
|
|
gap,
|
|
rows: gridRows
|
|
})
|
|
|
|
warnMissedAreas(areas, decl, result)
|
|
|
|
return decl
|
|
}
|
|
}
|
|
|
|
GridTemplateAreas.names = ['grid-template-areas']
|
|
|
|
module.exports = GridTemplateAreas
|