dewsign/nova-spaces
Composer 安装命令:
composer require dewsign/nova-spaces
包简介
Spaces for Laravel Nova
README 文档
README
Create "Spaces" to display throughout your website which can be populated with custom blocks.
Installation
composer require dewsign/nova-spaces
php artisan migrate
Usage
To get started, you will need to create your first Space area. E.g. Sidebar or Upsells. You are free to structure the files as you wish or you can use the conventions from the examples if you prefer.
We simply use the default Nova folder to register our new space as it will load automatically.
// app/Nova/SidebarSpace.php namespace App\Nova; use Dewsign\NovaSpaces\Nova\Space; class SidebarSpace extends Space { public static $zone = 'sidebar'; public static function label() { return __('Sidebar Items'); } }
The $zone is used to differentiate the various space areas in the database and code and avoids requiring new tables for each new space area.
Your new space zone should now be available within Nova, with the default custom link item as the only option.
Outputting the space (Blade)
We don't currently make any assumptions about how you wish to render the space. Some helpers surrounding common usage are planned for the future though. For now please access the Dewsign\NovaSpaces\Models\Space model as you sould any other Eloquent model to retrieve the space items you require.
Here is a basic inline blade example.
@foreach(Space::active()->whereZone('sidebar')->get() as $spaceItem) {!! $spaceItem->view !!} {!! or !!} <a href="{{ $spaceItem->action }}">{{ $spaceItem->label }}</a> @endforeach
You can access any sub-items through the spaces relationship.
@foreach($spaceItem->spaces as $item) {!! $item->view !!} @endforeach
Extending
You can create your own space item types by creating a couple of new files and loading them in. In short, you will need:
- An Eloquent Model, complete with migration / database
- A Nova resource to manage the content
- A blade view to render the item
// app/Space/Models/Section.php use Dewsign\NovaSpaces\Models\SpaceItem; class Section extends SpaceItem { public static $repeaterBlockViewTemplate = 'space.section'; public function resolveAction() { return $this->link_url; } public function resolveLabel($model = null) { return $model->title ?? $this->heading; } }
// database/migrations/your_migration.php Schema::create('space_sections', function (Blueprint $table) { $table->increments('id'); $table->string('heading')->nullable(); $table->text('content')->nullable(); $table->string('link_url')->nullable(); $table->string('link_title')->nullable(); $table->timestamps(); });
// app/Space/Nova/Section.php ... use Dewsign\NovaSpaces\Nova\Items\SpaceItem; class Section extends SpaceItem { public static $model = App\Space\Models\Section::class; public static $title = 'heading'; public static $search = [ 'heading', 'content', 'link_url', ]; public static function label() { return __('Section'); } public function fields(Request $request) { return [ Text::make('Heading'), Markdown::make('Content'), Text::make('Link Url'), Text::make('Link Title'), ]; } }
Finally, load the new space item through the novaspaces config
return [ "repeaters" => [ ... \App\Space\Nova\Section::class, ], ];
dewsign/nova-spaces 适用场景与选型建议
dewsign/nova-spaces 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 306 次下载、GitHub Stars 达 1, 最近一次更新时间为 2018 年 11 月 14 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 dewsign/nova-spaces 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 dewsign/nova-spaces 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 306
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-11-14