Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/saade/filament-adjacency-list
A Filament package to manage adjacency lists (aka trees).
https://github.com/saade/filament-adjacency-list
adjacency-list filament form-builder laravel tree
Last synced: 5 days ago
JSON representation
A Filament package to manage adjacency lists (aka trees).
- Host: GitHub
- URL: https://github.com/saade/filament-adjacency-list
- Owner: saade
- License: mit
- Created: 2023-08-17T16:52:26.000Z (over 1 year ago)
- Default Branch: 3.x
- Last Pushed: 2024-10-22T21:16:40.000Z (3 months ago)
- Last Synced: 2025-01-20T07:53:13.947Z (7 days ago)
- Topics: adjacency-list, filament, form-builder, laravel, tree
- Language: PHP
- Homepage: https://filamentphp.com/plugins/saade-adjacency-list
- Size: 4.03 MB
- Stars: 78
- Watchers: 4
- Forks: 14
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
# Filament Adjacency List
[![Latest Version on Packagist](https://img.shields.io/packagist/v/saade/filament-adjacency-list.svg?style=flat-square)](https://packagist.org/packages/saade/filament-adjacency-list)
[![Total Downloads](https://img.shields.io/packagist/dt/saade/filament-adjacency-list.svg?style=flat-square)](https://packagist.org/packages/saade/filament-adjacency-list)A Filament package to manage adjacency lists (aka trees).
## Installation
You can install the package via composer:
```bash
composer require saade/filament-adjacency-list
```## Usage
```php
use Saade\FilamentAdjacencyList\Forms\Components\AdjacencyList;AdjacencyList::make('subjects')
->form([
Forms\Components\TextInput::make('label')
->required(),
])
```## Configuration
### Customizing the `label` key used to display the item's label
```php
AdjacencyList::make('subjects')
->labelKey('name') // defaults to 'label'
```### Customizing the `children` key used to gather the item's children.
> **Note:** This is only used when not using relationships.
```php
AdjacencyList::make('subjects')
->childrenKey('children') // defaults to 'children'
```### Customizing the `MaxDepth` of the tree.
```php
AdjacencyList::make('subjects')
->maxDepth(2) // defaults to -1 (unlimited depth)
```### Creating items without a modal.
```php
AdjacencyList::make('subjects')
->modal(false) // defaults to true
```### Disabling creation, edition, deletion, and reordering.
```php
AdjacencyList::make('subjects')
->addable(false)
->editable(false)
->deletable(false)
->reorderable(false)
```### Customizing actions
```php
use Filament\Forms\Actions\Action;AdjacencyList::make('subjects')
->addAction(fn (Action $action): Action => $action->icon('heroicon-o-plus')->color('primary'))
->addChildAction(fn (Action $action): Action => $action->button())
->editAction(fn (Action $action): Action => $action->icon('heroicon-o-pencil'))
->deleteAction(fn (Action $action): Action => $action->requiresConfirmation())
->reorderAction(fn (Action $action): Action => $action->icon('heroicon-o-arrow-path-rounded-square'))
```> [!IMPORTANT]
> **Reorder Action**
>
> If you want to add `->extraAttributes()` to the action, you need to add the `'data-sortable-handle' => 'true'` to the array, as the action serves as a handle for SortableJS.
>
> By default, clicking on the action will do anything. If you want to trigger some action on click, you need to chain `->livewireClickHandlerEnabled()` on the action.## Relationships
In this example, we'll be creating a Ticketing system, where tickets can be assigned to a department, and departments have subjects.### Building the relationship
```php
// App/Models/Department.phpclass Department extends Model
{
public function subjects(): HasMany
{
return $this->hasMany(Subject::class)->whereNull('parent_id')->with('children')->orderBy('sort');
}
}
``````php
// App/Models/Subject.phpclass Subject extends Model
{
protected $fillable ['parent_id', 'name', 'sort']; // or whatever your columns arepublic function children(): HasMany
{
return $this->hasMany(Subject::class, 'parent_id')->with('children')->orderBy('sort');
}
}
```Now you've created a nested relationship between departments and subjects.
### Using the relationship
```php
// App/Filament/Resources/DepartmentResource.phpAdjacencyList::make('subjects')
->relationship('subjects') // Define the relationship
->labelKey('name') // Customize the label key to your model's column
->childrenKey('children') // Customize the children key to the relationship's method name
->form([ // Define the form
Forms\Components\TextInput::make('name')
->label(__('Name'))
->required(),
]);
```That's it! Now you're able to manage your adjacency lists using relationships.
### Working with Staudenmeir's Laravel Adjacency List
This package also supports [Staudenmeir's Laravel Adjacency List](https://github.com/staudenmeir/laravel-adjacency-list) package.First, install the package:
```bash
composer require staudenmeir/laravel-adjacency-list:"^1.0"
```1. Use the `HasRecursiveRelationships` trait in your model, and override the default path separator.
```php
// App/Models/Department.phpclass Department extends Model
{
use \Staudenmeir\LaravelAdjacencyList\Eloquent\HasRecursiveRelationships;public function getPathSeparator()
{
return '.children.';
}
}
```If you're already using the HasRecursiveRelationships trait for other parts of your application, it's probably not a good idea to change your model's path separator, since it can break other parts of your application. Instead, you can add as many path separators as you want:
```php
class Department extends Model
{
use \Staudenmeir\LaravelAdjacencyList\Eloquent\HasRecursiveRelationships;public function getCustomPaths()
{
return [
[
'name' => 'tree_path',
'column' => 'id',
'separator' => '.children.',
],
];
}
}
```2. Use the `relationship` method to define the relationship:
```php
AdjacencyList::make('subdepartments')
->relationship('descendants') // or 'descendantsAndSelf', 'children' ...
->customPath('tree_path') // if you're using custom paths
```That's it! Now you're able to manage your adjacency lists using relationships.
### Customizing the query
```php
AdjacencyList::make('subdepartments')
->relationship('descendants', fn (Builder $query): Builder => $query->where('enabled', 1))
```### Ordering
If your application needs to order the items in the list, you can use the `orderColumn` method:```php
AdjacencyList::make('subdepartments')
->orderColumn('sort') // or any other column
```## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Contributing
Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.
## Security Vulnerabilities
Please review [our security policy](../../security/policy) on how to report security vulnerabilities.
## Credits
- [Saade](https://github.com/saade)
- [Ryan Chandler's Navigation Plugin](https://github.com/ryangjchandler/filament-navigation) for his work on the tree UI and complex tree actions.
- [Hugh](https://github.com/cheesegrits) for his help on supporting trees/ graphs relationships.
- [All Contributors](../../contributors)## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.