-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathUserDataTable.php
153 lines (139 loc) · 4.45 KB
/
UserDataTable.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<?php
namespace App\DataTables;
use App\Models\CustomField;
use App\Models\User;
use Yajra\DataTables\Services\DataTable;
use Yajra\DataTables\EloquentDataTable;
use Barryvdh\DomPDF\Facade as PDF;
class UserDataTable extends DataTable
{
/**
* @var array
*/
public static $customFields = [];
/**
* Build DataTable class.
*
* @param mixed $query Results from query() method.
* @return \Yajra\DataTables\DataTableAbstract
*/
public function dataTable($query)
{
$dataTable = new EloquentDataTable($query);
$columns = array_column($this->getColumns(), 'data');
return $dataTable
->editColumn('activated_at', function ($user) {
return getDateColumn($user, 'activated_at');
})
->editColumn('updated_at', function ($user) {
return getDateColumn($user, 'updated_at');
})
->editColumn('role', function ($user) {
return getArrayColumn($user->roles, 'name');
})
->editColumn('email', function ($user) {
return getEmailColumn($user, 'email');
})
->editColumn('avatar', function ($user) {
return getMediaColumn($user, 'avatar', 'img-circle elevation-2');
})
->addColumn('action', 'settings.users.datatables_actions')
->rawColumns(array_merge($columns, ['action']));
}
/**
* Get query source of dataTable.
*
* @param \App\Models\User $model
* @return \Illuminate\Database\Eloquent\Builder
*/
public function query(User $model)
{
return $model->newQuery()->with('roles')->where('id', '!=', 1);
}
/**
* Optional method if you want to use html builder.
*
* @return \Yajra\DataTables\Html\Builder
*/
public function html()
{
return $this->builder()
->columns($this->getColumns())
->minifiedAjax()
->addAction(['title'=>trans('lang.actions'),'width' => '80px', 'printable' => false, 'responsivePriority' => '100'])
->parameters(array_merge(
config('datatables-buttons.parameters'), [
'language' => json_decode(
file_get_contents(base_path('resources/lang/'.app()->getLocale().'/datatable.json')
),true)
]
));
}
/**
* Get columns.
*
* @return array
*/
protected function getColumns()
{
// TODO custom element generator
$columns = [
[
'data' => 'avatar',
'title' => trans('lang.user_avatar'),
'orderable' => false, 'searchable' => false,
],
[
'data' => 'name',
'title' => trans('lang.user_name'),
],
[
'data' => 'email',
'title' => trans('lang.user_email'),
],
[
'data' => 'role',
'title' => trans('lang.user_role_id'),
'orderable' => false, 'searchable' => false,
],
[
'data' => 'updated_at',
'title' => trans('lang.user_updated_at'),
'searchable' => false,
]
];
// TODO custom element generator
$hasCustomField = in_array(User::class, setting('custom_field_models',[]));
if ($hasCustomField) {
$customFieldsCollection = CustomField::where('custom_field_model', User::class)->where('in_table', '=', true)->get();
foreach ($customFieldsCollection as $key => $field) {
array_splice($columns, $field->order - 1, 0, [[
'data' => 'custom_fields.' . $field->name . '.view',
'title' => trans('lang.user_' . $field->name),
'orderable' => false,
'searchable' => false,
]]);
}
}
return $columns;
}
/**
* Get filename for export.
*
* @return string
*/
protected function filename()
{
return 'usersdatatable_' . time();
}
/**
* Export PDF using DOMPDF
* @return mixed
*/
public function pdf()
{
$data = $this->getDataForPrint();
$pdf = PDF::loadView($this->printPreview, compact('data'));
return $pdf->download($this->filename() . '.pdf');
}
}