123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546 |
- <?php
- namespace Dcat\Admin;
- use Closure;
- use Dcat\Admin\Traits\BuilderEvents;
- use Dcat\Admin\Tree\Tools;
- use Illuminate\Contracts\Support\Renderable;
- use Illuminate\Database\Eloquent\Model;
- use Illuminate\Support\Traits\Macroable;
- class Tree implements Renderable
- {
- use BuilderEvents,
- Macroable;
- /**
- * @var array
- */
- protected $items = [];
- /**
- * @var string
- */
- protected $elementId = 'tree-';
- /**
- * @var Model
- */
- protected $model;
- /**
- * @var \Closure
- */
- protected $queryCallback;
- /**
- * View of tree to render.
- *
- * @var string
- */
- protected $view = [
- 'tree' => 'admin::tree',
- 'branch' => 'admin::tree.branch',
- ];
- /**
- * @var \Closure
- */
- protected $callback;
- /**
- * @var null
- */
- protected $branchCallback = null;
- /**
- * @var string
- */
- public $path;
- /**
- * @var bool
- */
- public $useCreate = true;
- /**
- * @var bool
- */
- public $useQuickCreate = true;
- /**
- * @var array
- */
- public $dialogFormDimensions = ['700px', '620px'];
- /**
- * @var bool
- */
- public $useSave = true;
- /**
- * @var bool
- */
- public $useRefresh = true;
- /**
- * @var bool
- */
- public $useEdit = true;
- /**
- * @var bool
- */
- public $useQuickEdit = true;
- /**
- * @var bool
- */
- public $useDelete = true;
- /**
- * @var array
- */
- protected $nestableOptions = [];
- /**
- * Header tools.
- *
- * @var Tools
- */
- public $tools;
- /**
- * @var Closure
- */
- protected $wrapper;
- /**
- * Menu constructor.
- *
- * @param Model|null $model
- */
- public function __construct(Model $model = null, \Closure $callback = null)
- {
- $this->model = $model;
- $this->path = $this->path ?: request()->getPathInfo();
- $this->elementId .= uniqid();
- $this->setupTools();
- $this->collectAssets();
- if ($callback instanceof \Closure) {
- call_user_func($callback, $this);
- }
- $this->initBranchCallback();
- $this->callResolving();
- }
- /**
- * Setup tree tools.
- */
- public function setupTools()
- {
- $this->tools = new Tools($this);
- }
- protected function collectAssets()
- {
- Admin::collectComponentAssets('jquery.nestable');
- }
- /**
- * Initialize branch callback.
- *
- * @return void
- */
- protected function initBranchCallback()
- {
- if (is_null($this->branchCallback)) {
- $this->branchCallback = function ($branch) {
- $key = $branch[$this->model->getKeyName()];
- $title = $branch[$this->model->getTitleColumn()];
- return "$key - $title";
- };
- }
- }
- /**
- * Set branch callback.
- *
- * @param \Closure $branchCallback
- *
- * @return $this
- */
- public function branch(\Closure $branchCallback)
- {
- $this->branchCallback = $branchCallback;
- return $this;
- }
- /**
- * Set query callback this tree.
- *
- * @return Model
- */
- public function query(\Closure $callback)
- {
- $this->queryCallback = $callback;
- return $this;
- }
- /**
- * Set nestable options.
- *
- * @param array $options
- *
- * @return $this
- */
- public function nestable($options = [])
- {
- $this->nestableOptions = array_merge($this->nestableOptions, $options);
- return $this;
- }
- /**
- * Disable create.
- *
- * @return void
- */
- public function disableCreateButton()
- {
- $this->useCreate = false;
- }
- public function disableQuickCreateButton()
- {
- $this->useQuickCreate = false;
- }
- /**
- * @param string $width
- * @param string $height
- * @return $this
- */
- public function setdialogFormDimensions(string $width, string $height)
- {
- $this->dialogFormDimensions = [$width, $height];
- return $this;
- }
- /**
- * Disable save.
- *
- * @return void
- */
- public function disableSaveButton()
- {
- $this->useSave = false;
- }
- /**
- * Disable refresh.
- *
- * @return void
- */
- public function disableRefreshButton()
- {
- $this->useRefresh = false;
- }
- public function disableQuickEditButton()
- {
- $this->useQuickEdit = false;
- }
- public function disableEditButton()
- {
- $this->useEdit = false;
- }
- public function disableDeleteButton()
- {
- $this->useDelete = false;
- }
- /**
- * @param Closure $closure
- * @return $this;
- */
- public function wrap(\Closure $closure)
- {
- $this->wrapper = $closure;
- return $this;
- }
- /**
- * @return bool
- */
- public function hasWrapper()
- {
- return $this->wrapper ? true : false;
- }
- /**
- * Save tree order from a input.
- *
- * @param string $serialize
- *
- * @return bool
- */
- public function saveOrder($serialize)
- {
- $tree = json_decode($serialize, true);
- if (json_last_error() != JSON_ERROR_NONE) {
- throw new \InvalidArgumentException(json_last_error_msg());
- }
- $this->model->saveOrder($tree);
- return true;
- }
- /**
- * Build tree grid scripts.
- *
- * @return string
- */
- protected function script()
- {
- $deleteConfirm = trans('admin.delete_confirm');
- $saveSucceeded = trans('admin.save_succeeded');
- $deleteSucceeded = trans('admin.delete_succeeded');
- $confirm = trans('admin.confirm');
- $cancel = trans('admin.cancel');
- $nestableOptions = json_encode($this->nestableOptions);
- return <<<JS
- $('#{$this->elementId}').nestable($nestableOptions);
- $('.tree_branch_delete').click(function() {
- var id = $(this).data('id');
-
- LA.confirm("$deleteConfirm", function () {
- LA.NP.start();
- $.ajax({
- method: 'post',
- url: '{$this->path}/' + id,
- data: {
- _method:'delete',
- _token:LA.token,
- },
- success: function (data) {
- LA.NP.done();
- if (typeof data === 'object') {
- if (data.status) {
- LA.reload();
- LA.success("$deleteSucceeded");
- } else {
- LA.error(data.message || 'Delete failed.');
- }
- }
- }
- });
- }, "$confirm", "$cancel");
- });
- $('.{$this->elementId}-save').click(function () {
- var serialize = $('#{$this->elementId}').nestable('serialize');
- LA.NP.start();
- $.post('{$this->path}', {
- _token: LA.token,
- _order: JSON.stringify(serialize)
- },
- function(data){
- LA.NP.done();
- LA.reload();
- LA.success('{$saveSucceeded}');
- });
- });
- $('.{$this->elementId}-tree-tools').on('click', function(e){
- var action = $(this).data('action');
- if (action === 'expand') {
- $('.dd').nestable('expandAll');
- }
- if (action === 'collapse') {
- $('.dd').nestable('collapseAll');
- }
- });
- JS;
- }
- /**
- * Set view of tree.
- *
- * @param string $view
- */
- public function setView($view)
- {
- $this->view = $view;
- }
- /**
- * Return all items of the tree.
- *
- * @param array $items
- */
- public function getItems()
- {
- return $this->model->withQuery($this->queryCallback)->toTree();
- }
- /**
- * Variables in tree template.
- *
- * @return array
- */
- public function variables()
- {
- return [
- 'id' => $this->elementId,
- 'tools' => $this->tools->render(),
- 'items' => $this->getItems(),
- 'useCreate' => $this->useCreate,
- 'useQuickCreate' => $this->useQuickCreate,
- 'useSave' => $this->useSave,
- 'useRefresh' => $this->useRefresh,
- 'useEdit' => $this->useEdit,
- 'useQuickEdit' => $this->useQuickEdit,
- 'useDelete' => $this->useDelete,
- 'createButton' => $this->renderCreateButton(),
- ];
- }
- /**
- * Setup grid tools.
- *
- * @param Closure $callback
- *
- * @return void
- */
- public function tools(Closure $callback)
- {
- call_user_func($callback, $this->tools);
- }
- /**
- * @return string
- */
- protected function renderCreateButton()
- {
- if (!$this->useQuickCreate && !$this->useCreate) {
- return '';
- }
- $url = $this->path . '/create';
- $new = trans('admin.new');
- $quickBtn = $btn = '';
- if ($this->useCreate) {
- $btn = "<a href='{$url}' class='btn btn-sm btn-success'><i class='ti-plus'></i><span class='hidden-xs'> {$new}</span></a>";
- }
- if ($this->useQuickCreate) {
- $text = $this->useCreate ? '' : "<span class='hidden-xs'> $new</span>";
- $quickBtn = "<a data-url='$url' class='btn btn-sm btn-success tree-quick-create'><i class=' fa fa-clone'></i>$text</a>";
- }
- return "<div class='btn-group pull-right' style='margin-right:3px'>{$btn}{$quickBtn}</div>";
- }
- /**
- * Render a tree.
- *
- * @return \Illuminate\Http\JsonResponse|string
- */
- public function render()
- {
- try {
- $this->callResolving();
- if ($this->useQuickEdit) {
- list($width, $height) = $this->dialogFormDimensions;
- Form::popup(trans('admin.edit'))
- ->click('.tree-quick-edit')
- ->success('LA.reload()')
- ->dimensions($width, $height)
- ->render();
- }
- if ($this->useQuickCreate) {
- list($width, $height) = $this->dialogFormDimensions;
- Form::popup(trans('admin.new'))
- ->click('.tree-quick-create')
- ->success('LA.reload()')
- ->dimensions($width, $height)
- ->render();
- }
- Admin::script($this->script());
- view()->share([
- 'path' => url($this->path),
- 'keyName' => $this->model->getKeyName(),
- 'branchView' => $this->view['branch'],
- 'branchCallback' => $this->branchCallback,
- ]);
- return $this->doWrap();
- } catch (\Throwable $e) {
- return Admin::makeExceptionHandler()->renderException($e);
- }
- }
- /**
- * @return string
- */
- protected function doWrap()
- {
- $view = view($this->view['tree'], $this->variables());
- if (!$wrapper = $this->wrapper) {
- return "<div class='box box-default'>{$view->render()}</div>";
- }
- return $wrapper($view);
- }
- /**
- * Get the string contents of the grid view.
- *
- * @return string
- */
- public function __toString()
- {
- return $this->render();
- }
- /**
- * Create a tree instance.
- *
- * @param Model|null $model
- * @param Closure|null $callback
- * @return Tree
- */
- public static function make(Model $model = null, \Closure $callback = null)
- {
- return new static($model, $callback);
- }
- }
|