-
-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
252 additions
and
290 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,238 @@ | ||
<?php | ||
|
||
/** | ||
* This file is part of the Nette Framework (https://nette.org) | ||
* Copyright (c) 2004 David Grudl (https://davidgrudl.com) | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Nette\Forms\Rendering; | ||
|
||
use Nette; | ||
use Nette\Forms\Container; | ||
use Nette\Forms\Controls; | ||
use Nette\Forms\Form; | ||
|
||
|
||
/** | ||
* Generates blueprints for forms. | ||
*/ | ||
final class Blueprint | ||
{ | ||
private const ClassNameSuffix = 'FormData'; | ||
|
||
|
||
/** | ||
* Generates blueprint of form. | ||
*/ | ||
public static function latte(Form $form, bool $exit = true): void | ||
{ | ||
$bp = new self; | ||
$bp->printBegin(); | ||
$bp->printHeader('Form ' . $form->getName()); | ||
$bp->printCode($bp->generateLatte($form), 'latte'); | ||
$bp->printEnd(); | ||
if ($exit) { | ||
exit; | ||
} | ||
} | ||
|
||
|
||
/** | ||
* Generates blueprint of form data class. | ||
*/ | ||
public static function dataClass(Form $form, bool $exit = true): void | ||
{ | ||
$bp = new self; | ||
$bp->printBegin(); | ||
$bp->printHeader('Form Data Class ' . $form->getName()); | ||
$bp->printCode($bp->generateDataClass($form), 'php'); | ||
if (PHP_VERSION_ID >= 80000) { | ||
$bp->printCode($bp->generateDataClass($form, true), 'php'); | ||
} | ||
$bp->printEnd(); | ||
if ($exit) { | ||
exit; | ||
} | ||
} | ||
|
||
|
||
private function printBegin(): void | ||
{ | ||
echo '<script src="https://nette.github.io/resources/prism/prism.js"></script>'; | ||
echo '<link rel="stylesheet" href="https://nette.github.io/resources/prism/prism.css">'; | ||
echo "<div style='all:initial;position:fixed;overflow:auto;z-index:1000;left:0;right:0;top:0;bottom:0;color:black;background:white;padding:1em'>\n"; | ||
} | ||
|
||
|
||
private function printEnd(): void | ||
{ | ||
echo "</div>\n"; | ||
} | ||
|
||
|
||
private function printHeader(string $string): void | ||
{ | ||
echo "<h1 style='all:initial;display:block;font-size:2em;margin:1em 0'>", | ||
htmlspecialchars($string), | ||
"</h1>\n"; | ||
} | ||
|
||
|
||
private function printCode(string $code, string $lang): void | ||
{ | ||
echo '<pre><code class="language-', htmlspecialchars($lang), '">', | ||
htmlspecialchars($code), | ||
"</code></pre>\n"; | ||
} | ||
|
||
|
||
public function generateLatte(Form $form): string | ||
{ | ||
$dict = new \SplObjectStorage; | ||
$dummyForm = new class extends Form { | ||
protected function receiveHttpData(): ?array | ||
{ | ||
return []; | ||
} | ||
}; | ||
|
||
foreach ($form->getControls() as $input) { | ||
$dict[$input] = $dummyInput = new class extends Nette\Forms\Controls\BaseControl { | ||
public $inner; | ||
|
||
|
||
public function getLabel($caption = null) | ||
{ | ||
return $this->inner->getLabel() | ||
? '{label ' . $this->inner->lookupPath(Form::class) . '/}' | ||
: null; | ||
} | ||
|
||
|
||
public function getControl() | ||
{ | ||
return '{input ' . $this->inner->lookupPath(Form::class) . '}'; | ||
} | ||
|
||
|
||
public function isRequired(): bool | ||
{ | ||
return $this->inner->isRequired(); | ||
} | ||
|
||
|
||
public function getOption($key) | ||
{ | ||
return $key === 'rendered' | ||
? parent::getOption($key) | ||
: $this->inner->getOption($key); | ||
} | ||
}; | ||
$dummyInput->inner = $input; | ||
$dummyForm->addComponent($dummyInput, (string) $dict->count()); | ||
$dummyInput->addError('{inputError ' . $input->lookupPath(Form::class) . '}'); | ||
} | ||
|
||
foreach ($form->getGroups() as $group) { | ||
$dummyGroup = $dummyForm->addGroup(); | ||
foreach ($group->getOptions() as $k => $v) { | ||
$dummyGroup->setOption($k, $v); | ||
} | ||
|
||
foreach ($group->getControls() as $control) { | ||
if ($dict[$control]) { | ||
$dummyGroup->add($dict[$control]); | ||
} | ||
} | ||
} | ||
|
||
$renderer = clone $form->getRenderer(); | ||
$dummyForm->setRenderer($renderer); | ||
$dummyForm->onRender = $form->onRender; | ||
$dummyForm->fireRenderEvents(); | ||
|
||
if ($renderer instanceof DefaultFormRenderer) { | ||
$renderer->wrappers['error']['container'] = $renderer->getWrapper('error container')->setAttribute('n:ifcontent', true); | ||
$renderer->wrappers['error']['item'] = $renderer->getWrapper('error item')->setAttribute('n:foreach', '$form->getOwnErrors() as $error'); | ||
$renderer->wrappers['control']['errorcontainer'] = $renderer->getWrapper('control errorcontainer')->setAttribute('n:ifcontent', true); | ||
$dummyForm->addError('{$error}'); | ||
|
||
ob_start(); | ||
$dummyForm->render('end'); | ||
$end = ob_get_clean(); | ||
} | ||
|
||
ob_start(); | ||
$dummyForm->render(); | ||
$body = ob_get_clean(); | ||
|
||
$body = str_replace($dummyForm->getElementPrototype()->startTag(), '<form n:name="' . $form->getName() . '">', $body); | ||
$body = str_replace($end ?? '', '</form>', $body); | ||
return $body; | ||
} | ||
|
||
|
||
public function generateDataClass( | ||
Container $container, | ||
?bool $propertyPromotion = false, | ||
?string $baseName = null | ||
): string | ||
{ | ||
$baseName = $baseName ?? preg_replace('~Form$~', '', ucwords((string) $container->getName())); | ||
$nextCode = ''; | ||
$props = []; | ||
foreach ($container->getComponents() as $name => $input) { | ||
if ($input instanceof Controls\BaseControl && $input->isOmitted()) { | ||
continue; | ||
} elseif ($input instanceof Controls\Checkbox) { | ||
$type = 'bool'; | ||
} elseif ($input instanceof Controls\MultiChoiceControl) { | ||
$type = 'array'; | ||
} elseif ($input instanceof Controls\ChoiceControl) { | ||
$type = 'string|int'; | ||
if (!$input->isRequired()) { | ||
$type .= '|null'; | ||
} | ||
} elseif ($input instanceof Controls\HiddenField || $input instanceof Controls\TextBase) { | ||
$type = 'string'; | ||
foreach ($input->getRules() as $rule) { | ||
if ($rule->validator === Form::Integer) { | ||
$type = 'int'; | ||
break; | ||
} | ||
} | ||
|
||
if (!$input->isRequired()) { | ||
$type = '?' . $type; | ||
} | ||
} elseif ($input instanceof Controls\UploadControl) { | ||
$type = '\Nette\Http\FileUpload'; | ||
if (!$input->isRequired()) { | ||
$type = '?' . $type; | ||
} | ||
} elseif ($input instanceof Container) { | ||
$type = $baseName . ucwords($name); | ||
$nextCode .= $this->generateDataClass($input, $propertyPromotion, $type); | ||
$type .= self::ClassNameSuffix; | ||
} else { | ||
$type = ''; | ||
} | ||
|
||
$props[] = 'public ' . ($type ? $type . ' ' : '') . '$' . $name; | ||
} | ||
|
||
$class = $baseName . self::ClassNameSuffix; | ||
return "class $class\n" | ||
. "{\n" | ||
. ($propertyPromotion | ||
? "\tpublic function __construct(\n" | ||
. ($props ? "\t\t" . implode(",\n\t\t", $props) . ",\n" : '') | ||
. "\t) {\n\t}\n" | ||
: ($props ? "\t" . implode(";\n\t", $props) . ";\n" : '') | ||
) | ||
. "}\n\n" | ||
. $nextCode; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.