-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlogPostReelBlock.php
More file actions
225 lines (203 loc) · 6.33 KB
/
BlogPostReelBlock.php
File metadata and controls
225 lines (203 loc) · 6.33 KB
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
<?php
namespace Syntro\ElementalBootstrapBlocks\Element;
use SilverStripe\Forms\OptionsetField;
use SilverStripe\Forms\DropdownField;
use SilverStripe\ORM\DataList;
use SilverStripe\Forms\HeaderField;
use SilverStripe\Forms\ListboxField;
use SilverStripe\Assets\Image;
use SilverStripe\AssetAdmin\Forms\UploadField;
use SilverStripe\Forms\FieldList;
use SilverStripe\Forms\NumericField;
use SilverStripe\Forms\GridField\GridField;
use SilverStripe\Forms\GridField\GridFieldConfig_RelationEditor;
use SilverStripe\Forms\GridField\GridFieldAddNewButton;
use SilverStripe\Core\ClassInfo;
use SilverStripe\Blog\Model\BlogCategory;
use SilverStripe\Blog\Model\BlogTag;
use SilverStripe\Blog\Model\BlogPost;
use DNADesign\Elemental\Models\BaseElement;
use UncleCheese\DisplayLogic\Forms\Wrapper;
use Syntro\ElementalBootstrapBlocks\Extension\SplitRatioExtension;
/**
* Adds an image block
*
* @author Matthias Leutenegger
*/
class BlogPostReelBlock extends BaseElement
{
/**
* Defines the database table name
* @config
* @var string
*/
private static $table_name = 'BlockBlogPostReel';
/**
* Singular name for CMS
* @config
* @var string
*/
private static $singular_name = 'Blog Posts';
/**
* Plural name for CMS
* @config
* @var string
*/
private static $plural_name = 'Blog Posts';
/**
* @config
* @var bool
*/
private static $inline_editable = false;
/**
* Display a show title button
*
* @config
* @var boolean
*/
private static $displays_title_in_template = false;
/**
* @config
* @var string
*/
private static $icon = 'font-icon-block-bookmark';
/**
* available styles
* @config
* @var array
*/
private static $styles = [];
/**
* Database fields
* @config
* @var array
*/
private static $db = [
'SelectPosts' => 'Enum("latest,specific","latest")',
'ShowLatest' => 'Int',
];
/**
* Add default values to database
* @config
* @var array
*/
private static $defaults = [
'SelectPosts' => 'latest',
'ShowLatest' => 5,
];
// /**
// * Many_many relationship - This is done via config to allow for the blog
// * module to be not installed
// * @var array
// */
// private static $many_many = [
// 'Categories' => BlogCategory::class,
// 'Tags' => BlogTag::class,
// 'Posts' => BlogPost::class,
// ];
/**
* CMS Fields
* @return FieldList
*/
public function getCMSFields()
{
$fields = parent::getCMSFields();
$fields->removeByName([
'Categories',
'Tags',
'Posts',
'SelectPosts',
]);
$fields->addFieldToTab(
'Root.Main',
OptionsetField::create(
'SelectPosts',
_t(__CLASS__ . '.SELECTPOSTSTITLE', 'Show'),
[
'latest' => _t(__CLASS__ . '.SELECTPOSTSLATESTTITLE', 'Latest Posts'),
'specific' => _t(__CLASS__ . '.SELECTPOSTSSPECIFICTITLE', 'Specific Posts'),
]
),
'ShowLatest'
);
// Add Categories & Tags filter
if (ClassInfo::exists(BlogCategory::class) && ClassInfo::exists(BlogTag::class)) {
$fields->addFieldsToTab(
'Root.Main',
[
$categoriesField = ListboxField::create(
'Categories',
_t(__CLASS__ . '.CATEGORIESTITLE', 'Filter by Categories'),
BlogCategory::get(),
$this->Categories(),
),
$tagsField = ListboxField::create(
'Tags',
_t(__CLASS__ . '.TAGSTITLE', 'Filter by Tags'),
BlogTag::get(),
$this->Tags(),
)
]
);
$categoriesField->hideUnless('SelectPosts')->isEqualTo('latest');
$tagsField->hideUnless('SelectPosts')->isEqualTo('latest');
/** @var NumericField */
$numField = $fields->fieldByName('Root.Main.ShowLatest');
$numField->hideUnless('SelectPosts')->isEqualTo('latest');
$numField->setTitle(_t(__CLASS__ . '.SHOWLATESTTITLE', 'Show latest X Posts'));
// Add Specific posts fields
$postsField = GridField::create(
'Posts',
_t(__CLASS__ . '.POSTSTITLE', 'Posts'),
$this->Posts(),
$postsConfig = GridFieldConfig_RelationEditor::create()
);
$postsConfig->removeComponentsByType(GridFieldAddNewButton::class);
$fields->addFieldsToTab(
'Root.Main',
[
$postsTitle = Wrapper::create(HeaderField::create(
'titleSpecific',
_t(__CLASS__ . '.POSTSHEADERTITLE', 'Posts Shown in the Reel')
)),
$postsWrapper = Wrapper::create($postsField)
]
);
$postsTitle->hideUnless('SelectPosts')->isEqualTo('specific');
$postsWrapper->hideUnless('SelectPosts')->isEqualTo('specific');
}
return $fields;
}
/**
* getType
*
* @return string
*/
public function getType()
{
return _t(__CLASS__ . '.BlockType', 'Blog Posts Reel');
}
/**
* getPostsInReel - fetch the posts to be shown in the ree
*
* @return DataList
*/
public function getPostsInReel()
{
switch ($this->SelectPosts) {
case 'specific':
return $this->Posts();
case 'latest':
$posts = BlogPost::get();
if ($this->Tags()->count() > 0) {
$posts = $posts->filter('Tags.ID', $this->Tags()->map('ID', 'ID')->keys());
}
if ($this->Categories()->count() > 0) {
$posts = $posts->filter('Categories.ID', $this->Categories()->map('ID', 'ID')->keys());
}
return $posts->limit($this->ShowLatest);
default:
return BlogPost::get()->filter('ID', 0);
}
}
}