<?php
/**
 * memphoria functions and definitions
 *
 * @link https://developer.wordpress.org/themes/basics/theme-functions/
 *
 * @package memphoria
 * @since memphoria 1.0
 */

declare( strict_types = 1 );

if ( ! function_exists( 'memphoria_support' ) ) :

	/**
	 * Sets up theme defaults and registers support for various WordPress functionalities.
	 *
	 * @since memphoria 1.0
	 * @return void
	 */
	function memphoria_support() {

		// Enqueue editor styles.
		add_editor_style( 'style.css' );

		// Make theme available for translation.
		load_theme_textdomain( 'memphoria' );
	}

endif;

add_action( 'after_setup_theme', 'memphoria_support' );

if ( ! function_exists( 'memphoria_styles' ) ) :

	/**
	 * Enqueue styles.
	 *
	 * @since memphoria 1.0
	 * @return void
	 */
	function memphoria_styles() {

		// Register theme stylesheet.
		wp_register_style(
			'memphoria-style',
			get_stylesheet_directory_uri() . '/style.css',
			array(),
			wp_get_theme()->get( 'Version' )
		);

		// Enqueue theme stylesheet.
		wp_enqueue_style( 'memphoria-style' );

	}

endif;

add_action( 'wp_enqueue_scripts', 'memphoria_styles' );

if ( ! function_exists( 'memphoria_block_styles' ) ) :
	/**
	 * Register custom block styles
	 *
	 * @since memphoria 1.0
	 * @return void
	 */
	function memphoria_block_styles() {
		register_block_style(
			'core/post-terms',
			array(
				'name'=> 'pill',
				'label'=> __( 'Pill', 'memphoria' ),
			)
		);
		register_block_style(
			'core/post-template',
			array(
				'name' => 'decorated',
				'label'=> __( 'Decorated', 'memphoria' )
			)
		);
		register_block_style(
			'core/separator',
			array(
				'name' => 'wiggley',
				'label'=> __( 'Wiggley', 'memphoria' )
			)
		);
		register_block_style(
			'core/separator',
			array(
				'name' => 'zigzag',
				'label'=> __( 'Zig-Zag', 'memphoria' )
			)
		);
	}
endif;

add_action( 'init', 'memphoria_block_styles' );

if ( ! function_exists( 'memphoria_block_stylesheets' ) ) :
	/**
	 * Enqueue custom block stylesheets
	 *
	 * @since memphoria 1.0
	 * @return void
	 */
	function memphoria_block_stylesheets() {
		$memphoria_styled_blocks = array(
			'core/archives'                  => 'archives',
			'core/audio'                     => 'audio',
			'core/button'                    => 'button',
			'core/calendar'                  => 'calendar',
			'core/categories'                => 'categories',
			'core/comment-content'           => 'comment-content',
			'core/comments-pagination'       => 'comments-pagination',
			'core/embed'                     => 'embed',
			'core/image'                     => 'image',
			'core/latest-comments'           => 'latest-comments',
			'core/latest-posts'              => 'latest-posts',
			'core/navigation'                => 'navigation',
			'core/page-list'                 => 'page-list',
			'core/post-author'               => 'post-author',
			'core/post-comments-form'        => 'post-comments-form',
			'core/post-excerpt'              => 'post-excerpt',
			'core/post-template'             => 'post-template',
			'core/post-terms'                => 'post-terms',
			'core/pullquote'                 => 'pullquote',
			'core/query-pagination-next'     => 'query-pagination-next',
			'core/query-pagination-numbers'  => 'query-pagination-numbers',
			'core/query-pagination-previous' => 'query-pagination-previous',
			'core/quote'                     => 'quote',
			'core/search'                    => 'search',
			'core/separator'                 => 'separator',
			'core/table'                     => 'table',
			'core/tag-cloud'                 => 'tag-cloud',
			'core/term-description'          => 'term-description',
			'core/video'                     => 'video'
		);

		foreach ( $memphoria_styled_blocks as $block_name_with_namespace => $block_name ) {
			wp_enqueue_block_style(
				$block_name_with_namespace,
				array(
					'handle' => 'memphoria-' . $block_name,
					'src'    => get_template_directory_uri() . '/assets/css/blocks/' . $block_name . '.css',
					'path'   => get_template_directory() . '/assets/css/blocks/' . $block_name . '.css',
				)
			);
		}
	}
endif;

add_action( 'init', 'memphoria_block_stylesheets' );