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>
126 lines
3.0 KiB
JavaScript
126 lines
3.0 KiB
JavaScript
let Declaration = require('../declaration')
|
|
let Processor = require('../processor')
|
|
let {
|
|
autoplaceGridItems,
|
|
getGridGap,
|
|
inheritGridGap,
|
|
prefixTrackProp,
|
|
prefixTrackValue
|
|
} = require('./grid-utils')
|
|
|
|
class GridRowsColumns extends Declaration {
|
|
insert(decl, prefix, prefixes, result) {
|
|
if (prefix !== '-ms-') return super.insert(decl, prefix, prefixes)
|
|
|
|
let { parent, prop, value } = decl
|
|
let isRowProp = prop.includes('rows')
|
|
let isColumnProp = prop.includes('columns')
|
|
|
|
let hasGridTemplate = parent.some(
|
|
i => i.prop === 'grid-template' || i.prop === 'grid-template-areas'
|
|
)
|
|
|
|
/**
|
|
* Not to prefix rows declaration if grid-template(-areas) is present
|
|
*/
|
|
if (hasGridTemplate && isRowProp) {
|
|
return false
|
|
}
|
|
|
|
let processor = new Processor({ options: {} })
|
|
let status = processor.gridStatus(parent, result)
|
|
let gap = getGridGap(decl)
|
|
gap = inheritGridGap(decl, gap) || gap
|
|
|
|
let gapValue = isRowProp ? gap.row : gap.column
|
|
|
|
if ((status === 'no-autoplace' || status === true) && !hasGridTemplate) {
|
|
gapValue = null
|
|
}
|
|
|
|
let prefixValue = prefixTrackValue({
|
|
gap: gapValue,
|
|
value
|
|
})
|
|
|
|
/**
|
|
* Insert prefixes
|
|
*/
|
|
decl.cloneBefore({
|
|
prop: prefixTrackProp({ prefix, prop }),
|
|
value: prefixValue
|
|
})
|
|
|
|
let autoflow = parent.nodes.find(i => i.prop === 'grid-auto-flow')
|
|
let autoflowValue = 'row'
|
|
|
|
if (autoflow && !processor.disabled(autoflow, result)) {
|
|
autoflowValue = autoflow.value.trim()
|
|
}
|
|
if (status === 'autoplace') {
|
|
/**
|
|
* Show warning if grid-template-rows decl is not found
|
|
*/
|
|
let rowDecl = parent.nodes.find(i => i.prop === 'grid-template-rows')
|
|
|
|
if (!rowDecl && hasGridTemplate) {
|
|
return undefined
|
|
} else if (!rowDecl && !hasGridTemplate) {
|
|
decl.warn(
|
|
result,
|
|
'Autoplacement does not work without grid-template-rows property'
|
|
)
|
|
return undefined
|
|
}
|
|
|
|
/**
|
|
* Show warning if grid-template-columns decl is not found
|
|
*/
|
|
let columnDecl = parent.nodes.find(i => {
|
|
return i.prop === 'grid-template-columns'
|
|
})
|
|
if (!columnDecl && !hasGridTemplate) {
|
|
decl.warn(
|
|
result,
|
|
'Autoplacement does not work without grid-template-columns property'
|
|
)
|
|
}
|
|
|
|
/**
|
|
* Autoplace grid items
|
|
*/
|
|
if (isColumnProp && !hasGridTemplate) {
|
|
autoplaceGridItems(decl, result, gap, autoflowValue)
|
|
}
|
|
}
|
|
|
|
return undefined
|
|
}
|
|
|
|
/**
|
|
* Change IE property back
|
|
*/
|
|
normalize(prop) {
|
|
return prop.replace(/^grid-(rows|columns)/, 'grid-template-$1')
|
|
}
|
|
|
|
/**
|
|
* Change property name for IE
|
|
*/
|
|
prefixed(prop, prefix) {
|
|
if (prefix === '-ms-') {
|
|
return prefixTrackProp({ prefix, prop })
|
|
}
|
|
return super.prefixed(prop, prefix)
|
|
}
|
|
}
|
|
|
|
GridRowsColumns.names = [
|
|
'grid-template-rows',
|
|
'grid-template-columns',
|
|
'grid-rows',
|
|
'grid-columns'
|
|
]
|
|
|
|
module.exports = GridRowsColumns
|