Table.php
8.1 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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
<?php
declare(strict_types=1);
namespace ACP\Asset\Script;
use AC\Asset\Location\Absolute;
use AC\Asset\Script;
use AC\Asset\Script\Localize\Translation;
use AC\Capabilities;
use AC\ColumnSize;
use AC\ListScreen;
use AC\ListScreenCollection;
use AC\ListScreenRepository\Sort;
use AC\ListScreenRepository\Storage;
use AC\Type\ColumnWidth;
use AC\Type\Uri;
use ACP\Search;
use ACP\Settings\ListScreen\HideOnScreen;
use ACP\Settings\Option\LayoutStyle;
use WP_User;
class Table extends Script
{
use Search\DefaultSegmentTrait;
private $list_screen;
private $user_storage;
private $list_storage;
private $storage;
public function __construct(
Absolute $location,
ListScreen $list_screen,
Search\SegmentRepository $segment_repository,
ColumnSize\UserStorage $user_storage,
ColumnSize\ListStorage $list_storage,
Storage $storage
) {
parent::__construct('acp-table', $location, [Script\GlobalTranslationFactory::HANDLE, 'jquery-ui-sortable']);
$this->list_screen = $list_screen;
$this->segment_repository = $segment_repository;
$this->user_storage = $user_storage;
$this->list_storage = $list_storage;
$this->storage = $storage;
}
public function register(): void
{
parent::register();
$user = wp_get_current_user();
if ( ! $user) {
return;
}
$translation = Translation::create([
'column_sets' => [
'more' => _x('%s more', 'number of items', 'codepress-admin-columns'),
'switch_view' => __('Switch View', 'codepress-admin-columns'),
],
'column_screen_option' => [
'button_reset' => _x('Reset', 'column-resize-button', 'codepress-admin-columns'),
'label' => __('Columns', 'codepress-admin-columns'),
'resize_columns_tool' => __('Resize Columns', 'codepress-admin-columns'),
'reset_confirmation' => sprintf(
'%s %s',
__('Restore the current column widths and order to their defaults.', 'codepress-admin-columns'),
__('Are you sure?', 'codepress-admin-columns')
),
'save_changes' => __('Save changes', 'codepress-admin-columns'),
'save_changes_confirmation' => sprintf(
'%s %s',
__(
'Save the current column widths and order changes as the new default for ALL users.',
'codepress-admin-columns'
),
__('Are you sure?', 'codepress-admin-columns')
),
'tip_reset' => __(
'Reset columns to their default widths and order.',
'codepress-admin-columns'
),
'tip_save_changes' => __(
'Save the current column widths and order changes.',
'codepress-admin-columns'
),
],
]);
$this
->add_inline_variable('ACP_TABLE', [
'column_sets' => $this->get_column_sets($user),
'column_sets_style' => $this->get_column_set_style(),
'column_screen_option' => [
'has_manage_admin_cap' => current_user_can(Capabilities::MANAGE),
],
'column_order' => [
'active' => $this->is_column_order_active(),
'current_order' => array_keys($this->list_screen->get_columns()),
],
'column_width' => [
'active' => $this->is_column_resize_active(),
'can_reset' => $this->user_storage->exists($this->list_screen->get_id()),
'minimal_pixel_width' => 50,
'column_sizes_current_user' => $this->get_column_sizes_by_user($this->list_screen),
'column_sizes' => $this->get_column_sizes($this->list_screen),
],
])->localize('ACP_TABLE_I18N', $translation);
}
private function get_column_sets(WP_User $user): array
{
return array_values(
array_map(
[$this, 'create_column_set_vars'],
$this->get_list_screens($user)->get_copy()
)
);
}
private function get_list_screens(WP_User $user): ListScreenCollection
{
$list_screens = $this->storage->find_all_by_assigned_user(
$this->list_screen->get_key(),
$user,
new Sort\UserOrder($user, $this->list_screen->get_key())
);
// An administrator should always be able to view the requested list screen
if (user_can($user, Capabilities::MANAGE) && ! $list_screens->contains($this->list_screen)) {
$list_screens->add($this->list_screen);
}
return $list_screens;
}
private function get_column_set_style(): string
{
$option = new LayoutStyle();
return $option->get() ?: LayoutStyle::OPTION_DROPDOWN;
}
private function is_column_order_active(): bool
{
$hide_on_screen = new HideOnScreen\ColumnOrder();
return (bool)apply_filters(
'acp/column_order/active',
! $hide_on_screen->is_hidden($this->list_screen),
$this->list_screen
);
}
private function is_column_resize_active(): bool
{
$hide_on_screen = new HideOnScreen\ColumnResize();
return (bool)apply_filters(
'acp/resize_columns/active',
! $hide_on_screen->is_hidden($this->list_screen),
$this->list_screen
);
}
private function get_column_sizes_by_user(ListScreen $list_screen): array
{
$result = [];
if ($list_screen->get_settings()) {
foreach ($this->user_storage->get_all($list_screen->get_id()) as $column_name => $width) {
$result[$column_name] = $this->create_vars($width);
}
}
return $result;
}
private function create_vars(ColumnWidth $width): array
{
return [
'value' => $width->get_value(),
'unit' => $width->get_unit(),
];
}
private function get_column_sizes(ListScreen $list_screen): array
{
$result = [];
if ($list_screen->get_settings()) {
foreach ($this->list_storage->get_all($list_screen) as $column_name => $width) {
$result[$column_name] = $this->create_vars($width);
}
}
return $result;
}
private function create_column_set_vars(ListScreen $list_screen): array
{
$column_set = [
'id' => $list_screen->has_id() ? (string)$list_screen->get_id() : null,
'label' => $list_screen->get_title()
? htmlspecialchars_decode($list_screen->get_title())
: $list_screen->get_label(),
'url' => (string)$this->add_filter_args_to_url($list_screen->get_table_url()),
'pre_filtered' => false,
'pre_filtered_label' => null,
];
$default_segment = $this->get_default_segment($list_screen);
if ($default_segment) {
$column_set['pre_filtered_label'] = sprintf(
__('Filtered by: %s', 'codepress-admin-columns'),
$default_segment->get_name()
);
}
return $column_set;
}
private function add_filter_args_to_url(Uri $url): Uri
{
$post_status = filter_input(INPUT_GET, 'post_status', FILTER_SANITIZE_FULL_SPECIAL_CHARS);
if ($post_status) {
$url = $url->with_arg('post_status', $post_status);
}
$author = filter_input(INPUT_GET, 'author', FILTER_SANITIZE_FULL_SPECIAL_CHARS);
if ($author) {
$url = $url->with_arg('author', $author);
}
return $url;
}
}