123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550 |
- <?php
- namespace Dcat\Admin\Widgets;
- use Closure;
- use Dcat\Admin\Admin;
- use Dcat\Admin\Form\Field;
- use Dcat\Admin\Support\Helper;
- use Dcat\Admin\Traits\HasHtmlAttributes;
- use Dcat\EasyExcel\Support\Traits\Macroable;
- use Illuminate\Contracts\Support\Arrayable;
- use Illuminate\Contracts\Support\Renderable;
- use Illuminate\Support\Arr;
- use Illuminate\Support\Fluent;
- use Illuminate\Support\Str;
- /**
- * Class Form.
- *
- * @method Field\Text text($column, $label = '')
- * @method Field\Checkbox checkbox($column, $label = '')
- * @method Field\Radio radio($column, $label = '')
- * @method Field\Select select($column, $label = '')
- * @method Field\MultipleSelect multipleSelect($column, $label = '')
- * @method Field\Textarea textarea($column, $label = '')
- * @method Field\Hidden hidden($column, $label = '')
- * @method Field\Id id($column, $label = '')
- * @method Field\Ip ip($column, $label = '')
- * @method Field\Url url($column, $label = '')
- * @method Field\Color color($column, $label = '')
- * @method Field\Email email($column, $label = '')
- * @method Field\Mobile mobile($column, $label = '')
- * @method Field\Slider slider($column, $label = '')
- * @method Field\Map map($latitude, $longitude, $label = '')
- * @method Field\Editor editor($column, $label = '')
- * @method Field\Date date($column, $label = '')
- * @method Field\Datetime datetime($column, $label = '')
- * @method Field\Time time($column, $label = '')
- * @method Field\Year year($column, $label = '')
- * @method Field\Month month($column, $label = '')
- * @method Field\DateRange dateRange($start, $end, $label = '')
- * @method Field\DateTimeRange datetimeRange($start, $end, $label = '')
- * @method Field\TimeRange timeRange($start, $end, $label = '')
- * @method Field\Number number($column, $label = '')
- * @method Field\Currency currency($column, $label = '')
- * @method Field\SwitchField switch($column, $label = '')
- * @method Field\Display display($column, $label = '')
- * @method Field\Rate rate($column, $label = '')
- * @method Field\Divide divider()
- * @method Field\Password password($column, $label = '')
- * @method Field\Decimal decimal($column, $label = '')
- * @method Field\Html html($html, $label = '')
- * @method Field\Tags tags($column, $label = '')
- * @method Field\Icon icon($column, $label = '')
- * @method Field\Embeds embeds($column, $label = '')
- * @method Field\Captcha captcha($column, $label = '')
- * @method Field\Listbox listbox($column, $label = '')
- * @method Field\SelectResource selectResource($column, $label = '')
- * @method Field\File file($column, $label = '')
- * @method Field\Image image($column, $label = '')
- * @method Field\MultipleFile multipleFile($column, $label = '')
- * @method Field\MultipleImage multipleImage($column, $label = '')
- * @method Field\HasMany hasMany($column, \Closure $callback)
- * @method Field\Tree tree($column, $label = '')
- * @method Field\Table table($column, $callback)
- * @method Field\ListField list($column, $label = '')
- * @method Field\Timezone timezone($column, $label = '')
- * @method Field\KeyValue keyValue($column, $label = '')
- * @method Field\Tel tel($column, $label = '')
- *
- * @method Field\BootstrapFile bootstrapFile($column, $label = '')
- * @method Field\BootstrapImage bootstrapImage($column, $label = '')
- * @method Field\BootstrapMultipleImage bootstrapMultipleImage($column, $label = '')
- * @method Field\BootstrapMultipleFile bootstrapMultipleFile($column, $label = '')
- */
- class Form implements Renderable
- {
- use HasHtmlAttributes, Macroable {
- __call as macroCall;
- }
- /**
- * @var Field[]
- */
- protected $fields = [];
- /**
- * @var bool
- */
- protected $useAjaxSubmit = true;
- /**
- * @var Fluent
- */
- protected $data;
- /**
- * @var mixed
- */
- protected $primaryKey;
- /**
- * Available buttons.
- *
- * @var array
- */
- protected $buttons = ['reset', 'submit'];
- /**
- * @var bool
- */
- protected $useFormTag = true;
- /**
- * @var string
- */
- protected $formId;
- /**
- * @var array
- */
- protected $width = [
- 'label' => 2,
- 'field' => 8,
- ];
- /**
- * Form constructor.
- *
- * @param array $data
- * @param mixed $key
- */
- public function __construct($data = [], $key = null)
- {
- $this->data($data);
- $this->key($key);
- $this->initFormAttributes();
- }
- /**
- * Initialize the form attributes.
- */
- protected function initFormAttributes()
- {
- $this->setHtmlAttribute([
- 'method' => 'POST',
- 'action' => '',
- 'class' => 'form-horizontal',
- 'accept-charset' => 'UTF-8',
- 'pjax-container' => true,
- ]);
- }
- /**
- * Action uri of the form.
- *
- * @param string $action
- *
- * @return $this
- */
- public function action($action)
- {
- return $this->setHtmlAttribute('action', $action);
- }
- /**
- * @return mixed
- */
- public function getAction()
- {
- return $this->getHtmlAttribute('action');
- }
- /**
- * Method of the form.
- *
- * @param string $method
- *
- * @return $this
- */
- public function method($method = 'POST')
- {
- return $this->setHtmlAttribute('method', strtoupper($method));
- }
- /**
- * Set primary key.
- *
- * @param mixed $value
- * @return $this
- */
- public function key($value)
- {
- $this->primaryKey = $value;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getKey()
- {
- return $this->primaryKey;
- }
- /**
- * @param $data
- * @return $this
- */
- public function data($data)
- {
- $this->data = new Fluent(Helper::array($data));
- return $this;
- }
- /**
- * @return Fluent
- */
- public function model()
- {
- if (! $this->data) {
- $this->data([]);
- }
- return $this->data;
- }
- /**
- * Add a fieldset to form.
- *
- * @param string $title
- * @param Closure $setCallback
- *
- * @return Field\Fieldset
- */
- public function fieldset(string $title, Closure $setCallback)
- {
- $fieldset = new Field\Fieldset();
- $this->html($fieldset->start($title))->plain();
- $setCallback($this);
- $this->html($fieldset->end())->plain();
- return $fieldset;
- }
- /**
- * Get specify field.
- *
- * @param string $name
- * @return Field|null
- */
- public function field($name)
- {
- foreach ($this->fields as $field) {
- if ($field->column() === $name) {
- return $field;
- }
- }
- }
- /**
- * Disable Pjax.
- *
- * @return $this
- */
- public function disablePjax()
- {
- $this->forgetHtmlAttribute('pjax-container');
- return $this;
- }
- /**
- * Disable form tag.
- *
- * @return $this;
- */
- public function disableFormTag()
- {
- $this->useFormTag = false;
- return $this;
- }
- /**
- * Disable reset button.
- *
- * @return $this
- */
- public function disableResetButton()
- {
- array_delete($this->buttons, 'reset');
- return $this;
- }
- /**
- * Disable submit button.
- *
- * @return $this
- */
- public function disableSubmitButton()
- {
- array_delete($this->buttons, 'submit');
- return $this;
- }
- /**
- * Set field and label width in current form.
- *
- * @param int $fieldWidth
- * @param int $labelWidth
- *
- * @return $this
- */
- public function setWidth($fieldWidth = 8, $labelWidth = 2)
- {
- $this->width = [
- 'label' => $labelWidth,
- 'field' => $fieldWidth,
- ];
- collect($this->fields)->each(function ($field) use ($fieldWidth, $labelWidth) {
- /* @var Field $field */
- $field->setWidth($fieldWidth, $labelWidth);
- });
- return $this;
- }
- /**
- * Find field class with given name.
- *
- * @param string $method
- *
- * @return bool|string
- */
- public static function findFieldClass($method)
- {
- $class = Arr::get(\Dcat\Admin\Form::getExtensions(), $method);
- if (class_exists($class)) {
- return $class;
- }
- return false;
- }
- /**
- * Add a form field to form.
- *
- * @param Field $field
- *
- * @return $this
- */
- public function pushField(Field &$field)
- {
- array_push($this->fields, $field);
- $field->setForm($this);
- $field->setWidth($this->width['field'], $this->width['label']);
- $field::collectAssets();
- return $this;
- }
- /**
- * Get variables for render form.
- *
- * @return array
- */
- protected function getVariables()
- {
- $this->setHtmlAttribute('id', $this->getFormId());
- foreach ($this->fields as $field) {
- $field->fill($this->model()->toArray());
- }
- return [
- 'start' => $this->open(),
- 'end' => $this->close(),
- 'fields' => $this->fields,
- 'method' => $this->getHtmlAttribute('method'),
- 'buttons' => $this->buttons,
- ];
- }
- /**
- * @return string
- */
- protected function open()
- {
- return <<<HTML
- <form {$this->formatHtmlAttributes()}>
- HTML;
- }
- /**
- * @return string
- */
- protected function close()
- {
- return '</form>';
- }
- /**
- * Determine if form fields has files.
- *
- * @return bool
- */
- public function hasFile()
- {
- foreach ($this->fields as $field) {
- if ($field instanceof Field\File) {
- return true;
- }
- }
- return false;
- }
- /**
- * @param $id
- * @return $this
- */
- public function setFormId($id)
- {
- $this->formId = $id;
- return $this;
- }
- /**
- * @return string
- */
- public function getFormId()
- {
- return $this->formId ?: ($this->formId = 'form-'.Str::random(8));
- }
- /**
- * Generate a Field object and add to form builder if Field exists.
- *
- * @param string $method
- * @param array $arguments
- *
- * @return Field|null
- */
- public function __call($method, $arguments)
- {
- if ($className = static::findFieldClass($method)) {
- $name = Arr::get($arguments, 0, '');
- $element = new $className($name, array_slice($arguments, 1));
- $this->pushField($element);
- return $element;
- }
- if (static::hasMacro($method)) {
- return $this->macroCall($method, $arguments);
- }
- }
- /**
- * Disable submit with ajax.
- *
- * @param bool $disable
- * @return $this
- */
- public function disableAjaxSubmit(bool $disable = true)
- {
- $this->useAjaxSubmit = !$disable;
- return $this;
- }
- /**
- * @return bool
- */
- public function allowAjaxSubmit()
- {
- return $this->useAjaxSubmit === true;
- }
- protected function setupSubmitScript()
- {
- Admin::script(
- <<<JS
- var f = $('#{$this->getFormId()}');
- f.find('[type="submit"]').click(function () {
- var t = $(this);
-
- LA.Form({
- \$form: f,
- before: function () {
- f.validator('validate');
-
- if (f.find('.has-error').length > 0) {
- return false;
- }
-
- t.button('loading');
- },
- after: function () {
- t.button('reset');
- }
- });
- return false;
- });
- JS
- );
- }
- /**
- * Render the form.
- *
- * @return string
- */
- public function render()
- {
- $this->useAjaxSubmit && $this->setupSubmitScript();
- return view('admin::widgets.form', $this->getVariables())->render();
- }
- /**
- * Output as string.
- *
- * @return string
- */
- public function __toString()
- {
- return $this->render();
- }
- }
|