HorizontalScrolling.php
4.05 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
<?php
namespace ACP\Table;
use AC;
use AC\Asset;
use AC\ListScreen;
use AC\ListScreenRepository\Storage;
use AC\Registerable;
use AC\Type\ListScreenId;
class HorizontalScrolling implements Registerable
{
private $storage;
private $location;
public function __construct(Storage $storage, Asset\Location\Absolute $location)
{
$this->storage = $storage;
$this->location = $location;
}
public function register(): void
{
add_action('ac/table', [$this, 'register_screen_option']);
add_action('ac/table_scripts', [$this, 'scripts']);
add_filter('ac/table/body_class', [$this, 'add_horizontal_scrollable_class'], 10, 2);
add_action('wp_ajax_acp_update_table_option_overflow', [$this, 'update_table_option_overflow']);
}
public function preferences(): AC\Preferences\Site
{
return new AC\Preferences\Site('show_overflow_table');
}
public function update_table_option_overflow(): void
{
check_ajax_referer('ac-ajax');
$list_id = filter_input(INPUT_POST, 'layout');
if ( ! ListScreenId::is_valid_id($list_id)) {
wp_send_json_error('Invalid list id.');
}
$list_screen = $this->storage->find(new ListScreenId($list_id));
if ( ! $list_screen || ! $list_screen->is_user_allowed(wp_get_current_user())) {
wp_send_json_error('Invalid list screen.');
}
$this->preferences()->set($list_screen->get_storage_key(), 'true' === filter_input(INPUT_POST, 'value'));
wp_send_json_success();
}
private function is_overflow_table(ListScreen $list_screen): bool
{
$preference = $this->preferences()->get(
$list_screen->get_storage_key()
);
// Load the list screen preference when user has not yet set their own preference.
if (null === $preference) {
$preference = 'on' === $list_screen->get_preference('horizontal_scrolling');
}
return (bool)apply_filters('acp/horizontal_scrolling/enable', $preference, $list_screen);
}
public function delete_overflow_preference(ListScreen $list_screen): void
{
$this->preferences()->delete($list_screen->get_storage_key());
}
public function register_screen_option(AC\Table\Screen $table): void
{
$list_screen = $table->get_list_screen();
if ( ! $list_screen->get_settings()) {
return;
}
$check_box = new AC\Form\Element\Checkbox('acp_overflow_list_screen_table');
$label = __('Horizontal Scrolling', 'codepress-admin-columns');
if ($this->is_windows_browser()) {
$label = sprintf('%s (%s)', $label, __('hold down SHIFT key', 'codepress-admin-columns'));
}
$check_box->set_id('acp_overflow_list_screen_table')
->set_options([
'yes' => $label,
])
->set_value($this->is_overflow_table($table->get_list_screen()) ? 'yes' : '');
$table->register_screen_option($check_box);
}
private function is_windows_browser(): bool
{
if ( ! isset($_SERVER['HTTP_USER_AGENT'])) {
return false;
}
return (bool)preg_match('(win|microsoft)', strtolower($_SERVER['HTTP_USER_AGENT']));
}
public function scripts(): void
{
$script = new Asset\Script(
'ac-horizontal-scrolling',
$this->location->with_suffix('assets/core/js/horizontal-scrolling.js')
);
$script->enqueue();
wp_localize_script('ac-horizontal-scrolling', 'ACP_Horizontal_Scrolling', [
'indicator_enabled' => apply_filters('acp/horizontal_scrolling/show_indicator', true),
]);
}
/**
* @param string $classes
* @param AC\Table\Screen $table
*
* @return string
*/
public function add_horizontal_scrollable_class($classes, $table)
{
if ($this->is_overflow_table($table->get_list_screen())) {
$classes .= ' acp-overflow-table';
}
return $classes;
}
}