This script scans a directory for Twig files, extracts variable definitions and options from comments, and generates the corresponding .component.yml files required for SDC components.
-
Ensure Python is Installed: Make sure you have Python installed on your system.
-
Install Required Libraries: Check that the required libraries (pyyaml and re) are available in your Python environment.
-
Execute the Script:
Run the script from the command line, providing the directory containing your Twig files as an argument.python script.py /path/to/your/twig/files
- Searches through the specified directory and its subdirectories for
.twig
files.
-
Variables:
Extracts key-value pairs defined in the Twig file. -
Slots:
Identifies special variables used to slot content into predefined places within the component. -
Conditionals:
Detects variables used in conditional statements to assess their necessity.
- Detects and extracts default values defined within Twig
set
statements or patterns.
-
Identify Array Variables:
Detects variables that are arrays and looks for related include files. -
Include Files:
Checks if there are include files that define the structure of the array items. -
Incorporate Information:
Integrates information from these include files into the YAML output to accurately represent the array’s structure.
-
Required Fields Detection:
Identifies required variables based on their descriptions, default values, and usage in conditional statements. -
Required Fields Inclusion:
Includes these required fields in the YAML output under therequired
key to ensure they are properly defined.
-
Component Name:
Derives the component name from the Twig file name. -
Props:
Lists all variables, their types, default values, and whether they are required. -
Slots:
Defines any slots found in the Twig file. -
JavaScript File:
Indicates if there is an associated JavaScript file for the component.
- Save Configuration:
Saves the YAML configuration files in the same directory as the Twig files, with the.component.yml
extension.