-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathNotificationDataTable.php
147 lines (132 loc) · 4.42 KB
/
NotificationDataTable.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
<?php
namespace App\DataTables;
use App\Models\CustomField;
use App\Models\Notification;
use Barryvdh\DomPDF\Facade as PDF;
use Yajra\DataTables\EloquentDataTable;
use Yajra\DataTables\Services\DataTable;
class NotificationDataTable extends DataTable
{
/**
* custom fields columns
* @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');
$dataTable = $dataTable
->editColumn('type', function ($notification) {
return ('lang.' . preg_replace(['/App\\\/', '/\\\/'], ['', '_'], $notification->type));
})
->editColumn('updated_at', function ($notification) {
return getDateColumn($notification, 'updated_at');
})
->editColumn('created_at', function ($notification) {
return getDateColumn($notification, 'created_at');
})
->editColumn('read_at', function ($notification) {
return getBooleanColumn($notification, 'read_at');
})
->addColumn('action', 'notifications.datatables_actions')
->rawColumns(array_merge($columns, ['action']));
return $dataTable;
}
/**
* Get columns.
*
* @return array
*/
protected function getColumns()
{
$columns = [
[
'data' => 'type',
'title' => trans('lang.notification_title'),
],
[
'data' => 'read_at',
'title' => trans('lang.notification_read'),
],
[
'data' => 'updated_at',
'title' => trans('lang.notification_read_at'),
'searchable' => false,
],
[
'data' => 'created_at',
'title' => trans('lang.notification_created_at'),
'searchable' => false,
]
];
$columns = array_filter($columns);
$hasCustomField = in_array(Notification::class, setting('custom_field_models', []));
if ($hasCustomField) {
$customFieldsCollection = CustomField::where('custom_field_model', Notification::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.notification_' . $field->name),
'orderable' => false,
'searchable' => false,
]]);
}
}
return $columns;
}
/**
* Get query source of dataTable.
*
* @param \App\Models\Notification $model
* @return \Illuminate\Database\Eloquent\Builder
*/
public function query(Notification $model)
{
return $model->newQuery()->where('notifications.notifiable_id', auth()->id())->select('notifications.*')->orderBy('notifications.updated_at', 'desc');
}
/**
* 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)
]
));
}
/**
* 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');
}
/**
* Get filename for export.
*
* @return string
*/
protected function filename()
{
return 'notificationsdatatable_' . time();
}
}