Section Checker
Script to validate that all occurrences of Sections and Loaders (in blocks and pages) have data structures compatible with their TypeScript types.
How to use
Validate all sections and loaders:
deno task validate-blocksValidate a specific section:
deno task validate-blocks sections/Footer/Footer.tsxor
deno task validate-blocks sections/Category/CategoryGrid.tsxYou can use relative or absolute paths.
Use custom blocks directory:
By default, the script searches for JSONs in .deco/blocks. You can specify another path:
deno task validate-blocks -blocks /full/path/to/jsonsor
deno task validate-blocks sections/Footer/Footer.tsx -blocks /other/project/.deco/blocksThis allows running the script in one project and validating blocks from another project.
Available flags:
-unused
By default, the script does not show warnings for properties not defined in the types. Use this flag to include them:
deno task validate-blocks -unusedor
deno task validate-blocks sections/Footer/Footer.tsx -unused-blocks <path> or -b <path>
Specifies a custom path for the directory containing JSON blocks. Defaults to .deco/blocks:
deno task validate-blocks -blocks /full/path/to/jsonsor combined with other flags:
deno task validate-blocks sections/Footer/Footer.tsx -blocks /other/project/.deco/blocks -unused-rm-vars
β οΈ WARNING: Automatically modifies JSON files!
Removes all properties that are not defined in the types:
deno task validate-blocks -rm-varsor for a specific section:
deno task validate-blocks sections/Footer/Footer.tsx -rm-varsThe script:
- Identifies properties in the JSON that donβt exist in the
Propsinterface - Removes these properties automatically
- Saves the modified JSON file
Example:
If the JSON has:
{
"__resolveType": "site/sections/Footer/Footer.tsx",
"title": "Footer",
"teste": "unused value" // <- not in Props interface
}After running -rm-vars, the JSON becomes:
{
"__resolveType": "site/sections/Footer/Footer.tsx",
"title": "Footer"
}-rm-sections
β οΈ WARNING: Permanently deletes files!
Removes all section/loader files that are not referenced in any JSON:
deno task validate-blocks -rm-sectionsThe script:
- Identifies sections/loaders that have no occurrences in JSONs
- Lists the files that will be removed
- Asks for confirmation (type
simto confirm) - Permanently deletes the files
Example output:
ποΈ Removing unused sections/loaders...
π 15 file(s) will be removed:
- sections/Category/CategoryGrid.tsx
- sections/Institutional/NumbersWithImage.tsx
- sections/Product/ProductShelf.tsx
...
β οΈ This action is irreversible!
Type 'sim' to confirm removal:Note: This flag only works for full validation (without specifying a file), it doesnβt work when validating a specific section.
What it does
The script:
- Iterates through all files in
sections/andloaders/ - Generates the
__resolveTypefor each section/loader - Searches for ALL occurrences of that
__resolveTypein.deco/blocks(including inside pages) - Extracts the Props interface from the TypeScript file
- Deeply validates each occurrence against the types
- Reports errors and warnings with exact path in the JSON
Features
Intelligent Props Detection
- β
Follows re-exports (
export { default } from "./other-file") - β Extracts type from the component parameter exported as default
- β Fallback to interface/type named βPropsβ
- β Supports type aliases and interfaces
- β Supports utility types (Omit, Pick, Partial)
Deep Validation
- β
Primitive types:
string,number,boolean,null - β Arrays with element validation
- β Nested objects recursively
- β
Optional properties (
?) - β
Union types (
string | number) - β
Special types:
ImageWidget,Product,RichText, etc - β
Respects
@ignoreannotation on properties - β οΈ Detects extra properties not defined in types (warnings)
Protections
- β Ignores blocks from external apps (vtex, commerce, shopify, etc)
- β Ignores Theme blocks
- β Protection against infinite recursion in circular types
Severity System
- β Valid - Block is correct
- β οΈ Warning - Props not found OR extra properties not defined in types OR section is not being used (doesnβt fail the build)
- β Error - Required properties missing or incorrect types (fails the build)
File Structure
validate-blocks/
βββ main.ts # Main entrypoint
βββ src/
β βββ type-mapper.ts # Maps __resolveType to paths
β βββ ts-parser.ts # TypeScript parser (extracts Props)
β βββ validator.ts # Recursive type validator
β βββ validate-blocks.ts # Orchestrator and reporting
βββ README.md # This documentationExample Output
π Validating sections and loaders...
β
sections/Header/Header.tsx - 15 occurrence(s)
β
sections/Footer/Footer.tsx - 1 occurrence(s)
β οΈ sections/Footer/Footer.tsx - 1 occurrence(s), 2 warning(s)
Footer.json
- property not defined in types (can be removed) (.deco/blocks/Footer.json:265)
- property not defined in types (can be removed) (.deco/blocks/Footer.json:273)
β sections/Category/CategoryGrid.tsx - 1 occurrence(s), 1 error(s)
Preview%20%2Fsections%2FCategory%2FCategoryGrid.tsx.json
- "items": required property missing (.deco/blocks/Preview%20%2Fsections%2FCategory%2FCategoryGrid.tsx.json:2)
β sections/Sac/Stores.tsx - 2 occurrence(s), 2 error(s)
pages-Lojas-735837.json
- expected array, received object (.deco/blocks/pages-Lojas-735837.json:57)
- expected array, received object (.deco/blocks/pages-Lojas-735837.json:73)
βββββββββββββββββββββββββββββββββββββββ
π SUMMARY
βββββββββββββββββββββββββββββββββββββββ
Total sections/loaders: 95
Total occurrences: 284
β
No issues: 85
β οΈ With warnings: 3
β οΈ Unused: 3
β With errors: 4
β οΈ Unused sections:
- sections/Example/Unused.tsx
- sections/Test/OldComponent.tsx
β Sections with errors:
- sections/Category/CategoryGrid.tsx (1 error(s))Note: The script shows the path and line of the JSON file in clickable format
(ex: .deco/blocks/pages-Lojas-735837.json:61). In most modern terminals
(VSCode, Cursor, iTerm2), you can click directly on the link to
open the file at the exact line of the problem.
Usage Examples
Validate all sections
deno task validate-blocksValidate specific section during development
deno task validate-blocks sections/Header/Header.tsxValidate specific loader
deno task validate-blocks loaders/Product/categoryTabs.tsShow unused properties
# All sections with warnings for extra props
deno task validate-blocks -unused
# Specific section with warnings for extra props
deno task validate-blocks sections/Footer/Footer.tsx -unusedPortability
All code is organized in the src folder to facilitate migration
to another repository.