AdminLoader.php 2.36 KB
<?php

namespace AC\Admin;

use AC\Asset\Enqueueable;
use AC\Asset\Enqueueables;
use AC\Registerable;
use AC\Renderable;
use AC\Request;
use AC\View;

class AdminLoader implements Registerable {

	protected $hook;

	protected $request_handler;

	protected $assets;

	/**
	 * @var Renderable|null
	 */
	private $page;

	public function __construct( string $hook, RequestHandlerInterface $request_handler, Enqueueables $assets ) {
		$this->hook = $hook;
		$this->request_handler = $request_handler;
		$this->assets = $assets;
	}

	public function register() {
		add_action( 'load-' . $this->hook, [ $this, 'set_page' ] );
		add_action( 'load-' . $this->hook, [ $this, 'load' ] );
		add_action( 'in_admin_header', [ $this, 'head' ] );
		add_action( $this->hook, [ $this, 'body' ] );
	}

	public function set_page() {
		$this->page = $this->request_handler->handle( new Request() );
	}

	public function load() {
		if ( ! $this->page ) {
			return;
		}

		if ( $this->page instanceof Registerable ) {
			$this->register();
		}

		$screen = get_current_screen();

		if ( $this->page instanceof Helpable && $screen ) {
			foreach ( $this->page->get_help_tabs() as $help ) {
				$screen->add_help_tab( [
					'id'      => $help->get_id(),
					'title'   => $help->get_title(),
					'content' => $help->get_content(),
				] );
			}
		}

		if ( $this->page instanceof Enqueueables ) {
			array_map( [ $this, 'enqueue' ], $this->page->get_assets()->all() );
		}

		foreach ( $this->assets->get_assets()->all() as $asset ) {
			$asset->enqueue();
		}

		do_action( 'ac/admin_scripts', $this->page );

		add_filter( 'screen_settings', [ $this, 'screen_options' ] );
	}

	public function head(): void {
		if ( $this->page instanceof RenderableHead ) {
			echo $this->page->render_head();
		}
	}

	public function body(): void {
		if ( $this->page instanceof Renderable ) {
			$view = new View( [
				'content' => $this->page->render(),
			] );

			echo $view->set_template( 'admin/wrap' )->render();
		}
	}

	protected function enqueue( Enqueueable $asset ): void {
		$asset->enqueue();
	}

	public function screen_options( $settings ) {
		if ( $this->page instanceof ScreenOptions ) {
			$settings .= sprintf( '<legend>%s</legend>', __( 'Display', 'codepress-admin-columns' ) );

			foreach ( $this->page->get_screen_options() as $screen_option ) {
				$settings .= $screen_option->render();
			}
		}

		return $settings;
	}

}