-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathclass-enqueue-admin.php
More file actions
251 lines (215 loc) · 6.91 KB
/
Copy pathclass-enqueue-admin.php
File metadata and controls
251 lines (215 loc) · 6.91 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
249
250
251
<?php
/**
* Class file for Admin enqueueing styles and scripts.
*
* @package Accessibility_Checker
*/
namespace EDAC\Admin;
use EDAC\Admin\OptIn\Email_Opt_In;
/**
* Class that initializes and handles enqueueing styles and scripts for the admin.
*/
class Enqueue_Admin {
/**
* Constructor
*/
public function __construct() {
}
/**
* Enqueue the scripts and styles.
*/
public static function enqueue() {
self::enqueue_styles();
self::maybe_enqueue_admin_and_editor_app_scripts();
self::maybe_enqueue_sidebar_script();
self::maybe_enqueue_email_opt_in_script();
}
/**
* Enqueue the admin styles.
*
* @return void
*/
public static function enqueue_styles() {
wp_enqueue_style( 'edac', plugin_dir_url( EDAC_PLUGIN_FILE ) . 'build/css/admin.css', [], EDAC_VERSION, 'all' );
}
/**
* Enqueue the admin and editorApp scripts.
*
* @return void
*/
public static function maybe_enqueue_admin_and_editor_app_scripts() {
global $pagenow;
$post_types = Settings::get_scannable_post_types();
$has_post_types = is_array( $post_types ) && count( $post_types );
$is_scannable_post = Helpers::is_current_post_type_scannable( $post_types );
$page = self::get_current_page_slug();
$enabled_pages = apply_filters(
'edac_filter_admin_scripts_slugs',
[
'accessibility_checker',
'accessibility_checker_settings',
'accessibility_checker_issues',
'accessibility_checker_ignored',
]
);
if (
(
$has_post_types &&
(
$is_scannable_post ||
in_array( $page, $enabled_pages, true )
)
) ||
'site-editor.php' !== $pagenow
) {
global $post;
$post_id = is_object( $post ) ? $post->ID : null;
wp_enqueue_script( 'edac', plugin_dir_url( EDAC_PLUGIN_FILE ) . 'build/admin.bundle.js', [ 'jquery' ], EDAC_VERSION, false );
wp_set_script_translations( 'edac', 'accessibility-checker', plugin_dir_path( EDAC_PLUGIN_FILE ) . 'languages' );
wp_localize_script(
'edac',
'edac_script_vars',
[
'postID' => $post_id,
'nonce' => wp_create_nonce( 'ajax-nonce' ),
'edacApiUrl' => esc_url_raw( rest_url() . 'accessibility-checker/v1' ),
'restNonce' => wp_create_nonce( 'wp_rest' ),
'proUrl' => esc_url_raw( edac_generate_link_type( [ 'utm-content' => '__name__' ] ) ),
]
);
if ( 'post.php' === $pagenow || 'post-new.php' === $pagenow ) {
// Is this posttype setup to be checked?
$active = $is_scannable_post;
$pro = defined( 'EDACP_VERSION' ) && EDAC_KEY_VALID;
if ( EDAC_DEBUG || strpos( EDAC_VERSION, '-beta' ) !== false ) {
$debug = true; // @codeCoverageIgnore
} else {
$debug = false;
}
wp_enqueue_script( 'edac-editor-app', plugin_dir_url( EDAC_PLUGIN_FILE ) . 'build/editorApp.bundle.js', false, EDAC_VERSION, false );
wp_set_script_translations( 'edac-editor-app', 'accessibility-checker', plugin_dir_path( EDAC_PLUGIN_FILE ) . 'languages' );
// If this is the frontpage or homepage, preview URLs won't work. Use the live URL.
if ( (int) get_option( 'page_on_front' ) === $post_id || (int) get_option( 'page_for_posts' ) === $post_id ) {
$scan_url = add_query_arg( 'edac_pageScanner', 1, get_permalink( $post_id ) );
} else {
$post_view_link = apply_filters(
'edac_get_origin_url_for_virtual_page',
get_preview_post_link( $post_id ),
$post_id
);
$scan_url = add_query_arg(
[
'edac_pageScanner' => 1,
],
$post_view_link
);
}
wp_localize_script(
'edac-editor-app',
'edac_editor_app',
[
'postID' => $post_id,
'edacUrl' => esc_url_raw( get_site_url() ),
'edacApiUrl' => esc_url_raw( rest_url() . 'accessibility-checker/v1' ),
'baseurl' => plugin_dir_url( __DIR__ ),
'active' => $active,
'pro' => $pro,
'debug' => $debug,
'scanUrl' => $scan_url,
'maxAltLength' => max( 1, absint( apply_filters( 'edac_max_alt_length', 300 ) ) ),
'version' => EDAC_VERSION,
'postStatus' => get_post_status( $post_id ),
'restNonce' => wp_create_nonce( 'wp_rest' ),
]
);
}
}
}
/**
* Enqueue the Gutenberg sidebar script.
*
* @return void
*/
public static function maybe_enqueue_sidebar_script() {
global $pagenow;
// Only load on post edit screens.
if ( 'post.php' !== $pagenow && 'post-new.php' !== $pagenow ) {
return;
}
if ( ! Helpers::is_block_editor() ) {
return;
}
// Check if this post type is scannable.
$post_types = Settings::get_scannable_post_types();
if ( ! Helpers::is_current_post_type_scannable( $post_types ) ) {
return;
}
// Enqueue the sidebar script with WordPress dependencies.
wp_enqueue_script(
'edac-sidebar',
plugin_dir_url( EDAC_PLUGIN_FILE ) . 'build/sidebar.bundle.js',
[
'wp-plugins',
'wp-edit-post',
'wp-editor',
'wp-element',
'wp-data',
'wp-i18n',
'wp-api-fetch',
'wp-components',
],
EDAC_VERSION,
false
);
// Set translations for the sidebar.
wp_set_script_translations( 'edac-sidebar', 'accessibility-checker', plugin_dir_path( EDAC_PLUGIN_FILE ) . 'languages' );
// Localize script with necessary data.
wp_localize_script(
'edac-sidebar',
'edac_sidebar_app',
[
'gutenbergEnabled' => true,
'postID' => get_the_ID(),
'edacApiUrl' => esc_url_raw( rest_url() . 'accessibility-checker/v1' ),
'nonce' => wp_create_nonce( 'wp_rest' ),
'settingsUrl' => esc_url_raw( admin_url( 'admin.php?page=accessibility_checker_settings' ) ),
'readabilityHelpUrl' => esc_url_raw( edac_link_wrapper( 'https://a11ychecker.com/help3265', 'wordpress-general', 'content-analysis-sidebar', false ) ),
'manuallyTestHelpUrl' => esc_url_raw( edac_link_wrapper( 'https://a11ychecker.com/help4280', 'wordpress-general', 'content-analysis-sidebar', false ) ),
]
);
// Enqueue sidebar styles.
wp_enqueue_style(
'edac-sidebar',
plugin_dir_url( EDAC_PLUGIN_FILE ) . 'build/css/sidebar.css',
[],
EDAC_VERSION,
'all'
);
}
/**
* Enqueue the email opt-in script on the welcome page.
*
* @return void
*/
public static function maybe_enqueue_email_opt_in_script() {
$page = self::get_current_page_slug();
if ( 'accessibility_checker' !== $page ) {
return;
}
$user_already_opted_in = (bool) get_user_meta( get_current_user_id(), Email_Opt_In::EDAC_USER_OPTIN_META_KEY, true );
if ( $user_already_opted_in ) {
return;
}
$email_opt_in = new Email_Opt_In();
$email_opt_in->enqueue_scripts();
}
/**
* Gets the current admin page slug.
*
* @since 1.31.0
* @return string|null The current page slug or null if not set.
*/
private static function get_current_page_slug(): ?string {
return isset( $_GET['page'] ) ? sanitize_key( wp_unslash( $_GET['page'] ) ) : null; // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- display only.
}
}