mirror of
https://ghproxy.net/https://github.com/abhijitb/helix.git
synced 2025-08-27 20:13:02 +08:00
lint fixes
This commit is contained in:
parent
d106c178ac
commit
01a7f967a4
7 changed files with 395 additions and 243 deletions
|
@ -1,119 +1,172 @@
|
|||
<?php
|
||||
/**
|
||||
* Redirects classic WordPress admin requests into Helix where applicable.
|
||||
*
|
||||
* @package Helix
|
||||
*/
|
||||
|
||||
/**
|
||||
* Check if the Helix build is ready.
|
||||
*
|
||||
* @return bool True if the build is ready, false otherwise.
|
||||
*/
|
||||
function helix_is_ready(): bool {
|
||||
// Ensure the built frontend exists before hijacking admin navigation
|
||||
$plugin_base_path = plugin_dir_path(__DIR__); // points to helix/
|
||||
$build_js_path = $plugin_base_path . 'build/index.js';
|
||||
return file_exists($build_js_path) && is_readable($build_js_path);
|
||||
// Ensure the built frontend exists before hijacking admin navigation.
|
||||
$plugin_base_path = plugin_dir_path( __DIR__ ); // points to helix/.
|
||||
$build_js_path = $plugin_base_path . 'build/index.js';
|
||||
return file_exists( $build_js_path ) && is_readable( $build_js_path );
|
||||
}
|
||||
|
||||
function helix_normalize_route(string $urlOrPath): string {
|
||||
// Convert absolute URLs to a relative admin route
|
||||
if (preg_match('#^https?://#i', $urlOrPath)) {
|
||||
$parts = wp_parse_url($urlOrPath);
|
||||
$path = isset($parts['path']) ? $parts['path'] : '/wp-admin/';
|
||||
$query = isset($parts['query']) && $parts['query'] !== '' ? '?' . $parts['query'] : '';
|
||||
return $path . $query;
|
||||
}
|
||||
/**
|
||||
* Normalize a route to a relative admin route.
|
||||
*
|
||||
* @param string $url_or_path The URL or path to normalize.
|
||||
* @return string The normalized route.
|
||||
*/
|
||||
function helix_normalize_route( string $url_or_path ): string {
|
||||
// Convert absolute URLs to a relative admin route.
|
||||
if ( preg_match( '#^https?://#i', $url_or_path ) ) {
|
||||
$parts = wp_parse_url( $url_or_path );
|
||||
$path = isset( $parts['path'] ) ? $parts['path'] : '/wp-admin/';
|
||||
$query = isset( $parts['query'] ) && '' !== $parts['query'] ? '?' . $parts['query'] : '';
|
||||
return $path . $query;
|
||||
}
|
||||
|
||||
// Ensure it starts with /wp-admin (allow optional leading slash)
|
||||
if (preg_match('#^/?wp-admin#', $urlOrPath)) {
|
||||
return str_starts_with($urlOrPath, '/') ? $urlOrPath : '/' . $urlOrPath;
|
||||
}
|
||||
// Ensure it starts with /wp-admin (allow optional leading slash).
|
||||
if ( preg_match( '#^/?wp-admin#', $url_or_path ) ) {
|
||||
return str_starts_with( $url_or_path, '/' ) ? $url_or_path : '/' . $url_or_path;
|
||||
}
|
||||
|
||||
return '/wp-admin/';
|
||||
return '/wp-admin/';
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if the admin should be hijacked.
|
||||
*
|
||||
* @return bool True if the admin should be hijacked, false otherwise.
|
||||
*/
|
||||
function helix_should_hijack_admin(): bool {
|
||||
// If user opted into default WP admin, do not hijack
|
||||
if (get_option('helix_use_default_admin', false)) {
|
||||
return false;
|
||||
}
|
||||
// If Helix build is unavailable, do not hijack
|
||||
if (!helix_is_ready()) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
// If user opted into default WP admin, do not hijack.
|
||||
if ( get_option( 'helix_use_default_admin', false ) ) {
|
||||
return false;
|
||||
}
|
||||
// If Helix build is unavailable, do not hijack.
|
||||
if ( ! helix_is_ready() ) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
add_filter('login_redirect', function ($redirect_to, $requested_redirect_to, $user) {
|
||||
// Only modify redirect for successful logins
|
||||
if (is_wp_error($user)) {
|
||||
return $redirect_to;
|
||||
}
|
||||
/**
|
||||
* Redirect the user to the Helix admin page after login.
|
||||
*
|
||||
* @param string $redirect_to The redirect URL.
|
||||
* @param string $requested_redirect_to The requested redirect URL.
|
||||
* @param WP_User $user The user object.
|
||||
* @return string The redirect URL.
|
||||
*/
|
||||
add_filter(
|
||||
'login_redirect',
|
||||
function ( $redirect_to, $requested_redirect_to, $user ) {
|
||||
// Only modify redirect for successful logins.
|
||||
if ( is_wp_error( $user ) ) {
|
||||
return $redirect_to;
|
||||
}
|
||||
|
||||
// Respect plugin setting to use default WordPress admin or if Helix is not ready
|
||||
if (!helix_should_hijack_admin()) {
|
||||
return $redirect_to;
|
||||
}
|
||||
// Respect plugin setting to use default WordPress admin or if Helix is not ready.
|
||||
if ( ! helix_should_hijack_admin() ) {
|
||||
return $redirect_to;
|
||||
}
|
||||
|
||||
// Determine the intended post-login target
|
||||
$intended_target = (is_string($requested_redirect_to) && $requested_redirect_to !== '')
|
||||
? $requested_redirect_to
|
||||
: $redirect_to;
|
||||
// Determine the intended post-login target.
|
||||
$intended_target = ( is_string( $requested_redirect_to ) && '' !== $requested_redirect_to )
|
||||
? $requested_redirect_to
|
||||
: $redirect_to;
|
||||
|
||||
// If the target is not an admin page, do not override
|
||||
if ($intended_target && !str_contains($intended_target, 'wp-admin')) {
|
||||
return $redirect_to;
|
||||
}
|
||||
// If the target is not an admin page, do not override.
|
||||
if ( $intended_target && ! str_contains( $intended_target, 'wp-admin' ) ) {
|
||||
return $redirect_to;
|
||||
}
|
||||
|
||||
// Default to the dashboard when no target provided
|
||||
$helix_route = helix_normalize_route($intended_target ?: '/wp-admin/');
|
||||
// Default to the dashboard when no target provided.
|
||||
$helix_route = helix_normalize_route( $intended_target ?? '/wp-admin/' );
|
||||
|
||||
// Send directly to Helix, preserving the original admin route for the React app
|
||||
// Always use '&' because admin.php already has a query string (page=helix)
|
||||
return admin_url('admin.php?page=helix&helix_route=' . urlencode($helix_route));
|
||||
}, 10, 3);
|
||||
// Send directly to Helix, preserving the original admin route for the React app.
|
||||
// Always use '&' because admin.php already has a query string (page=helix).
|
||||
return admin_url( 'admin.php?page=helix&helix_route=' . rawurlencode( $helix_route ) );
|
||||
},
|
||||
10,
|
||||
3
|
||||
);
|
||||
|
||||
add_action('current_screen', function ($current_screen) {
|
||||
// Don't redirect if not in admin
|
||||
if (!is_admin()) return;
|
||||
|
||||
// Don't redirect AJAX requests
|
||||
if (wp_doing_ajax()) return;
|
||||
|
||||
// Don't redirect REST API requests
|
||||
if (defined('REST_REQUEST') && REST_REQUEST) return;
|
||||
|
||||
// Don't redirect cron jobs
|
||||
if (defined('DOING_CRON') && DOING_CRON) return;
|
||||
|
||||
// Check if we're already on the helix page or wordpress admin page
|
||||
if ( in_array( $current_screen->id, array( 'toplevel_page_helix', 'toplevel_page_wordpress-admin' ), true ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Check if user wants to use default WordPress admin
|
||||
$use_default_admin = get_option('helix_use_default_admin', false);
|
||||
if ($use_default_admin) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Don't redirect if Helix is not ready or the user opted into default admin
|
||||
if (!helix_should_hijack_admin()) {
|
||||
return;
|
||||
}
|
||||
/**
|
||||
* Redirect the user to the Helix admin page when accessing an admin page.
|
||||
*
|
||||
* @param WP_Screen $current_screen The current screen object.
|
||||
*/
|
||||
add_action(
|
||||
'current_screen',
|
||||
function ( $current_screen ) {
|
||||
// Don't redirect if not in admin.
|
||||
if ( ! is_admin() ) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Don't redirect critical WordPress admin functions
|
||||
global $pagenow;
|
||||
$critical_pages = [
|
||||
'admin-ajax.php',
|
||||
'admin-post.php',
|
||||
'async-upload.php',
|
||||
'update.php',
|
||||
'update-core.php',
|
||||
'upgrade.php',
|
||||
];
|
||||
|
||||
if (in_array($pagenow, $critical_pages)) return;
|
||||
|
||||
// Capture the current admin URL to pass to Helix for routing
|
||||
$current_url = helix_normalize_route($_SERVER['REQUEST_URI']);
|
||||
|
||||
// Build the redirect URL with the original path for React routing
|
||||
// Always use '&' because admin.php already has a query string (page=helix)
|
||||
$redirect_url = admin_url('admin.php?page=helix&helix_route=' . urlencode($current_url));
|
||||
|
||||
// Redirect all other admin pages to Helix
|
||||
wp_redirect($redirect_url);
|
||||
exit;
|
||||
});
|
||||
// Don't redirect AJAX requests.
|
||||
if ( wp_doing_ajax() ) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Don't redirect REST API requests.
|
||||
if ( defined( 'REST_REQUEST' ) && REST_REQUEST ) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Don't redirect cron jobs.
|
||||
if ( defined( 'DOING_CRON' ) && DOING_CRON ) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Check if we're already on the helix page or WordPress admin page.
|
||||
if ( in_array( $current_screen->id, array( 'toplevel_page_helix', 'toplevel_page_wordpress-admin' ), true ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Check if user wants to use default WordPress admin.
|
||||
$use_default_admin = get_option( 'helix_use_default_admin', false );
|
||||
if ( $use_default_admin ) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Don't redirect if Helix is not ready or the user opted into default admin.
|
||||
if ( ! helix_should_hijack_admin() ) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Don't redirect critical WordPress admin functions.
|
||||
global $pagenow;
|
||||
$critical_pages = array(
|
||||
'admin-ajax.php',
|
||||
'admin-post.php',
|
||||
'async-upload.php',
|
||||
'update.php',
|
||||
'update-core.php',
|
||||
'upgrade.php',
|
||||
);
|
||||
|
||||
if ( in_array( $pagenow, $critical_pages, true ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Capture the current admin URL to pass to Helix for routing.
|
||||
$current_url = helix_normalize_route( filter_input( INPUT_SERVER, 'REQUEST_URI', FILTER_SANITIZE_URL ) );
|
||||
|
||||
// Build the redirect URL with the original path for React routing.
|
||||
// Always use '&' because admin.php already has a query string (page=helix).
|
||||
$redirect_url = admin_url( 'admin.php?page=helix&helix_route=' . rawurlencode( $current_url ) );
|
||||
|
||||
// Redirect all other admin pages to Helix.
|
||||
wp_safe_redirect( $redirect_url );
|
||||
exit;
|
||||
}
|
||||
);
|
||||
|
|
|
@ -1,6 +1,35 @@
|
|||
<?php
|
||||
add_action('admin_menu', function () {
|
||||
add_menu_page('Helix', 'Helix', 'read', 'helix', function () {
|
||||
echo '<div id="helix-root"></div>';
|
||||
}, 'dashicons-admin-generic', 1);
|
||||
});
|
||||
/**
|
||||
* Registers the Helix admin top-level menu page.
|
||||
*
|
||||
* @package Helix
|
||||
*/
|
||||
|
||||
add_action(
|
||||
'admin_menu',
|
||||
function () {
|
||||
$helix_hook_suffix = add_menu_page(
|
||||
'Helix',
|
||||
'Helix',
|
||||
'read',
|
||||
'helix',
|
||||
function () {
|
||||
echo '<div id="helix-root"></div>';
|
||||
},
|
||||
'dashicons-admin-generic',
|
||||
1
|
||||
);
|
||||
|
||||
if ( $helix_hook_suffix ) {
|
||||
// Mark when the Helix screen is loading. Used elsewhere to conditionally modify admin UI.
|
||||
add_action(
|
||||
"load-$helix_hook_suffix",
|
||||
function () {
|
||||
$GLOBALS['helix_is_current_screen'] = true;
|
||||
// Ensure we are in Helix mode when visiting the Helix page.
|
||||
update_option( 'helix_use_default_admin', false );
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
);
|
||||
|
|
|
@ -1,127 +1,156 @@
|
|||
<?php
|
||||
/**
|
||||
* Customize the WordPress admin menu for Helix
|
||||
* Customizes the WordPress admin menu for Helix.
|
||||
* This removes unwanted menu items and keeps only the ones you want
|
||||
*
|
||||
* @package Helix
|
||||
*/
|
||||
|
||||
add_action('admin_menu', function () {
|
||||
// Only customize menu when on Helix page
|
||||
if (!isset($_GET['page']) || $_GET['page'] !== 'helix') {
|
||||
return;
|
||||
}
|
||||
|
||||
// Remove all default WordPress admin menus
|
||||
remove_menu_page('index.php'); // Dashboard
|
||||
remove_menu_page('edit.php'); // Posts
|
||||
remove_menu_page('upload.php'); // Media
|
||||
remove_menu_page('edit.php?post_type=page'); // Pages
|
||||
remove_menu_page('edit-comments.php'); // Comments
|
||||
remove_menu_page('themes.php'); // Appearance
|
||||
remove_menu_page('plugins.php'); // Plugins
|
||||
remove_menu_page('users.php'); // Users
|
||||
remove_menu_page('tools.php'); // Tools
|
||||
remove_menu_page('options-general.php'); // Settings
|
||||
add_action(
|
||||
'current_screen',
|
||||
function ( $current_screen ) {
|
||||
if ( ! $current_screen || 'toplevel_page_helix' !== $current_screen->id ) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Remove all admin menu separators
|
||||
remove_all_admin_menu_separators();
|
||||
}, 999); // High priority to run after other plugins
|
||||
// 1) Remove default WordPress admin menus when viewing Helix.
|
||||
remove_menu_page( 'index.php' ); // Dashboard.
|
||||
remove_menu_page( 'edit.php' ); // Posts.
|
||||
remove_menu_page( 'upload.php' ); // Media.
|
||||
remove_menu_page( 'edit.php?post_type=page' ); // Pages.
|
||||
remove_menu_page( 'edit-comments.php' ); // Comments.
|
||||
remove_menu_page( 'themes.php' ); // Appearance.
|
||||
remove_menu_page( 'plugins.php' ); // Plugins.
|
||||
remove_menu_page( 'users.php' ); // Users.
|
||||
remove_menu_page( 'tools.php' ); // Tools.
|
||||
remove_menu_page( 'options-general.php' ); // Settings.
|
||||
|
||||
// Remove all admin menu separators.
|
||||
remove_all_admin_menu_separators();
|
||||
|
||||
// 2) Ensure the "WordPress Admin" return link is present on first load.
|
||||
if ( ! get_option( 'helix_use_default_admin', false ) ) {
|
||||
global $admin_page_hooks;
|
||||
if ( ! isset( $admin_page_hooks['wordpress-admin'] ) ) {
|
||||
add_menu_page(
|
||||
'WordPress Admin',
|
||||
'WordPress Admin',
|
||||
'read',
|
||||
'wordpress-admin',
|
||||
'wordpress_admin_callback',
|
||||
'dashicons-wordpress',
|
||||
2
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// 3) Add custom Helix menu items.
|
||||
add_menu_page(
|
||||
'Helix Posts',
|
||||
'Posts',
|
||||
'edit_posts',
|
||||
'helix-posts',
|
||||
'helix_posts_callback',
|
||||
'dashicons-admin-post',
|
||||
3
|
||||
);
|
||||
|
||||
add_menu_page(
|
||||
'Helix Users',
|
||||
'Users',
|
||||
'list_users',
|
||||
'helix-users',
|
||||
'helix_users_callback',
|
||||
'dashicons-admin-users',
|
||||
4
|
||||
);
|
||||
},
|
||||
10
|
||||
);
|
||||
|
||||
/**
|
||||
* Ensure the "WordPress Admin" return link is present when landing on Helix, even on the first load
|
||||
* after switching modes in the same request.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Remove all admin menu separators.
|
||||
*/
|
||||
function remove_all_admin_menu_separators() {
|
||||
global $menu;
|
||||
if (is_array($menu)) {
|
||||
foreach ($menu as $key => $item) {
|
||||
// Check if menu item is a separator
|
||||
if ( false !== strpos( $item[4], 'wp-menu-separator' ) ) {
|
||||
unset( $menu[ $key ] );
|
||||
}
|
||||
}
|
||||
}
|
||||
global $menu;
|
||||
if ( is_array( $menu ) ) {
|
||||
foreach ( $menu as $key => $item ) {
|
||||
// Check if menu item is a separator.
|
||||
if ( false !== strpos( $item[4], 'wp-menu-separator' ) ) {
|
||||
unset( $menu[ $key ] );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Add custom menu items
|
||||
* Add WordPress Admin menu item conditionally.
|
||||
*/
|
||||
|
||||
add_action(
|
||||
'admin_menu',
|
||||
function () {
|
||||
// Only show the "WordPress Admin" link when in Helix mode.
|
||||
$use_default_admin = get_option( 'helix_use_default_admin', false );
|
||||
if ( $use_default_admin ) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Add WordPress Admin menu item conditionally
|
||||
add_action('admin_menu', function () {
|
||||
// Reset to Helix mode when accessing Helix page (do this before checking the option)
|
||||
if (isset($_GET['page']) && $_GET['page'] === 'helix') {
|
||||
update_option('helix_use_default_admin', false);
|
||||
}
|
||||
|
||||
// Only show the "WordPress Admin" link when in Helix mode.
|
||||
$use_default_admin = get_option('helix_use_default_admin', false);
|
||||
if ($use_default_admin) {
|
||||
return;
|
||||
}
|
||||
// Add a menu item to go back to default WordPress admin.
|
||||
add_menu_page(
|
||||
'WordPress Admin', // Page title.
|
||||
'WordPress Admin', // Menu title.
|
||||
'read', // Capability.
|
||||
'wordpress-admin', // Menu slug.
|
||||
'wordpress_admin_callback', // Callback function.
|
||||
'dashicons-wordpress', // Icon.
|
||||
2 // Position (after main Helix menu).
|
||||
);
|
||||
},
|
||||
1000
|
||||
);
|
||||
|
||||
// Add a menu item to go back to default WordPress admin
|
||||
add_menu_page(
|
||||
'WordPress Admin', // Page title
|
||||
'WordPress Admin', // Menu title
|
||||
'read', // Capability
|
||||
'wordpress-admin', // Menu slug
|
||||
'wordpress_admin_callback', // Callback function
|
||||
'dashicons-wordpress', // Icon
|
||||
2 // Position (after main Helix menu)
|
||||
);
|
||||
}, 1000); // Higher priority to run after menu removal
|
||||
/**
|
||||
* Add custom Helix menu items (only when on Helix page).
|
||||
*/
|
||||
/* previous current_screen callbacks combined into the single handler above */
|
||||
|
||||
// Add custom Helix menu items (only when on Helix page)
|
||||
add_action('admin_menu', function () {
|
||||
// Only add when on Helix page
|
||||
if (!isset($_GET['page']) || $_GET['page'] !== 'helix') {
|
||||
return;
|
||||
}
|
||||
|
||||
// Example: Add a Posts menu item
|
||||
add_menu_page(
|
||||
'Helix Posts',
|
||||
'Posts',
|
||||
'edit_posts',
|
||||
'helix-posts',
|
||||
'helix_posts_callback',
|
||||
'dashicons-admin-post',
|
||||
3
|
||||
);
|
||||
|
||||
// Example: Add a Users menu item
|
||||
add_menu_page(
|
||||
'Helix Users',
|
||||
'Users',
|
||||
'list_users',
|
||||
'helix-users',
|
||||
'helix_users_callback',
|
||||
'dashicons-admin-users',
|
||||
4
|
||||
);
|
||||
|
||||
}, 1001); // Even higher priority to run after WordPress Admin menu
|
||||
|
||||
// Callback functions for custom menu items
|
||||
/**
|
||||
* Callback functions for custom menu items.
|
||||
*/
|
||||
function wordpress_admin_callback() {
|
||||
// Set the option to use default WordPress admin
|
||||
update_option('helix_use_default_admin', true);
|
||||
|
||||
// Show a clean message and let the user navigate naturally
|
||||
?>
|
||||
<div style="text-align: center; padding: 50px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;">
|
||||
<h2>✓ Switched to WordPress Admin</h2>
|
||||
<p>You can now navigate to any WordPress admin page normally.</p>
|
||||
<p><a href="<?php echo admin_url('index.php'); ?>" class="button button-primary">Go to Dashboard</a></p>
|
||||
<p><a href="<?php echo admin_url('edit.php'); ?>" class="button">Posts</a>
|
||||
<a href="<?php echo admin_url('users.php'); ?>" class="button">Users</a>
|
||||
<a href="<?php echo admin_url('options-general.php'); ?>" class="button">Settings</a></p>
|
||||
</div>
|
||||
<?php
|
||||
// Set the option to use default WordPress admin.
|
||||
update_option( 'helix_use_default_admin', true );
|
||||
|
||||
// Show a clean message and let the user navigate naturally.
|
||||
?>
|
||||
<div style="text-align: center; padding: 50px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;">
|
||||
<h2>✓ Switched to WordPress Admin</h2>
|
||||
<p>You can now navigate to any WordPress admin page normally.</p>
|
||||
<p><a href="<?php echo esc_url( admin_url( 'index.php' ) ); ?>" class="button button-primary">Go to Dashboard</a></p>
|
||||
<p><a href="<?php echo esc_url( admin_url( 'edit.php' ) ); ?>" class="button">Posts</a>
|
||||
<a href="<?php echo esc_url( admin_url( 'users.php' ) ); ?>" class="button">Users</a>
|
||||
<a href="<?php echo esc_url( admin_url( 'options-general.php' ) ); ?>" class="button">Settings</a>
|
||||
</p>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
|
||||
/**
|
||||
* Callback function for Posts menu item.
|
||||
*/
|
||||
function helix_posts_callback() {
|
||||
echo '<div id="helix-posts-root"></div>';
|
||||
echo '<div id="helix-posts-root"></div>';
|
||||
}
|
||||
|
||||
/**
|
||||
* Callback function for Users menu item.
|
||||
*/
|
||||
function helix_users_callback() {
|
||||
echo '<div id="helix-users-root"></div>';
|
||||
echo '<div id="helix-users-root"></div>';
|
||||
}
|
||||
|
|
@ -1,13 +1,26 @@
|
|||
<?php
|
||||
add_action('rest_api_init', function () {
|
||||
register_rest_route('helix/v1', '/settings', [
|
||||
'methods' => 'GET',
|
||||
'permission_callback' => '__return_true',
|
||||
'callback' => function () {
|
||||
return [
|
||||
'siteTitle' => get_option('blogname'),
|
||||
'language' => get_option('WPLANG'),
|
||||
];
|
||||
}
|
||||
]);
|
||||
});
|
||||
/**
|
||||
* Registers REST API routes for Helix.
|
||||
*
|
||||
* @package Helix
|
||||
*/
|
||||
|
||||
add_action(
|
||||
'rest_api_init',
|
||||
function () {
|
||||
register_rest_route(
|
||||
'helix/v1',
|
||||
'/settings',
|
||||
array(
|
||||
'methods' => 'GET',
|
||||
'permission_callback' => '__return_true',
|
||||
'callback' => function () {
|
||||
return array(
|
||||
'siteTitle' => get_option( 'blogname' ),
|
||||
'language' => get_option( 'WPLANG' ),
|
||||
);
|
||||
},
|
||||
)
|
||||
);
|
||||
}
|
||||
);
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "Helix",
|
||||
"name": "helix/helix",
|
||||
"description": "Helix – Modern WP Admin",
|
||||
"type": "project",
|
||||
"license": "GPL-2.0-or-later",
|
||||
|
|
52
enqueue.php
52
enqueue.php
|
@ -1,17 +1,39 @@
|
|||
<?php
|
||||
add_action('admin_enqueue_scripts', function ($hook) {
|
||||
if ($hook !== 'toplevel_page_helix') return;
|
||||
/**
|
||||
* Enqueues Helix assets and exposes configuration to the frontend.
|
||||
*
|
||||
* @package Helix
|
||||
*/
|
||||
|
||||
wp_enqueue_script('helix-app', plugin_dir_url(__FILE__) . 'build/index.js', [], null, true);
|
||||
|
||||
// Get the original route that was redirected
|
||||
$original_route = isset($_GET['helix_route']) ? $_GET['helix_route'] : '/wp-admin/';
|
||||
|
||||
wp_localize_script('helix-app', 'helixData', [
|
||||
'restUrl' => esc_url_raw(rest_url('helix/v1/')),
|
||||
'nonce' => wp_create_nonce('wp_rest'),
|
||||
'user' => wp_get_current_user(),
|
||||
'originalRoute' => $original_route,
|
||||
'adminUrl' => admin_url(),
|
||||
]);
|
||||
});
|
||||
add_action(
|
||||
'admin_enqueue_scripts',
|
||||
function ( $hook ) {
|
||||
if ( 'toplevel_page_helix' !== $hook ) {
|
||||
return;
|
||||
}
|
||||
|
||||
wp_enqueue_script(
|
||||
'helix-app',
|
||||
plugin_dir_url( __FILE__ ) . 'build/index.js',
|
||||
array(),
|
||||
'0.1.0',
|
||||
array()
|
||||
);
|
||||
|
||||
// Get the original route that was redirected.
|
||||
$original_route = filter_input( INPUT_GET, 'helix_route', FILTER_SANITIZE_URL );
|
||||
$original_route = $original_route ? esc_url_raw( $original_route ) : '/wp-admin/';
|
||||
|
||||
wp_localize_script(
|
||||
'helix-app',
|
||||
'helixData',
|
||||
array(
|
||||
'restUrl' => esc_url_raw( rest_url( 'helix/v1/' ) ),
|
||||
'nonce' => wp_create_nonce( 'wp_rest' ),
|
||||
'user' => wp_get_current_user(),
|
||||
'originalRoute' => $original_route,
|
||||
'adminUrl' => admin_url(),
|
||||
)
|
||||
);
|
||||
}
|
||||
);
|
||||
|
|
18
helix.php
18
helix.php
|
@ -1,10 +1,16 @@
|
|||
<?php
|
||||
/*
|
||||
Plugin Name: Helix – Modern WP Admin
|
||||
Description: A React-powered replacement for the WordPress admin UI.
|
||||
Version: 0.1.0
|
||||
Author: Your Name
|
||||
*/
|
||||
/**
|
||||
* Main plugin file that bootstraps the Helix admin interface.
|
||||
*
|
||||
* @package Helix
|
||||
*/
|
||||
|
||||
/**
|
||||
* Plugin Name: Helix – Modern WP Admin
|
||||
* Description: A React-powered replacement for the WordPress admin UI.
|
||||
* Version: 0.1.0
|
||||
* Author: Abhijit Bhatnagar
|
||||
*/
|
||||
|
||||
require_once __DIR__ . '/admin/init.php';
|
||||
require_once __DIR__ . '/admin/rest-routes.php';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue