1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195 |
- <?php
- namespace Encore\Admin;
- use Closure;
- use Encore\Admin\Exception\Handler;
- use Encore\Admin\Grid\Column;
- use Encore\Admin\Grid\Displayers;
- use Encore\Admin\Grid\Exporter;
- use Encore\Admin\Grid\Exporters\AbstractExporter;
- use Encore\Admin\Grid\Filter;
- use Encore\Admin\Grid\HasElementNames;
- use Encore\Admin\Grid\Model;
- use Encore\Admin\Grid\Row;
- use Encore\Admin\Grid\Tools;
- use Illuminate\Database\Eloquent\Model as Eloquent;
- use Illuminate\Database\Eloquent\Relations;
- use Illuminate\Support\Collection;
- use Illuminate\Support\Facades\Input;
- use Jenssegers\Mongodb\Eloquent\Model as MongodbModel;
- class Grid
- {
- use HasElementNames;
- /**
- * The grid data model instance.
- *
- * @var \Encore\Admin\Grid\Model
- */
- protected $model;
- /**
- * Collection of all grid columns.
- *
- * @var \Illuminate\Support\Collection
- */
- protected $columns;
- /**
- * Collection of all data rows.
- *
- * @var \Illuminate\Support\Collection
- */
- protected $rows;
- /**
- * Rows callable fucntion.
- *
- * @var \Closure
- */
- protected $rowsCallback;
- /**
- * All column names of the grid.
- *
- * @var array
- */
- public $columnNames = [];
- /**
- * Grid builder.
- *
- * @var \Closure
- */
- protected $builder;
- /**
- * Mark if the grid is builded.
- *
- * @var bool
- */
- protected $builded = false;
- /**
- * All variables in grid view.
- *
- * @var array
- */
- protected $variables = [];
- /**
- * The grid Filter.
- *
- * @var \Encore\Admin\Grid\Filter
- */
- protected $filter;
- /**
- * Resource path of the grid.
- *
- * @var
- */
- protected $resourcePath;
- /**
- * Default primary key name.
- *
- * @var string
- */
- protected $keyName = 'id';
- /**
- * Export driver.
- *
- * @var string
- */
- protected $exporter;
- /**
- * View for grid to render.
- *
- * @var string
- */
- protected $view = 'admin::grid.table';
- /**
- * Per-page options.
- *
- * @var array
- */
- public $perPages = [10, 20, 30, 50, 100];
- /**
- * Default items count per-page.
- *
- * @var int
- */
- public $perPage = 20;
- /**
- * @var null 分页基础地址
- */
- public $paginatorBaseUrl = null;
- /**
- * Header tools.
- *
- * @var Tools
- */
- public $tools;
- /**
- * Callback for grid actions.
- *
- * @var Closure[]
- */
- protected $actionsCallback;
- /**
- * Options for grid.
- *
- * @var array
- */
- protected $options = [
- 'show_pagination' => true,
- 'show_tools' => true,
- 'show_filter' => true,
- 'show_exporter' => true,
- 'show_actions' => true,
- 'show_row_selector' => true,
- 'show_create_btn' => true,
- ];
- /**
- * @var Closure
- */
- protected $header;
- /**
- * @var Closure
- */
- protected $footer;
- /**
- * @var Closure
- */
- protected static $initCallback;
- /**
- * Create a new grid instance.
- *
- * @param Eloquent $model
- * @param Closure $builder
- */
- public function __construct(Eloquent $model, Closure $builder = null)
- {
- $this->keyName = $model->getKeyName();
- $this->model = new Model($model);
- $this->columns = new Collection();
- $this->rows = new Collection();
- $this->builder = $builder;
- $this->model()->setGrid($this);
- $this->setupTools();
- $this->setupFilter();
- $this->handleExportRequest();
- if (static::$initCallback instanceof Closure) {
- call_user_func(static::$initCallback, $this);
- }
- }
- /**
- * Initialize with user pre-defined default disables and exporter, etc.
- *
- * @param Closure $callback
- */
- public static function init(Closure $callback = null)
- {
- static::$initCallback = $callback;
- }
- /**
- * Setup grid tools.
- */
- public function setupTools()
- {
- $this->tools = new Tools($this);
- }
- /**
- * Setup grid filter.
- *
- * @return void
- */
- protected function setupFilter()
- {
- $this->filter = new Filter($this->model());
- }
- /**
- * Handle export request.
- *
- * @param bool $forceExport
- */
- protected function handleExportRequest($forceExport = false)
- {
- if (!$scope = request(Exporter::$queryName)) {
- return;
- }
- // clear output buffer.
- if (ob_get_length()) {
- ob_end_clean();
- }
- $this->model()->usePaginate(false);
- if ($this->builder) {
- call_user_func($this->builder, $this);
- $this->getExporter($scope)->export();
- }
- if ($forceExport) {
- $this->getExporter($scope)->export();
- }
- }
- /**
- * @param string $scope
- *
- * @return AbstractExporter
- */
- protected function getExporter($scope)
- {
- return (new Exporter($this))->resolve($this->exporter)->withScope($scope);
- }
- /**
- * Get or set option for grid.
- *
- * @param string $key
- * @param mixed $value
- *
- * @return $this|mixed
- */
- public function option($key, $value = null)
- {
- if (is_null($value)) {
- return $this->options[$key];
- }
- $this->options[$key] = $value;
- return $this;
- }
- /**
- * Get primary key name of model.
- *
- * @return string
- */
- public function getKeyName()
- {
- return $this->keyName ?: 'id';
- }
- /**
- * Add column to Grid.
- *
- * @param string $name
- * @param string $label
- *
- * @return Column
- */
- public function column($name, $label = '')
- {
- $relationName = $relationColumn = '';
- if (strpos($name, '.') !== false) {
- list($relationName, $relationColumn) = explode('.', $name);
- $relation = $this->model()->eloquent()->$relationName();
- $label = empty($label) ? ucfirst($relationColumn) : $label;
- $name = snake_case($relationName).'.'.$relationColumn;
- }
- $column = $this->addColumn($name, $label);
- if (isset($relation) && $relation instanceof Relations\Relation) {
- $this->model()->with($relationName);
- $column->setRelation($relationName, $relationColumn);
- }
- return $column;
- }
- /**
- * Batch add column to grid.
- *
- * @example
- * 1.$grid->columns(['name' => 'Name', 'email' => 'Email' ...]);
- * 2.$grid->columns('name', 'email' ...)
- *
- * @param array $columns
- *
- * @return Collection|null
- */
- public function columns($columns = [])
- {
- if (func_num_args() == 0) {
- return $this->columns;
- }
- if (func_num_args() == 1 && is_array($columns)) {
- foreach ($columns as $column => $label) {
- $this->column($column, $label);
- }
- return;
- }
- foreach (func_get_args() as $column) {
- $this->column($column);
- }
- }
- /**
- * Get all visible column instances.
- *
- * @return Collection|static
- */
- public function visibleColumns()
- {
- $visible = array_filter(explode(',', request(Tools\ColumnSelector::SELECT_COLUMN_NAME)));
- if (empty($visible)) {
- return $this->columns;
- }
- array_push($visible, '__row_selector__', '__actions__');
- return $this->columns->filter(function (Column $column) use ($visible) {
- return in_array($column->getName(), $visible);
- });
- }
- /**
- * Get all visible column names.
- *
- * @return array|static
- */
- public function visibleColumnNames()
- {
- $visible = array_filter(explode(',', request(Tools\ColumnSelector::SELECT_COLUMN_NAME)));
- if (empty($visible)) {
- return $this->columnNames;
- }
- array_push($visible, '__row_selector__', '__actions__');
- return collect($this->columnNames)->filter(function ($column) use ($visible) {
- return in_array($column, $visible);
- });
- }
- /**
- * Add column to grid.
- *
- * @param string $column
- * @param string $label
- *
- * @return Column
- */
- protected function addColumn($column = '', $label = '')
- {
- $column = new Column($column, $label);
- $column->setGrid($this);
- return tap($column, function ($value) {
- $this->columns->push($value);
- });
- }
- /**
- * Prepend column to grid.
- *
- * @param string $column
- * @param string $label
- *
- * @return Column
- */
- protected function prependColumn($column = '', $label = '')
- {
- $column = new Column($column, $label);
- $column->setGrid($this);
- return tap($column, function ($value) {
- $this->columns->prepend($value);
- });
- }
- /**
- * Get Grid model.
- *
- * @return Model
- */
- public function model()
- {
- return $this->model;
- }
- /**
- * Paginate the grid.
- *
- * @param int $perPage
- *
- * @return void
- */
- public function paginate($perPage = 20)
- {
- $this->perPage = $perPage;
- $this->model()->paginate($perPage);
- }
- /**
- * Get the grid paginator.
- *
- * @return mixed
- */
- public function paginator()
- {
- return new Tools\Paginator($this);
- }
- public function setPaginatorBaseUrl($url)
- {
- $this->paginatorBaseUrl = $url;
- return $this;
- }
- /**
- * Disable grid pagination.
- *
- * @return $this
- */
- public function disablePagination(bool $disable = true)
- {
- $this->model->usePaginate(!$disable);
- return $this->option('show_pagination', !$disable);
- }
- /**
- * If this grid use pagination.
- *
- * @return bool
- */
- public function showPagination()
- {
- return $this->option('show_pagination');
- }
- /**
- * Set per-page options.
- *
- * @param array $perPages
- */
- public function perPages(array $perPages)
- {
- $this->perPages = $perPages;
- }
- /**
- * Disable all actions.
- *
- * @return $this
- */
- public function disableActions(bool $disable = true)
- {
- return $this->option('show_actions', !$disable);
- }
- /**
- * Set grid action callback.
- *
- * @param Closure $callback
- *
- * @return $this
- */
- public function actions(Closure $callback)
- {
- $this->actionsCallback[] = $callback;
- return $this;
- }
- /**
- * Add `actions` column for grid.
- *
- * @return void
- */
- protected function appendActionsColumn()
- {
- if (!$this->option('show_actions')) {
- return;
- }
- $this->addColumn('__actions__', trans('admin.action'))
- ->displayUsing(Displayers\Actions::class, $this->actionsCallback);
- }
- /**
- * Disable row selector.
- *
- * @return Grid|mixed
- */
- public function disableRowSelector(bool $disable = true)
- {
- $this->tools->disableBatchActions($disable);
- return $this->option('show_row_selector', !$disable);
- }
- /**
- * Prepend checkbox column for grid.
- *
- * @return void
- */
- protected function prependRowSelectorColumn()
- {
- if (!$this->option('show_row_selector')) {
- return;
- }
- $this->prependColumn(Column::SELECT_COLUMN_NAME, ' ')
- ->displayUsing(Displayers\RowSelector::class);
- }
- /**
- * Build the grid.
- *
- * @return void
- */
- public function build()
- {
- if ($this->builded) {
- return;
- }
- $collection = $this->processFilter(false);
- $data = $collection->toArray();
- $this->prependRowSelectorColumn();
- $this->appendActionsColumn();
- Column::setOriginalGridModels($collection);
- $this->columns->map(function (Column $column) use (&$data) {
- $data = $column->fill($data);
- $this->columnNames[] = $column->getName();
- });
- $this->buildRows($data);
- $this->builded = true;
- }
- /**
- * Disable header tools.
- *
- * @return $this
- */
- public function disableTools(bool $disable = true)
- {
- return $this->option('show_tools', !$disable);
- }
- /**
- * Disable grid filter.
- *
- * @return $this
- */
- public function disableFilter(bool $disable = true)
- {
- $this->tools->disableFilterButton($disable);
- return $this->option('show_filter', !$disable);
- }
- /**
- * Get filter of Grid.
- *
- * @return Filter
- */
- public function getFilter()
- {
- return $this->filter;
- }
- /**
- * Process the grid filter.
- *
- * @param bool $toArray
- *
- * @return array|Collection|mixed
- */
- public function processFilter($toArray = true)
- {
- if ($this->builder) {
- call_user_func($this->builder, $this);
- }
- return $this->filter->execute($toArray);
- }
- /**
- * Set the grid filter.
- *
- * @param Closure $callback
- */
- public function filter(Closure $callback)
- {
- call_user_func($callback, $this->filter);
- }
- /**
- * Render the grid filter.
- *
- * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View|string
- */
- public function renderFilter()
- {
- if (!$this->option('show_filter')) {
- return '';
- }
- return $this->filter->render();
- }
- /**
- * Expand filter.
- *
- * @return $this
- */
- public function expandFilter()
- {
- $this->filter->expand();
- return $this;
- }
- /**
- * Build the grid rows.
- *
- * @param array $data
- *
- * @return void
- */
- protected function buildRows(array $data)
- {
- $this->rows = collect($data)->map(function ($model, $number) {
- return new Row($number, $model);
- });
- if ($this->rowsCallback) {
- $this->rows->map($this->rowsCallback);
- }
- }
- /**
- * Set grid row callback function.
- *
- * @param Closure $callable
- *
- * @return Collection|null
- */
- public function rows(Closure $callable = null)
- {
- if (is_null($callable)) {
- return $this->rows;
- }
- $this->rowsCallback = $callable;
- }
- /**
- * Setup grid tools.
- *
- * @param Closure $callback
- *
- * @return void
- */
- public function tools(Closure $callback)
- {
- call_user_func($callback, $this->tools);
- }
- /**
- * Render custom tools.
- *
- * @return string
- */
- public function renderHeaderTools()
- {
- return $this->tools->render();
- }
- /**
- * Set exporter driver for Grid to export.
- *
- * @param $exporter
- *
- * @return $this
- */
- public function exporter($exporter)
- {
- $this->exporter = $exporter;
- return $this;
- }
- /**
- * Get the export url.
- *
- * @param int $scope
- * @param null $args
- *
- * @return string
- */
- public function getExportUrl($scope = 1, $args = null)
- {
- $input = array_merge(Input::all(), Exporter::formatExportQuery($scope, $args));
- if ($constraints = $this->model()->getConstraints()) {
- $input = array_merge($input, $constraints);
- }
- return $this->resource().'?'.http_build_query($input);
- }
- /**
- * Get create url.
- *
- * @return string
- */
- public function getCreateUrl()
- {
- $queryString = '';
- if ($constraints = $this->model()->getConstraints()) {
- $queryString = http_build_query($constraints);
- }
- return sprintf('%s/create%s',
- $this->resource(),
- $queryString ? ('?'.$queryString) : ''
- );
- }
- /**
- * If grid show header tools.
- *
- * @return bool
- */
- public function showTools()
- {
- return $this->option('show_tools');
- }
- /**
- * If grid show export btn.
- *
- * @return bool
- */
- public function showExportBtn()
- {
- return $this->option('show_exporter');
- }
- /**
- * Disable export.
- *
- * @return $this
- */
- public function disableExport(bool $disable = true)
- {
- return $this->option('show_exporter', !$disable);
- }
- /**
- * Render export button.
- *
- * @return string
- */
- public function renderExportButton()
- {
- return (new Tools\ExportButton($this))->render();
- }
- /**
- * Alias for method `disableCreateButton`.
- *
- * @return $this
- *
- * @deprecated
- */
- public function disableCreation()
- {
- return $this->disableCreateButton();
- }
- /**
- * Remove create button on grid.
- *
- * @return $this
- */
- public function disableCreateButton(bool $disable = true)
- {
- return $this->option('show_create_btn', !$disable);
- }
- /**
- * If allow creation.
- *
- * @return bool
- */
- public function showCreateBtn()
- {
- return $this->option('show_create_btn');
- }
- /**
- * Render create button for grid.
- *
- * @return string
- */
- public function renderCreateButton()
- {
- return (new Tools\CreateButton($this))->render();
- }
- /**
- * @return string
- */
- public function renderColumnSelector()
- {
- return (new Grid\Tools\ColumnSelector($this))->render();
- }
- /**
- * Set grid header.
- *
- * @param Closure|null $closure
- *
- * @return $this|Closure
- */
- public function header(Closure $closure = null)
- {
- if (!$closure) {
- return $this->header;
- }
- $this->header = $closure;
- return $this;
- }
- /**
- * Render grid header.
- *
- * @return Tools\Header|string
- */
- public function renderHeader()
- {
- if (!$this->header) {
- return '';
- }
- return (new Tools\Header($this))->render();
- }
- /**
- * Set grid footer.
- *
- * @param Closure|null $closure
- *
- * @return $this|Closure
- */
- public function footer(Closure $closure = null)
- {
- if (!$closure) {
- return $this->footer;
- }
- $this->footer = $closure;
- return $this;
- }
- /**
- * Render grid footer.
- *
- * @return Tools\Footer|string
- */
- public function renderFooter()
- {
- if (!$this->footer) {
- return '';
- }
- return (new Tools\Footer($this))->render();
- }
- /**
- * Get current resource uri.
- *
- * @param string $path
- *
- * @return string
- */
- public function resource($path = null)
- {
- if (!empty($path)) {
- $this->resourcePath = $path;
- return $this;
- }
- if (!empty($this->resourcePath)) {
- return $this->resourcePath;
- }
- return app('request')->getPathInfo();
- }
- /**
- * Handle get mutator column for grid.
- *
- * @param string $method
- * @param string $label
- *
- * @return bool|Column
- */
- protected function handleGetMutatorColumn($method, $label)
- {
- if ($this->model()->eloquent()->hasGetMutator($method)) {
- return $this->addColumn($method, $label);
- }
- return false;
- }
- /**
- * Handle relation column for grid.
- *
- * @param string $method
- * @param string $label
- *
- * @return bool|Column
- */
- protected function handleRelationColumn($method, $label)
- {
- $model = $this->model()->eloquent();
- if (!method_exists($model, $method)) {
- return false;
- }
- if (!($relation = $model->$method()) instanceof Relations\Relation) {
- return false;
- }
- if ($relation instanceof Relations\HasOne ||
- $relation instanceof Relations\BelongsTo ||
- $relation instanceof Relations\MorphOne
- ) {
- $this->model()->with($method);
- return $this->addColumn($method, $label)->setRelation(snake_case($method));
- }
- if ($relation instanceof Relations\HasMany
- || $relation instanceof Relations\BelongsToMany
- || $relation instanceof Relations\MorphToMany
- ) {
- $this->model()->with($method);
- return $this->addColumn(snake_case($method), $label);
- }
- return false;
- }
- /**
- * Dynamically add columns to the grid view.
- *
- * @param $method
- * @param $arguments
- *
- * @return Column
- */
- public function __call($method, $arguments)
- {
- $label = isset($arguments[0]) ? $arguments[0] : ucfirst($method);
- if ($this->model()->eloquent() instanceof MongodbModel) {
- return $this->addColumn($method, $label);
- }
- if ($column = $this->handleGetMutatorColumn($method, $label)) {
- return $column;
- }
- if ($column = $this->handleRelationColumn($method, $label)) {
- return $column;
- }
- return $this->addColumn($method, $label);
- }
- /**
- * Register column displayers.
- *
- * @return void.
- */
- public static function registerColumnDisplayer()
- {
- $map = [
- 'editable' => Displayers\Editable::class,
- 'switch' => Displayers\SwitchDisplay::class,
- 'switchGroup' => Displayers\SwitchGroup::class,
- 'select' => Displayers\Select::class,
- 'image' => Displayers\Image::class,
- 'label' => Displayers\Label::class,
- 'button' => Displayers\Button::class,
- 'link' => Displayers\Link::class,
- 'badge' => Displayers\Badge::class,
- 'progressBar' => Displayers\ProgressBar::class,
- 'radio' => Displayers\Radio::class,
- 'checkbox' => Displayers\Checkbox::class,
- 'orderable' => Displayers\Orderable::class,
- 'table' => Displayers\Table::class,
- 'expand' => Displayers\Expand::class,
- 'modal' => Displayers\Modal::class,
- ];
- foreach ($map as $abstract => $class) {
- Column::extend($abstract, $class);
- }
- }
- /**
- * Add variables to grid view.
- *
- * @param array $variables
- *
- * @return $this
- */
- public function with($variables = [])
- {
- $this->variables = $variables;
- return $this;
- }
- /**
- * Get all variables will used in grid view.
- *
- * @return array
- */
- protected function variables()
- {
- $this->variables['grid'] = $this;
- return $this->variables;
- }
- /**
- * Set a view to render.
- *
- * @param string $view
- * @param array $variables
- */
- public function setView($view, $variables = [])
- {
- if (!empty($variables)) {
- $this->with($variables);
- }
- $this->view = $view;
- }
- /**
- * Set grid title.
- *
- * @param string $title
- *
- * @return $this
- */
- public function setTitle($title)
- {
- $this->variables['title'] = $title;
- return $this;
- }
- /**
- * Set relation for grid.
- *
- * @param Relations\Relation $relation
- *
- * @return $this
- */
- public function setRelation(Relations\Relation $relation)
- {
- $this->model()->setRelation($relation);
- return $this;
- }
- /**
- * Set resource path for grid.
- *
- * @param string $path
- *
- * @return $this
- */
- public function setResource($path)
- {
- $this->resourcePath = $path;
- return $this;
- }
- /**
- * Get the string contents of the grid view.
- *
- * @return string
- */
- public function render()
- {
- $this->handleExportRequest(true);
- try {
- $this->build();
- } catch (\Exception $e) {
- return Handler::renderException($e);
- }
- return view($this->view, $this->variables())->render();
- }
- }
|