承接 kanata-php/forklift 相关项目开发

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

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

kanata-php/forklift

最新稳定版本:0.1.1

Composer 安装命令:

composer require kanata-php/forklift

包简介

Livewire package to move models around.

README 文档

README

Forklift

Tests Code Coverage

Laravel Livewire Component

composer require kanata-php/forklift

Move assets in a predictable and easy manner with Eloquent and Livewire.

Dependencies

  • Laravel
  • Livewire
  • AlpineJS

Installation

Step 1

Install composer package:

composer require kanata-php/forklift

Step 2

Publish the assets registered in the Service Provider:

php artisan vendor:publish --provider="Kanata\Forklift\ForkliftServiceProvider"

After this you'll find the assets at the directory resources/views/vendor/forklift. At the current version the initial assets are only presentable for projects usign Tailwind CSS.

Step 3

Implement the Kanata\Forklift\Interfaces\AssetRepositoryInterface for the component to know how to interact with your project's models. You'll create one per case (e.g. if you need to move nested directories, one repository, then if you need to move documents through directories, another repository).

Methods:

  • AssetRepositoryInterface::changeCurrentLocation - This method returns current location's "sub locations". This is equivalent to sub folders when you have a folder based structure like a filesystem navigation.

  • AssetRepositoryInterface::moveAsset - This method executes the movement between locations of the asset being managed.

  • AssetRepositoryInterface::findLocation - This method finds the current location object.

    The output must be an array with the following fields:

    • id (int) - primary key
    • title (string) - location's title
    • parent (int) - parent location (for nested locations)

Usage

Basics

Let's assume we have a filesystem structure. In this structure you have documents and directories. This package adds a dropdown that allows quickly moving assets in the directory structure.

For such, using eloquent, we would have the models:

  • Directory - that keeps the directories structure, having subdirectories and documents inside them.

Example migration:

Schema::create('directories', function (Blueprint $table) {
    $table->id();
    $table->string('title', 40);
    $table->foreignId('parent')->nullable();
    $table->timestamps();
});
  • Document - that keeps the documents.

Example migration:

Schema::create('documents', function (Blueprint $table) {
    $table->id();
    $table->string('title', 40);
    $table->longText('content');
    $table->foreignId('directory_id')->nullable();
    $table->timestamps();
});

The following component is the dropdown to move documents:

@livewire('forklift-dropdown', [
    'currentLocationId' => $document->directory_id,
    'locationType' => \App\Models\Directory::class,
    'assetId' => $document->id,
    'assetType' => \App\Models\Document::class,
    'assetRepository' => App\Repositories\DocumentAssetRepository::class,
    'parentField' => 'directory_id',
])

The following component is the dropdown to move directories:

@livewire('forklift-dropdown', [
    'currentLocationId' => $directory->parent,
    'locationType' => \App\Models\Directory::class,
    'assetId' => $directory->id,
    'assetType' => \App\Models\Directory::class,
    'assetRepository' => App\Repositories\DirecotryAssetRepository::class,
    'parentField' => 'parent',
])

You can find an example laravel project here.

Events

Forklift dispatches 2 events, in 3 different levels. The 2 events are:

  • Kanata\Forklift\Events\AssetMoved - Triggered after a successful return from the asset repository.
  • Kanata\Forklift\Events\AssetMoveFailed - Triggered after a fail return from th asset repository.

The 3 levels that these events are dispatched are:

Todo

  • Change UI when backend error happens.

统计信息

  • 总下载量: 103
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 3
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2022-09-12