1
|
|
|
<?php |
2
|
|
|
namespace Nayjest\Grids; |
3
|
|
|
|
4
|
|
|
use Illuminate\Database\Eloquent\Builder; |
5
|
|
|
use Event; |
6
|
|
|
use Illuminate\Foundation\Application; |
7
|
|
|
use Illuminate\Support\Collection; |
8
|
|
|
|
9
|
|
|
class CollectionDataProvider extends DataProvider |
10
|
|
|
{ |
11
|
|
|
protected $collection; |
12
|
|
|
|
13
|
|
|
protected $paginator; |
14
|
|
|
|
15
|
|
|
/** @var $iterator \ArrayIterator */ |
16
|
|
|
protected $iterator; |
17
|
|
|
|
18
|
|
|
/** |
19
|
|
|
* Constructor. |
20
|
|
|
* |
21
|
|
|
* @param Builder $src |
22
|
|
|
*/ |
23
|
|
|
public function __construct(Collection $src) |
24
|
|
|
{ |
25
|
|
|
parent::__construct($src); |
26
|
|
|
} |
27
|
|
|
|
28
|
|
|
/** |
29
|
|
|
* {@inheritdoc} |
30
|
|
|
*/ |
31
|
|
|
public function reset() |
32
|
|
|
{ |
33
|
|
|
$this->getIterator()->rewind(); |
34
|
|
|
return $this; |
35
|
|
|
} |
36
|
|
|
|
37
|
|
|
/** |
38
|
|
|
* {@inheritdoc} |
39
|
|
|
*/ |
40
|
|
|
public function getCollection() |
41
|
|
|
{ |
42
|
|
|
return $this->src; |
43
|
|
|
} |
44
|
|
|
|
45
|
|
|
public function getPaginator() |
46
|
|
|
{ |
47
|
|
|
if (!$this->paginator) { |
48
|
|
|
$this->paginator = new \Illuminate\Pagination\Paginator($this->src, $this->src->count()); |
49
|
|
|
} |
50
|
|
|
return $this->paginator; |
51
|
|
|
} |
52
|
|
|
|
53
|
|
|
/** |
54
|
|
|
* @return \Illuminate\Pagination\Factory |
55
|
|
|
*/ |
56
|
|
|
public function getPaginationFactory() |
57
|
|
|
{ |
58
|
|
|
return $this->getPaginator();//$this->src->getQuery()->getConnection()->getPaginator(); |
|
|
|
|
59
|
|
|
} |
60
|
|
|
|
61
|
|
|
protected function getIterator() |
62
|
|
|
{ |
63
|
|
|
if (!$this->iterator) { |
64
|
|
|
$this->iterator = $this->getCollection()->getIterator(); |
65
|
|
|
} |
66
|
|
|
return $this->iterator; |
67
|
|
|
} |
68
|
|
|
|
69
|
|
|
/** |
70
|
|
|
* @return Builder |
71
|
|
|
*/ |
72
|
|
|
public function getBuilder() |
73
|
|
|
{ |
74
|
|
|
return $this->src; |
75
|
|
|
} |
76
|
|
|
|
77
|
|
View Code Duplication |
public function getRow() |
|
|
|
|
78
|
|
|
{ |
79
|
|
|
if (!$this->iterator) { |
80
|
|
|
$this->getIterator(); |
81
|
|
|
} |
82
|
|
|
|
83
|
|
|
if ($this->index < $this->count()) { |
84
|
|
|
$this->index++; |
85
|
|
|
$item = $this->iterator->current(); |
86
|
|
|
$this->iterator->next(); |
87
|
|
|
$row = new EloquentDataRow($item, $this->getRowId()); |
|
|
|
|
88
|
|
|
Event::fire(self::EVENT_FETCH_ROW, [$row, $this]); |
89
|
|
|
return $row; |
90
|
|
|
} else { |
91
|
|
|
return null; |
92
|
|
|
} |
93
|
|
|
} |
94
|
|
|
|
95
|
|
|
/** |
96
|
|
|
* {@inheritdoc} |
97
|
|
|
*/ |
98
|
|
|
public function count() |
99
|
|
|
{ |
100
|
|
|
return $this->getCollection()->count(); |
101
|
|
|
} |
102
|
|
|
|
103
|
|
|
/** |
104
|
|
|
* {@inheritdoc} |
105
|
|
|
*/ |
106
|
|
|
public function orderBy($fieldName, $direction) |
107
|
|
|
{ |
108
|
|
|
if ($direction === Grid::SORT_ASC) { |
109
|
|
|
$this->src->sortBy($fieldName); |
110
|
|
|
} else { |
111
|
|
|
$this->src->sortByDesc($fieldName); |
112
|
|
|
} |
113
|
|
|
|
114
|
|
|
return $this; |
115
|
|
|
} |
116
|
|
|
|
117
|
|
|
/** |
118
|
|
|
* {@inheritdoc} |
119
|
|
|
*/ |
120
|
|
|
public function filter($fieldName, $operator, $value) |
121
|
|
|
{ |
122
|
|
|
/* |
123
|
|
|
Currently no filter support on CollectionDataProvider |
124
|
|
|
*/ |
125
|
|
|
return $this; |
126
|
|
|
} |
127
|
|
|
} |
128
|
|
|
|
If you return a value from a function or method, it should be a sub-type of the type that is given by the parent type f.e. an interface, or abstract method. This is more formally defined by the Lizkov substitution principle, and guarantees that classes that depend on the parent type can use any instance of a child type interchangably. This principle also belongs to the SOLID principles for object oriented design.
Let’s take a look at an example:
Our function
my_function
expects aPost
object, and outputs the author of the post. The base classPost
returns a simple string and outputting a simple string will work just fine. However, the child classBlogPost
which is a sub-type ofPost
instead decided to return anobject
, and is therefore violating the SOLID principles. If aBlogPost
were passed tomy_function
, PHP would not complain, but ultimately fail when executing thestrtoupper
call in its body.