123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302 |
- <?php
- // Copyright (C) 2010-2016 Combodo SARL
- //
- // This file is part of iTop.
- //
- // iTop is free software; you can redistribute it and/or modify
- // it under the terms of the GNU Affero General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // iTop is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU Affero General Public License for more details.
- //
- // You should have received a copy of the GNU Affero General Public License
- // along with iTop. If not, see <http://www.gnu.org/licenses/>
- namespace Combodo\iTop\Renderer;
- use \Exception;
- use \Dict;
- use \Combodo\iTop\Form\Form;
- use \Combodo\iTop\Form\Field\Field;
- /**
- * Description of FormRenderer
- *
- * @author Guillaume Lajarige <guillaume.lajarige@combodo.com>
- */
- abstract class FormRenderer
- {
- const ENUM_RENDER_MODE_EXPLODED = 'exploded';
- const ENUM_RENDER_MODE_JOINED = 'joined';
- const DEFAULT_RENDERER_NAMESPACE = '';
- protected $oForm;
- protected $sEndpoint;
- protected $aSupportedFields;
- protected $sBaseLayout;
- protected $aOutputs;
- /**
- * Default constructor
- *
- * @param \Combodo\iTop\Form\Form $oForm
- */
- public function __construct(Form $oForm = null)
- {
- if ($oForm !== null)
- {
- $this->oForm = $oForm;
- }
- $this->sBaseLayout = '';
- $this->InitOutputs();
- }
- /**
- *
- * @return \Combodo\iTop\Form\Form
- */
- public function GetForm()
- {
- return $this->oForm;
- }
- /**
- *
- * @param \Combodo\iTop\Form\Form $oForm
- * @return \Combodo\iTop\Renderer\FormRenderer
- */
- public function SetForm(Form $oForm)
- {
- $this->oForm = $oForm;
- return $this;
- }
- /**
- *
- * @return string
- */
- public function GetEndpoint()
- {
- return $this->sEndpoint;
- }
- /**
- *
- * @param string $sEndpoint
- * @return \Combodo\iTop\Renderer\FormRenderer
- */
- public function SetEndpoint($sEndpoint)
- {
- $this->sEndpoint = $sEndpoint;
- return $this;
- }
- /**
- *
- * @return string
- */
- public function GetBaseLayout()
- {
- return $this->sBaseLayout;
- }
- /**
- *
- * @param string $sBaseLayout
- * @return \Combodo\iTop\Renderer\FormRenderer
- */
- public function SetBaseLayout($sBaseLayout)
- {
- $this->sBaseLayout = $sBaseLayout;
- return $this;
- }
- /**
- *
- * @param \Combodo\iTop\Form\Field\Field $oField
- * @return string
- * @throws Exception
- */
- public function GetFieldRendererClass(Field $oField)
- {
- if (array_key_exists(get_class($oField), $this->aSupportedFields))
- {
- return $this->aSupportedFields[get_class($oField)];
- }
- else
- {
- throw new Exception('Field type not supported by the renderer: ' . get_class($oField));
- }
- }
- /**
- * Returns the field identified by the id $sId in $this->oForm.
- *
- * @param string $sId
- * @return \Combodo\iTop\Renderer\FieldRenderer
- */
- public function GetFieldRendererClassFromId($sId)
- {
- return $this->GetFieldRendererClass($this->oForm->GetField($sId));
- }
- /**
- *
- * @return array
- */
- public function GetOutputs()
- {
- return $this->aOutputs;
- }
- /**
- * Registers a Renderer class for the specified Field class.
- *
- * If the Field class is not fully qualified, the default "Combodo\iTop\Form\Field" will be prepend.
- * If the Field class already had a registered Renderer, it is replaced.
- *
- * @param string $sFieldClass
- * @param string $sRendererClass
- */
- public function AddSupportedField($sFieldClass, $sRendererClass)
- {
- $sFieldClass = (strpos($sFieldClass, '\\') !== false) ? $sFieldClass : 'Combodo\\iTop\\Form\\Field\\' . $sFieldClass;
- $sRendererClass = (strpos($sRendererClass, '\\') !== false) ? $sRendererClass : static::DEFAULT_RENDERER_NAMESPACE . $sRendererClass;
- $this->aSupportedFields[$sFieldClass] = $sRendererClass;
- return $this;
- }
- /**
- *
- * @return \Combodo\iTop\Renderer\FormRenderer
- */
- public function InitOutputs()
- {
- $this->aOutputs = array();
- return $this;
- }
- /**
- *
- * @return array
- */
- public function Render()
- {
- $this->InitOutputs();
- foreach ($this->oForm->GetFields() as $oField)
- {
- $this->aOutputs[$oField->GetId()] = $this->PrepareOutputForField($oField);
- }
- return $this->aOutputs;
- }
- /**
- * Returns the output for the $oField. Output format depends on the $sMode.
- *
- * If $sMode = 'exploded', output is an has array with id / html / js_inline / js_files / css_inline / css_files / validators
- * Else if $sMode = 'joined', output is a string with everything in it
- *
- * @param \Combodo\iTop\Form\Field\Field $oField
- * @param string $sMode 'exploded'|'joined'
- * @return mixed
- */
- protected function PrepareOutputForField($oField, $sMode = 'exploded')
- {
- $output = array(
- 'id' => $oField->GetId(),
- 'html' => '',
- 'js_inline' => '',
- 'css_inline' => '',
- 'js_files' => array(),
- 'css_files' => array()
- );
- $sFieldRendererClass = $this->GetFieldRendererClass($oField);
- $oFieldRenderer = new $sFieldRendererClass($oField);
- $oFieldRenderer->SetEndpoint($this->GetEndpoint());
- $oRenderingOutput = $oFieldRenderer->Render();
- // HTML
- if ($oRenderingOutput->GetHtml() !== '')
- {
- if ($sMode === static::ENUM_RENDER_MODE_EXPLODED)
- {
- $output['html'] = $oRenderingOutput->GetHtml();
- }
- else
- {
- $output['html'] .= $oRenderingOutput->GetHtml();
- }
- }
- // JS files
- foreach ($oRenderingOutput->GetJsFiles() as $sJsFile)
- {
- if ($sMode === static::ENUM_RENDER_MODE_EXPLODED)
- {
- if (!in_array($sJsFile, $output['js_files']))
- {
- $output['js_files'][] = $sJsFile;
- }
- }
- else
- {
- $output['html'] .= '<script src="' . $sJsFile . '" type="text/javascript"></script>';
- }
- }
- // JS inline
- if ($oRenderingOutput->GetJs() !== '')
- {
- if ($sMode === static::ENUM_RENDER_MODE_EXPLODED)
- {
- $output['js_inline'] .= ' ' . $oRenderingOutput->GetJs();
- }
- else
- {
- $output['html'] .= '<script type="text/javascript">' . $oRenderingOutput->GetJs() . '</script>';
- }
- }
- // CSS files
- foreach ($oRenderingOutput->GetCssFiles() as $sCssFile)
- {
- if ($sMode === static::ENUM_RENDER_MODE_EXPLODED)
- {
- if (!in_array($sCssFile, $output['css_files']))
- {
- $output['css_files'][] = $sCssFile;
- }
- }
- else
- {
- $output['html'] .= '<link href="' . $sCssFile . '" rel="stylesheet" />';
- }
- }
- // CSS inline
- if ($oRenderingOutput->GetCss() !== '')
- {
- if ($sMode === static::ENUM_RENDER_MODE_EXPLODED)
- {
- $output['css_inline'] .= ' ' . $oRenderingOutput->GetCss();
- }
- else
- {
- $output['html'] .= '<style>' . $oRenderingOutput->GetCss() . '</style>';
- }
- }
- return $output;
- }
- }
|