1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/Services/DatatableService.php

122 lines
4.9 KiB
PHP
Raw Normal View History

2015-11-05 23:37:04 +01:00
<?php namespace App\Services;
2016-03-02 14:36:42 +01:00
use HtmlString;
2015-11-05 23:37:04 +01:00
use Utils;
use Datatable;
2016-03-16 00:08:00 +01:00
use Auth;
2015-11-05 23:37:04 +01:00
class DatatableService
{
public function createDatatable($entityType, $query, $columns, $actions = null, $showCheckbox = true, $orderColumns = [])
2015-11-05 23:37:04 +01:00
{
$table = Datatable::query($query);
$calculateOrderColumns = empty($orderColumns);
2015-11-05 23:37:04 +01:00
if ($actions && $showCheckbox) {
$table->addColumn('checkbox', function ($model) {
$can_edit = Auth::user()->hasPermission('edit_all') || (isset($model->user_id) && Auth::user()->id == $model->user_id);
return !$can_edit?'':'<input type="checkbox" name="ids[]" value="' . $model->public_id
2015-11-29 17:00:50 +01:00
. '" ' . Utils::getEntityRowClass($model) . '>';
2015-11-05 23:37:04 +01:00
});
}
foreach ($columns as $column) {
// set visible to true by default
if (count($column) == 2) {
$column[] = true;
}
list($field, $value, $visible) = $column;
if ($visible) {
$table->addColumn($field, $value);
if ($calculateOrderColumns) {
$orderColumns[] = $field;
}
2015-11-05 23:37:04 +01:00
}
}
if ($actions) {
$this->createDropdown($entityType, $table, $actions);
}
return $table->orderColumns($orderColumns)->make();
}
private function createDropdown($entityType, $table, $actions)
{
$table->addColumn('dropdown', function ($model) use ($entityType, $actions) {
2016-02-17 20:33:15 +01:00
$hasAction = false;
2015-12-13 21:12:54 +01:00
$str = '<center style="min-width:100px">';
2015-11-06 00:14:00 +01:00
2016-03-16 00:08:00 +01:00
$can_edit = Auth::user()->hasPermission('edit_all') || (isset($model->user_id) && Auth::user()->id == $model->user_id);
2015-11-06 00:14:00 +01:00
if (property_exists($model, 'is_deleted') && $model->is_deleted) {
2015-12-09 17:08:24 +01:00
$str .= '<button type="button" class="btn btn-sm btn-danger tr-status">'.trans('texts.deleted').'</button>';
2015-11-06 00:14:00 +01:00
} elseif ($model->deleted_at && $model->deleted_at !== '0000-00-00') {
2015-12-09 17:08:24 +01:00
$str .= '<button type="button" class="btn btn-sm btn-warning tr-status">'.trans('texts.archived').'</button>';
2015-11-06 00:14:00 +01:00
} else {
2015-12-09 17:08:24 +01:00
$str .= '<div class="tr-status"></div>';
2015-11-06 00:14:00 +01:00
}
2015-12-13 21:12:54 +01:00
$str .= '<div class="btn-group tr-action" style="height:auto;display:none">
2015-12-09 16:54:24 +01:00
<button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" style="width:100px">
2015-11-05 23:37:04 +01:00
'.trans('texts.select').' <span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu">';
$lastIsDivider = false;
if (!$model->deleted_at || $model->deleted_at == '0000-00-00') {
foreach ($actions as $action) {
if (count($action)) {
if (count($action) == 2) {
$action[] = function() {
return true;
};
}
list($value, $url, $visible) = $action;
if ($visible($model)) {
2016-03-16 00:08:00 +01:00
if($value == '--divider--'){
$str .= "<li class=\"divider\"></li>";
$lastIsDivider = true;
}
else {
$str .= "<li><a href=\"{$url($model)}\">{$value}</a></li>";
$hasAction = true;
$lastIsDivider = false;
}
2015-11-05 23:37:04 +01:00
}
} elseif ( ! $lastIsDivider) {
$str .= "<li class=\"divider\"></li>";
$lastIsDivider = true;
}
}
2016-02-17 20:33:15 +01:00
if ( ! $hasAction) {
return '';
}
2016-03-16 00:08:00 +01:00
if ( $can_edit && ! $lastIsDivider) {
2015-11-05 23:37:04 +01:00
$str .= "<li class=\"divider\"></li>";
}
2016-03-16 00:08:00 +01:00
if (($entityType != ENTITY_USER || $model->public_id) && $can_edit) {
2015-11-29 17:00:50 +01:00
$str .= "<li><a href=\"javascript:archiveEntity({$model->public_id})\">"
. trans("texts.archive_{$entityType}") . "</a></li>";
2015-11-21 22:10:26 +01:00
}
2016-03-16 00:08:00 +01:00
} else if($can_edit) {
2015-11-29 17:00:50 +01:00
$str .= "<li><a href=\"javascript:restoreEntity({$model->public_id})\">"
. trans("texts.restore_{$entityType}") . "</a></li>";
2015-11-05 23:37:04 +01:00
}
2016-03-16 00:08:00 +01:00
if (property_exists($model, 'is_deleted') && !$model->is_deleted && $can_edit) {
2015-11-29 17:00:50 +01:00
$str .= "<li><a href=\"javascript:deleteEntity({$model->public_id})\">"
. trans("texts.delete_{$entityType}") . "</a></li>";
2015-11-05 23:37:04 +01:00
}
2015-12-09 16:54:24 +01:00
return $str.'</ul></div></center>';
2015-11-05 23:37:04 +01:00
});
}
}