承接 waaseyaa/inertia 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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 in packages/admin/. This L6 adapter is supported for distributions that prefer server-driven UI, but is not bundled by waaseyaa/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). OptionalProp and PropResolver are provided as standalone building blocks for deferring expensive props (PropResolver::resolve($props, $only, $except)), but nothing in this package invokes them: InertiaMiddleware reads only X-Inertia / X-Inertia-Version (not the X-Inertia-Partial-Data partial-reload header), and InertiaResponse carries the full prop set unchanged. So a partial reload currently returns all props, not just the requested keys. Honoring only / except automatically is unbuilt — call PropResolver directly 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 我们能提供哪些服务?
定制开发 / 二次开发

基于 waaseyaa/inertia 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 2.07k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 38
  • 依赖项目数: 1
  • 推荐数: 1

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: GPL-2.0-or-later
  • 更新时间: 2026-03-19