View source
<?php
namespace Drupal\yamlform_ui\Form;
use Drupal\Core\Serialization\Yaml;
use Drupal\Component\Utility\Xss;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\yamlform\Entity\YamlForm;
use Drupal\yamlform\Entity\YamlFormSubmission;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
class YamlFormUiElementTestForm extends YamlFormUiElementFormBase {
protected $type;
protected $yamlformElement;
public function getFormId() {
return 'yamlform_ui_element_test_form';
}
public function buildForm(array $form, FormStateInterface $form_state, $type = NULL) {
$this->yamlform = YamlForm::create([
'id' => 'yamlform_ui_element_test_form',
]);
$this->type = $type;
if (!$this->elementManager
->hasDefinition($type)) {
throw new NotFoundHttpException();
}
if ($test_element = \Drupal::request()
->getSession()
->get('yamlform_ui_test_element_' . $type)) {
$this->element = $test_element;
}
elseif (function_exists('_yamlform_test_get_example_element') && ($test_element = _yamlform_test_get_example_element($type))) {
$this->element = $test_element;
}
$this->element['#type'] = $type;
$this->yamlformElement = $this->elementManager
->getElementInstance($this->element);
$form['#title'] = $this
->t('Test %type element', [
'%type' => $type,
]);
if ($test_element) {
$yamlform_submission = YamlFormSubmission::create([
'yamlform' => $this->yamlform,
]);
$this->yamlformElement
->initialize($test_element);
$this->yamlformElement
->initialize($this->element);
$this->yamlformElement
->prepare($this->element, $yamlform_submission);
$form['test'] = [
'#type' => 'details',
'#title' => $this
->t('Element test'),
'#open' => TRUE,
'#attributes' => [
'style' => 'background-color: #f5f5f2',
],
'element' => $this->element,
'hr' => [
'#markup' => '<hr/>',
],
];
if (isset($test_element['#default_value'])) {
$html = $this->yamlformElement
->formatHtml($test_element, $test_element['#default_value']);
$form['test']['html'] = [
'#type' => 'item',
'#title' => $this
->t('HTML'),
'#markup' => is_array($html) ? $this->renderer
->render($html) : $html,
'#allowed_tag' => Xss::getAdminTagList(),
];
$form['test']['text'] = [
'#type' => 'item',
'#title' => $this
->t('Plain text'),
'#markup' => '<pre>' . $this->yamlformElement
->formatText($test_element, $test_element['#default_value']) . '</pre>',
'#allowed_tag' => Xss::getAdminTagList(),
];
}
$form['test']['code'] = [
'#type' => 'item',
'#title' => $this
->t('Source'),
'source' => [
'#theme' => 'yamlform_codemirror',
'#type' => 'yaml',
'#code' => Yaml::encode($this
->convertTranslatableMarkupToStringRecursive($test_element)),
],
];
$form['test']['render_array'] = [
'#type' => 'details',
'#title' => $this
->t('Render array'),
'#desciption' => $this
->t("Below is the element's final render array."),
'source' => [
'#theme' => 'yamlform_codemirror',
'#type' => 'yaml',
'#code' => Yaml::encode($this
->convertTranslatableMarkupToStringRecursive($this->element)),
],
];
}
$form['key'] = [
'#type' => 'value',
'#value' => 'element',
];
$form['parent_key'] = [
'#type' => 'value',
'#value' => '',
];
$form['properties'] = $this->yamlformElement
->buildConfigurationForm([], $form_state);
$form['properties']['#tree'] = TRUE;
$form['properties']['custom']['#open'] = TRUE;
$form['properties']['element']['type'] = [
'#type' => 'item',
'#title' => $this
->t('Type'),
'#markup' => $type,
'#weight' => -100,
'#parents' => [
'type',
],
];
$form['actions'] = [
'#type' => 'actions',
];
$form['actions']['submit'] = [
'#type' => 'submit',
'#value' => $this
->t('Test'),
'#button_type' => 'primary',
];
if (\Drupal::request()
->getSession()
->get('yamlform_ui_test_element_' . $type)) {
$form['actions']['reset'] = [
'#type' => 'submit',
'#value' => $this
->t('Reset'),
'#limit_validation_errors' => [],
'#submit' => [
'::reset',
],
];
}
return $form;
}
public function reset(array &$form, FormStateInterface $form_state) {
\Drupal::request()
->getSession()
->remove('yamlform_ui_test_element_' . $this->type);
drupal_set_message($this
->t('Form element %type test has been reset.', [
'%type' => $this->type,
]));
}
public function submitForm(array &$form, FormStateInterface $form_state) {
$element_form_state = clone $form_state;
$element_form_state
->setValues($form_state
->getValue('properties'));
$properties = $this->yamlformElement
->getConfigurationFormProperties($form, $element_form_state);
if ($element_value = $form_state
->getValue('element')) {
$properties['#default_value'] = $element_value;
}
\Drupal::request()
->getSession()
->set('yamlform_ui_test_element_' . $this->type, $properties);
drupal_set_message($this
->t('Form element %type test has been updated.', [
'%type' => $this->type,
]));
}
public function exists($key) {
return FALSE;
}
protected function convertTranslatableMarkupToStringRecursive(array $element) {
foreach ($element as $key => $value) {
if ($value instanceof TranslatableMarkup) {
$element[$key] = (string) $value;
}
elseif (is_array($value)) {
$element[$key] = $this
->convertTranslatableMarkupToStringRecursive($value);
}
}
return $element;
}
}