20 lines
1.3 KiB
PowerShell
20 lines
1.3 KiB
PowerShell
$ErrorActionPreference = 'Stop'
|
|
$root = Split-Path -Parent $PSScriptRoot
|
|
$page = Get-Content -LiteralPath (Join-Path $root 'pages/genealogy/g12-generation-poems.vue') -Raw -Encoding utf8
|
|
$style = [regex]::Match($page, '(?s)<style[^>]*>(.*?)</style>').Groups[1].Value
|
|
$positions = [regex]::Matches([regex]::Replace($style, '(?s)/\*.*?\*/', ''), '(?m)\bposition\s*:\s*([^;]+);')
|
|
if ($positions.Count -ne 1 -or $positions[0].Groups[1].Value.Trim() -ne 'fixed') {
|
|
throw "G12 must retain only its fixed feedback layer; found $($positions.Count) position declarations"
|
|
}
|
|
foreach ($required in @(
|
|
'@include adaptive.adaptive-genealogy-state-panel;',
|
|
'@include adaptive.adaptive-genealogy-form-field;',
|
|
'background: url("/static/assets/foundation/transparent/a01-scroll-secondary-v3.png")'
|
|
)) { if ($page -notmatch [regex]::Escape($required)) { throw "G12 is missing adaptive asset surface: $required" } }
|
|
if ($page -notmatch '(?s)<textarea[^>]*auto-height') { throw 'G12 generation poem field must grow from its text data' }
|
|
$poemPanelStyle = [regex]::Match($style, '(?s)\.poem-panel\s*\{(?<body>.*?)\}').Groups['body'].Value
|
|
if ($poemPanelStyle -match '\bmin-height\s*:') {
|
|
throw 'G12 poem panel height must be driven by its current content'
|
|
}
|
|
Write-Output 'G12-DOCUMENT-FLOW-CONTRACT PASS'
|