2018-10-05 21:32:15 -04:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
/**
|
|
|
|
* Hummingbird Anime List Client
|
|
|
|
*
|
|
|
|
* An API client for Kitsu to manage anime and manga watch lists
|
|
|
|
*
|
2019-12-03 15:17:25 -05:00
|
|
|
* PHP version 7.2
|
2018-10-05 21:32:15 -04:00
|
|
|
*
|
|
|
|
* @package HummingbirdAnimeClient
|
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
2019-12-06 09:16:35 -05:00
|
|
|
* @copyright 2015 - 2019 Timothy J. Warren
|
2018-10-05 21:32:15 -04:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2019-12-06 09:16:35 -05:00
|
|
|
* @version 4.2
|
2018-10-05 21:32:15 -04:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient;
|
|
|
|
|
2019-12-09 14:34:23 -05:00
|
|
|
use Aura\Html\HelperLocator;
|
2018-10-05 21:32:15 -04:00
|
|
|
use Aviat\Ion\Di\ContainerInterface;
|
2019-12-09 14:34:23 -05:00
|
|
|
use Aviat\Ion\Di\Exception\ContainerException;
|
|
|
|
use Aviat\Ion\Di\Exception\NotFoundException;
|
2018-10-05 21:32:15 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper object to manage form generation, especially for config editing
|
|
|
|
*/
|
|
|
|
final class FormGenerator {
|
|
|
|
/**
|
|
|
|
* Html generation helper
|
|
|
|
*
|
2019-12-09 14:34:23 -05:00
|
|
|
* @var HelperLocator
|
2018-10-05 21:32:15 -04:00
|
|
|
*/
|
2018-11-09 10:38:35 -05:00
|
|
|
private $helper;
|
2018-10-05 21:32:15 -04:00
|
|
|
|
2018-11-09 10:38:35 -05:00
|
|
|
/**
|
|
|
|
* FormGenerator constructor.
|
|
|
|
*
|
|
|
|
* @param ContainerInterface $container
|
2019-12-09 14:34:23 -05:00
|
|
|
* @throws ContainerException
|
|
|
|
* @throws NotFoundException
|
2018-11-09 10:38:35 -05:00
|
|
|
*/
|
2018-10-05 21:32:15 -04:00
|
|
|
public function __construct(ContainerInterface $container)
|
|
|
|
{
|
|
|
|
$this->helper = $container->get('html-helper');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate the html structure of the form
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @param array $form
|
|
|
|
* @return string
|
|
|
|
*/
|
2018-11-09 10:38:35 -05:00
|
|
|
public function generate(string $name, array $form): string
|
2018-10-05 21:32:15 -04:00
|
|
|
{
|
|
|
|
$type = $form['type'];
|
|
|
|
|
|
|
|
if ($form['display'] === FALSE)
|
|
|
|
{
|
|
|
|
return $this->helper->input([
|
|
|
|
'type' => 'hidden',
|
|
|
|
'name' => $name,
|
|
|
|
'value' => $form['value'],
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
$params = [
|
|
|
|
'name' => $name,
|
|
|
|
'value' => $form['value'],
|
|
|
|
'attribs' => [
|
|
|
|
'id' => $name,
|
|
|
|
],
|
|
|
|
];
|
|
|
|
|
|
|
|
switch($type)
|
|
|
|
{
|
|
|
|
case 'boolean':
|
|
|
|
$params['type'] = 'radio';
|
|
|
|
$params['options'] = [
|
|
|
|
'1' => 'Yes',
|
|
|
|
'0' => 'No',
|
|
|
|
];
|
|
|
|
unset($params['attribs']['id']);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'string':
|
|
|
|
$params['type'] = 'text';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'select':
|
|
|
|
$params['type'] = 'select';
|
|
|
|
$params['options'] = array_flip($form['options']);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (['readonly', 'disabled'] as $key)
|
|
|
|
{
|
|
|
|
if ($form[$key] !== FALSE)
|
|
|
|
{
|
|
|
|
$params['attribs'][$key] = $form[$key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-09 10:38:35 -05:00
|
|
|
return (string)$this->helper->input($params);
|
2018-10-05 21:32:15 -04:00
|
|
|
}
|
|
|
|
}
|