<?php
/**
 * Simple Block Registration for Step Layout
 */

// Method 1: Using register_block_type with minimal configuration
add_action('init', function() {
    // Register block type without JavaScript
    $result = register_block_type('bw/step-layout-simple', array(
        'title' => 'BW Step Layout',
        'description' => 'A responsive step layout with three cards',
        'category' => 'layout',
        'icon' => 'grid-view',
        'keywords' => array('step', 'cards', 'layout', 'bw'),
        'supports' => array(
            'align' => true,
            'html' => false,
            'customClassName' => true,
        ),
        'attributes' => array(
            'stepDirection' => array(
                'type' => 'string',
                'default' => 'low-to-high',
            ),
        ),
        'example' => array(
            'attributes' => array(
                'stepDirection' => 'low-to-high',
            ),
        ),
        'render_callback' => 'bw_render_simple_step_layout',
    ));
    
});

// Simple render callback
function bw_render_simple_step_layout($attributes) {
    $direction = isset($attributes['stepDirection']) ? $attributes['stepDirection'] : 'low-to-high';
    
    return sprintf(
        '<div class="wp-block-bw-step-layout-simple bw-step-layout bw-step-layout--%s">
            <div class="bw-step-layout__inner">
                <div class="bw-step-layout__card bw-step-layout__card--1">
                    <div class="bw-step-layout__content">
                        <h3 class="bw-step-layout__title">Card 1</h3>
                        <p class="bw-step-layout__description">Edit this card in the sidebar</p>
                        <a href="#" class="bw-step-layout__button">LEARN MORE</a>
                    </div>
                </div>
                <div class="bw-step-layout__card bw-step-layout__card--2">
                    <div class="bw-step-layout__content">
                        <h3 class="bw-step-layout__title">Card 2</h3>
                        <p class="bw-step-layout__description">Edit this card in the sidebar</p>
                        <a href="#" class="bw-step-layout__button">LEARN MORE</a>
                    </div>
                </div>
                <div class="bw-step-layout__card bw-step-layout__card--3">
                    <div class="bw-step-layout__content">
                        <h3 class="bw-step-layout__title">Card 3</h3>
                        <p class="bw-step-layout__description">Edit this card in the sidebar</p>
                        <a href="#" class="bw-step-layout__button">LEARN MORE</a>
                    </div>
                </div>
            </div>
        </div>',
        esc_attr($direction)
    );
}