waaseyaa/inertia
Composer 安装命令:
composer require waaseyaa/inertia
包简介
Server-side Inertia.js v3 protocol adapter for Waaseyaa — optional/experimental L6 surface; see README for the DIR-007 framing.
README 文档
README
Optional / experimental — not the primary workspace UI. Per charter directive DIR-007 (
docs/governance/charter.md), the committed workspace UI is the Nuxt SPA inpackages/admin/. This L6 adapter is supported for distributions that prefer server-driven UI, but is not bundled bywaaseyaa/full.
Layer 6 — Interfaces
Server-side Inertia.js v3 protocol adapter. A controller returns
Inertia::render($component, $props), producing an InertiaResponse that carries the
Inertia page object. InertiaMiddleware reads the X-Inertia-* headers to tell an
initial full-page load (HTML via RootTemplateRenderer) from an XHR navigation (JSON
page object), and returns 409 + X-Inertia-Location on an asset-version mismatch.
Implements the foundation contracts InertiaPageResultInterface and
InertiaFullPageRendererInterface.
Partial reloads are not yet wired (experimental).
OptionalPropandPropResolverare provided as standalone building blocks for deferring expensive props (PropResolver::resolve($props, $only, $except)), but nothing in this package invokes them:InertiaMiddlewarereads onlyX-Inertia/X-Inertia-Version(not theX-Inertia-Partial-Datapartial-reload header), andInertiaResponsecarries the full prop set unchanged. So a partial reload currently returns all props, not just the requested keys. Honoringonly/exceptautomatically is unbuilt — callPropResolverdirectly in a controller if you need it today.
Install
Ships in the waaseyaa/framework metapackage but is not pulled in by waaseyaa/full;
add it explicitly: composer require waaseyaa/inertia. Register
Waaseyaa\Inertia\InertiaServiceProvider (auto-discovered via extra.waaseyaa.providers)
to wire the renderer and HTTP middleware.
Key API
// Inertia — static response factory + shared-prop / version state. Inertia::setVersion(string $version): void Inertia::getVersion(): string Inertia::setRenderer(RootTemplateRenderer $renderer): void Inertia::getRenderer(): RootTemplateRenderer Inertia::share(string $key, mixed $value): void Inertia::render(string $component, array $props, bool $encryptHistory = false, bool $clearHistory = false): InertiaResponse Inertia::reset(): void // InertiaResponse implements InertiaPageResultInterface — readonly: component, props, // url, version, encryptHistory, clearHistory, preserveFragment, and the // deferred/merge/prepend/deepMerge/once prop sets. public function toPageObject(): array // InertiaMiddleware — #[AsMiddleware(pipeline: 'http', priority: 20)] public function __construct(string $version) public function process(Request $request, HttpHandlerInterface $next): Response // PropResolver public static function optional(\Closure $callback): OptionalProp public function resolve(array $props, array $only = [], array $except = []): array // RootTemplateRenderer implements InertiaFullPageRendererInterface public function __construct(?\Closure $template = null, ?ViteAssetManager $assetManager = null) public function render(array $pageObject): string // InertiaServiceProvider implements HasMiddlewareInterface public function register(): void public function registerWithRoot(?string $root): void public function middleware(EntityTypeManager $entityTypeManager): array
Usage
Inertia::setVersion('abc123'); Inertia::share('auth', fn() => ['user' => currentUser()]); $response = Inertia::render('Users/Index', ['users' => [1, 2, 3]]); $page = $response->toPageObject();
Page props override shared props of the same key; shared closures resolve fresh per
render(); toPageObject() always injects props.errors.
waaseyaa/inertia 适用场景与选型建议
waaseyaa/inertia 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.07k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 03 月 19 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 waaseyaa/inertia 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 waaseyaa/inertia 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 waaseyaa/inertia 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
This module allows drag & drop grouping of items in a GridField
Adds text size controls and text-to-speech controls to Flarum discussion content.
Native Blade date, datetime, and date range pickers.
Symfony and Flysystem integration for the maintained KCFinder continuation.
Laravel integration for the maintained KCFinder continuation.
PHPStan rules shared across KnpLabs organization projects
统计信息
- 总下载量: 2.07k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 38
- 依赖项目数: 1
- 推荐数: 1
其他信息
- 授权协议: GPL-2.0-or-later
- 更新时间: 2026-03-19