| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120 |
- <?php
- namespace Dcat\Admin\Form;
- use Dcat\Admin\Admin;
- use Dcat\Admin\Form;
- use Dcat\Admin\Form\Concerns;
- use Illuminate\Contracts\Support\Arrayable;
- use Illuminate\Contracts\Support\Renderable;
- use Illuminate\Support\Arr;
- use Illuminate\Support\Fluent;
- use Illuminate\Support\Traits\Macroable;
- /**
- * Class Field.
- */
- class Field implements Renderable
- {
- use Macroable, Concerns\FieldValidator;
- const FILE_DELETE_FLAG = '_file_del_';
- /**
- * Element id.
- *
- * @var array|string
- */
- protected $id;
- /**
- * Element value.
- *
- * @var mixed
- */
- protected $value;
- /**
- * Data of all original columns of value.
- *
- * @var mixed
- */
- protected $data;
- /**
- * Field original value.
- *
- * @var mixed
- */
- protected $original;
- /**
- * Field default value.
- *
- * @var mixed
- */
- protected $default;
- /**
- * Element label.
- *
- * @var string
- */
- protected $label = '';
- /**
- * Column name.
- *
- * @var string|array
- */
- protected $column = '';
- /**
- * Form element name.
- *
- * @var string
- */
- protected $elementName = [];
- /**
- * Form element classes.
- *
- * @var array
- */
- protected $elementClass = [];
- /**
- * Variables of elements.
- *
- * @var array
- */
- protected $variables = [];
- /**
- * Options for specify elements.
- *
- * @var array
- */
- protected $options = [];
- /**
- * Checked for specify elements.
- *
- * @var array
- */
- protected $checked = [];
- /**
- * Css required by this field.
- *
- * @var array
- */
- protected static $css = [];
- /**
- * Js required by this field.
- *
- * @var array
- */
- protected static $js = [];
- /**
- * Script for field.
- *
- * @var string
- */
- protected $script = '';
- /**
- * Element attributes.
- *
- * @var array
- */
- protected $attributes = [];
- /**
- * Parent form.
- *
- * @var Form
- */
- protected $form = null;
- /**
- * View for field to render.
- *
- * @var string
- */
- protected $view = '';
- /**
- * Help block.
- *
- * @var array
- */
- protected $help = [];
- /**
- * Key for errors.
- *
- * @var mixed
- */
- protected $errorKey;
- /**
- * Placeholder for this field.
- *
- * @var string|array
- */
- protected $placeholder;
- /**
- * Width for label and field.
- *
- * @var array
- */
- protected $width = [
- 'label' => 2,
- 'field' => 8,
- ];
- /**
- * If the form horizontal layout.
- *
- * @var bool
- */
- protected $horizontal = true;
- /**
- * column data format.
- *
- * @var \Closure
- */
- protected $customFormat = null;
- /**
- * @var bool
- */
- protected $display = true;
- /**
- * @var array
- */
- protected $labelClass = [];
- /**
- * @var \Closure
- */
- protected $prepare;
- /**
- * Field constructor.
- *
- * @param $column
- * @param array $arguments
- */
- public function __construct($column, $arguments = [])
- {
- $this->column = $column;
- $this->label = $this->formatLabel($arguments);
- $this->id = $this->formatId($column);
- }
- /**
- * Get the field element id.
- *
- * @return string
- */
- public function getElementId()
- {
- return $this->id;
- }
- /**
- * Format the field element id.
- *
- * @param string|array $column
- *
- * @return string|array
- */
- protected function formatId($column)
- {
- if (is_array($column)) {
- return str_replace('.', '-', $column);
- }
- return 'form-field-'.str_replace('.', '-', $column);
- }
- /**
- * Format the label value.
- *
- * @param array $arguments
- *
- * @return string
- */
- protected function formatLabel($arguments = [])
- {
- $column = is_array($this->column) ? current($this->column) : $this->column;
- $label = isset($arguments[0]) ? $arguments[0] : ucfirst(admin_trans_field($column));
- return str_replace(['.', '_'], ' ', $label);
- }
- /**
- * Format the name of the field.
- *
- * @param string $column
- *
- * @return array|mixed|string
- */
- protected function formatName($column)
- {
- if (is_string($column)) {
- $name = explode('.', $column);
- if (count($name) == 1) {
- return $name[0];
- }
- $html = array_shift($name);
- foreach ($name as $piece) {
- $html .= "[$piece]";
- }
- return $html;
- }
- if (is_array($this->column)) {
- $names = [];
- foreach ($this->column as $key => $name) {
- $names[$key] = $this->formatName($name);
- }
- return $names;
- }
- return '';
- }
- /**
- * Set form element name.
- *
- * @param string $name
- *
- * @return $this
- *
- * @author Edwin Hui
- */
- public function setElementName($name)
- {
- $this->elementName = $name;
- return $this;
- }
- /**
- * Fill data to the field.
- *
- * @param array $data
- *
- * @return void
- */
- final public function fill($data)
- {
- $this->data($data);
- $this->value = $this->formatFieldData($data);
- $this->callCustomFormatter();
- }
- /**
- * Format field data.
- *
- * @param array $data
- * @return mixed
- */
- protected function formatFieldData($data)
- {
- if (is_array($this->column)) {
- $value = [];
- foreach ($this->column as $key => $column) {
- $value[$key] = Arr::get($data, $column);
- }
- return $value;
- }
- return Arr::get($data, $this->column, $this->value);
- }
- /**
- * custom format form column data when edit.
- *
- * @param \Closure $call
- *
- * @return $this
- */
- public function customFormat(\Closure $call)
- {
- $this->customFormat = $call;
- return $this;
- }
- /**
- * Set original value to the field.
- *
- * @param array $data
- * @return void
- */
- final public function setOriginal($data)
- {
- $this->original = $this->formatFieldData($data);
- $this->callCustomFormatter('original', new Fluent($data));
- }
- /**
- * @param string $key
- * @param Fluent|null $dataremoveField
- */
- protected function callCustomFormatter($key = 'value', Fluent $data = null)
- {
- if ($this->customFormat) {
- $this->{$key} = $this->customFormat
- ->call(
- $data ?: $this->data(),
- $this->{$key},
- $this->column,
- $this
- );
- }
- }
- /**
- * @param Form $form
- *
- * @return $this
- */
- public function setForm(Form $form = null)
- {
- $this->form = $form;
- return $this;
- }
- /**
- * @return Fluent
- */
- public function getFormModel()
- {
- return $this->form ? $this->form->model() : new Fluent;
- }
- /**
- * Set width for field and label.
- *
- * @param int $field
- * @param int $label
- *
- * @return $this
- */
- public function setWidth($field = 8, $label = 2)
- {
- $this->width = [
- 'label' => $label,
- 'field' => $field,
- ];
- return $this;
- }
- /**
- * Set the field options.
- *
- * @param array $options
- *
- * @return $this
- */
- public function options($options = [])
- {
- if ($options instanceof Arrayable) {
- $options = $options->toArray();
- }
- $this->options = array_merge($this->options, $options);
- return $this;
- }
- /**
- * Set the field option checked.
- *
- * @param array $checked
- *
- * @return $this
- */
- public function checked($checked = [])
- {
- if ($checked instanceof Arrayable) {
- $checked = $checked->toArray();
- }
- $this->checked = array_merge($this->checked, (array)$checked);
- return $this;
- }
- /**
- * Get key for error message.
- *
- * @return string
- */
- public function getErrorKey()
- {
- return $this->errorKey ?: $this->column;
- }
- /**
- * Set key for error message.
- *
- * @param string $key
- *
- * @return $this
- */
- public function setErrorKey($key)
- {
- $this->errorKey = $key;
- return $this;
- }
- /**
- * Set or get value of the field.
- *
- * @param null $value
- *
- * @return mixed
- */
- public function value($value = null)
- {
- if (is_null($value)) {
- return is_null($this->value) ? $this->getDefault() : $this->value;
- }
- $this->value = $value;
- return $this;
- }
- /**
- * Set or get data.
- *
- * @param array $data
- *
- * @return $this
- */
- public function data(array $data = null)
- {
- if (is_null($data)) {
- return $this->data ?: ($this->data = new Fluent);
- }
- $this->data = new Fluent($data);
- return $this;
- }
- /**
- * Set default value for field.
- *
- * @param $default
- *
- * @return $this
- */
- public function default($default)
- {
- $this->default = $default;
- return $this;
- }
- /**
- * Get default value.
- *
- * @return mixed
- */
- public function getDefault()
- {
- if ($this->default instanceof \Closure) {
- return call_user_func($this->default, $this->form);
- }
- return $this->default;
- }
- /**
- * Set help block for current field.
- *
- * @param string $text
- * @param string $icon
- *
- * @return $this
- */
- public function help($text = '', $icon = 'fa-info-circle')
- {
- $this->help = compact('text', 'icon');
- return $this;
- }
- /**
- * Get column of the field.
- *
- * @return string|array
- */
- public function column()
- {
- return $this->column;
- }
- /**
- * Get or set label of the field.
- *
- * @param null $label
- * @return $this|string
- */
- public function label($label = null)
- {
- if ($label == null) {
- return $this->label;
- }
- if ($label instanceof \Closure) {
- $label = $label($this->label);
- }
- $this->label = $label;
- return $this;
- }
- public function old()
- {
- return old($this->column, $this->value());
- }
- /**
- * Get original value of the field.
- *
- * @return mixed
- */
- public function original()
- {
- return $this->original;
- }
- /**
- * Sanitize input data.
- *
- * @param array $input
- * @param string $column
- *
- * @return array
- */
- protected function sanitizeInput($input, $column)
- {
- if ($this instanceof Field\MultipleSelect) {
- $value = Arr::get($input, $column);
- Arr::set($input, $column, array_filter($value));
- }
- return $input;
- }
- /**
- * Add html attributes to elements.
- *
- * @param array|string $attribute
- * @param mixed $value
- *
- * @return $this
- */
- public function attribute($attribute, $value = null)
- {
- if (is_array($attribute)) {
- $this->attributes = array_merge($this->attributes, $attribute);
- } else {
- $this->attributes[$attribute] = (string) $value;
- }
- return $this;
- }
- /**
- * Specifies a regular expression against which to validate the value of the input.
- *
- * @param string $regexp
- *
- * @return $this
- */
- public function pattern($regexp)
- {
- return $this->attribute('pattern', $regexp);
- }
- /**
- * set the input filed required.
- *
- * @param bool $isLabelAsterisked
- *
- * @return $this
- */
- public function required($isLabelAsterisked = true)
- {
- if ($isLabelAsterisked) {
- $this->setLabelClass(['asterisk']);
- }
- $this->rules('required');
- return $this->attribute('required', true);
- }
- /**
- * Set the field automatically get focus.
- *
- * @return $this
- */
- public function autofocus()
- {
- return $this->attribute('autofocus', true);
- }
- /**
- * Set the field as readonly mode.
- *
- * @return $this
- */
- public function readOnly()
- {
- return $this->attribute('readonly', true);
- }
- /**
- * Set field as disabled.
- *
- * @return $this
- */
- public function disable()
- {
- return $this->attribute('disabled', true);
- }
- /**
- * Set field placeholder.
- *
- * @param string $placeholder
- *
- * @return $this
- */
- public function placeholder($placeholder = '')
- {
- $this->placeholder = $placeholder;
- return $this;
- }
- /**
- * Get placeholder.
- *
- * @return string
- */
- public function getPlaceholder()
- {
- return $this->placeholder ?: trans('admin.input').' '.$this->label;
- }
- /**
- * Prepare for a field value before update or insert.
- *
- * @param mixed $value
- * @return mixed
- */
- public function prepare($value)
- {
- return $value;
- }
- /**
- * @param \Closure $closure
- * @return $this
- */
- public function prepareForSave(\Closure $closure)
- {
- $this->prepare = $closure;
- return $this;
- }
- /**
- * Prepare for a field value before update or insert.
- *
- * @param mixed $value
- * @return mixed
- */
- final public function prepareInputValue($value)
- {
- $value = $this->prepare($value);
- if ($handler = $this->prepare) {
- $handler->bindTo($this->data);
- return $handler($value);
- }
- return $value;
- }
- /**
- * Format the field attributes.
- *
- * @return string
- */
- protected function formatAttributes()
- {
- $html = [];
- foreach ($this->attributes as $name => $value) {
- $html[] = $name.'="'.e($value).'"';
- }
- return implode(' ', $html);
- }
- /**
- * @return $this
- */
- public function disableHorizontal()
- {
- $this->horizontal = false;
- return $this;
- }
- /**
- * @return array
- */
- public function getViewElementClasses()
- {
- if ($this->horizontal) {
- return [
- 'label' => "col-sm-{$this->width['label']} {$this->getLabelClass()}",
- 'field' => "col-sm-{$this->width['field']}",
- 'form-group' => 'form-group ',
- ];
- }
- return ['label' => $this->getLabelClass(), 'field' => '', 'form-group' => ''];
- }
- /**
- * Set form element class.
- *
- * @param string|array $class
- *
- * @return $this
- */
- public function setElementClass($class)
- {
- $this->elementClass = array_merge($this->elementClass, (array) $class);
- return $this;
- }
- /**
- * Get element class.
- *
- * @return array
- */
- protected function getElementClass()
- {
- if (!$this->elementClass) {
- $name = $this->elementName ?: $this->formatName($this->column);
- $this->elementClass = (array) str_replace(['[', ']'], '_', $name);
- }
- return $this->elementClass;
- }
- /**
- * Get element class string.
- *
- * @return mixed
- */
- protected function getElementClassString()
- {
- $elementClass = $this->getElementClass();
- if (Arr::isAssoc($elementClass)) {
- $classes = [];
- foreach ($elementClass as $index => $class) {
- $classes[$index] = is_array($class) ? implode(' ', $class) : $class;
- }
- return $classes;
- }
- return implode(' ', $elementClass);
- }
- /**
- * Get element class selector.
- *
- * @return string|array
- */
- protected function getElementClassSelector()
- {
- $elementClass = $this->getElementClass();
- $formId = $this->getFormId();
- $formId = $formId ? '#'.$formId : '';
- if (Arr::isAssoc($elementClass)) {
- $classes = [];
- foreach ($elementClass as $index => $class) {
- $classes[$index] = $formId . ' .'.(is_array($class) ? implode('.', $class) : $class);
- }
- return $classes;
- }
- return $formId . ' .'.implode('.', $elementClass);
- }
- /**
- * @return string|null
- */
- protected function getFormId()
- {
- return $this->form ? $this->form->getFormId() : null;
- }
- /**
- * Add the element class.
- *
- * @param $class
- *
- * @return $this
- */
- public function addElementClass($class)
- {
- if (is_array($class) || is_string($class)) {
- $this->elementClass = array_merge($this->elementClass, (array) $class);
- $this->elementClass = array_unique($this->elementClass);
- }
- return $this;
- }
- /**
- * Remove element class.
- *
- * @param $class
- *
- * @return $this
- */
- public function removeElementClass($class)
- {
- $delClass = [];
- if (is_string($class) || is_array($class)) {
- $delClass = (array) $class;
- }
- foreach ($delClass as $del) {
- if (($key = array_search($del, $this->elementClass))) {
- unset($this->elementClass[$key]);
- }
- }
- return $this;
- }
- /**
- * Add variables to field view.
- *
- * @param array $variables
- *
- * @return $this
- */
- protected function addVariables(array $variables = [])
- {
- $this->variables = array_merge($this->variables, $variables);
- return $this;
- }
- /**
- * @return string
- */
- public function getLabelClass(): string
- {
- return implode(' ', $this->labelClass);
- }
- /**
- * @param array $labelClass
- *
- * @return $this
- */
- public function setLabelClass(array $labelClass)
- {
- $this->labelClass = $labelClass;
- return $this;
- }
- /**
- * @return string
- */
- public function getElementName()
- {
- return $this->elementName ?: $this->formatName($this->column);
- }
- /**
- * Get the view variables of this field.
- *
- * @return array
- */
- public function variables()
- {
- return array_merge($this->variables, [
- 'id' => $this->id,
- 'name' => $this->getElementName(),
- 'help' => $this->help,
- 'class' => $this->getElementClassString(),
- 'value' => $this->value(),
- 'label' => $this->label,
- 'viewClass' => $this->getViewElementClasses(),
- 'column' => $this->column,
- 'errorKey' => $this->getErrorKey(),
- 'attributes' => $this->formatAttributes(),
- 'placeholder' => $this->getPlaceholder(),
- 'disabled' => $this->attributes['disabled'] ?? false,
- 'formId' => $this->getFormId(),
- ]);
- }
- /**
- * Get view of this field.
- *
- * @return string
- */
- public function getView()
- {
- return $this->view ?: 'admin::form.'.strtolower(class_basename(static::class));
- }
- /**
- * Set view of current field.
- *
- * @return string
- */
- public function setView($view)
- {
- $this->view = $view;
- return $this;
- }
- /**
- * Get script of current field.
- *
- * @return string
- */
- public function getScript()
- {
- return $this->script;
- }
- /**
- * Set script of current field.
- *
- * @return self
- */
- public function setScript($script)
- {
- $this->script = $script;
- return $this;
- }
- /**
- * To set this field should render or not.
- *
- * @return self
- */
- public function setDisplay(bool $display)
- {
- $this->display = $display;
- return $this;
- }
- /**
- * If this field should render.
- *
- * @return bool
- */
- protected function shouldRender()
- {
- if (!$this->display) {
- return false;
- }
- return true;
- }
- /**
- * Collect assets required by this field.
- */
- public static function collectAssets()
- {
- static::$js && Admin::js(static::$js);
- static::$css && Admin::css(static::$css);
- }
- /**
- * Render this filed.
- *
- * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View|string
- */
- public function render()
- {
- if (!$this->shouldRender()) {
- return '';
- }
- Admin::script($this->script);
- return view($this->getView(), $this->variables());
- }
- /**
- * @return string
- */
- public function __toString()
- {
- return $this->render()->render();
- }
- }
|