Files
rspade_system/app/RSpade/Core/CLAUDE.md
root 77b4d10af8 Refactor filename naming system and apply convention-based renames
Standardize settings file naming and relocate documentation files
Fix code quality violations from rsx:check
Reorganize user_management directory into logical subdirectories
Move Quill Bundle to core and align with Tom Select pattern
Simplify Site Settings page to focus on core site information
Complete Phase 5: Multi-tenant authentication with login flow and site selection
Add route query parameter rule and synchronize filename validation logic
Fix critical bug in UpdateNpmCommand causing missing JavaScript stubs
Implement filename convention rule and resolve VS Code auto-rename conflict
Implement js-sanitizer RPC server to eliminate 900+ Node.js process spawns
Implement RPC server architecture for JavaScript parsing
WIP: Add RPC server infrastructure for JS parsing (partial implementation)
Update jqhtml terminology from destroy to stop, fix datagrid DOM preservation
Add JQHTML-CLASS-01 rule and fix redundant class names
Improve code quality rules and resolve violations
Remove legacy fatal error format in favor of unified 'fatal' error type
Filter internal keys from window.rsxapp output
Update button styling and comprehensive form/modal documentation
Add conditional fly-in animation for modals
Fix non-deterministic bundle compilation

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-13 19:10:02 +00:00

2.8 KiB
Executable File

Core Framework Systems

Main_Abstract Middleware System

The framework provides application-wide middleware hooks via Main_Abstract:

Implementation

  1. Create /rsx/main.php extending Main_Abstract with three methods:

    • init() - Called once during bootstrap
    • pre_dispatch(Request $request, array $params) - Called before any route dispatch
    • unhandled_route(Request $request, array $params) - Called when no route matches
  2. Pre-dispatch flow:

    • Main::pre_dispatch() called first
    • Controller::pre_dispatch() called second
    • If either returns non-null, dispatch halts with that response
  3. Controller/API Method Signatures:

    • All controller methods: function method_name(Request $request, array $params = [])
    • All API methods: function method_name(Request $request, array $params = [])
    • $params contains GET query string parameters and URL-extracted route parameters (like :id)
    • POST data is accessed via $request->post() or $request->input(), NOT in $params

Core JavaScript Classes

These classes are ALWAYS available - never check for their existence:

  • Rsx_Manifest - Manifest management
  • Rsx_Cache - Client-side caching
  • Rsx - Core framework utilities
  • All classes in /app/RSpade/Core/Js/

Use them directly without defensive coding:

// ✅ GOOD
Rsx_Manifest.define(...)

// ❌ BAD  
if (typeof Rsx_Manifest !== 'undefined') {
    Rsx_Manifest.define(...)
}

Dispatcher System

Maps HTTP requests to RSX controllers based on manifest data.

Autoloader System

Provides path-agnostic class loading - classes are found by name, not path.

Manifest System

Indexes all files in /rsx/ for automatic discovery and loading.

JQHTML Named Slots (v2.2.112+)

Child template syntax changed from <#slotname /> tags to content('slotname') function:

  • Old: <#header /> (deprecated)
  • New: <%= content('header') %> (v2.2.112+)
  • Parent syntax unchanged: <#header>content</#header>

JQHTML Slot-Based Template Inheritance (v2.2.108+)

When component template contains ONLY slots (no HTML), it automatically inherits parent class template structure:

  • Enables abstract base components with customizable slots
  • Child templates define slot-only files to extend parent templates
  • Parent templates call slots: <%= content('slotname', data) %> (data passing supported)
  • JavaScript class must extend parent: class Child extends Parent
  • Slot names cannot be JavaScript reserved words (enforced by parser)

JQHTML Define Tag Configuration

<Define> tag supports three attribute types:

  • extends="Parent" - Explicit template inheritance
  • $property=value - Set default this.args values (unquoted=JS expression, quoted=string)
  • Regular HTML attributes (class, id, tag, data-*)
  • Enables template-only components without JavaScript classes